SemaDeclCXX.cpp revision 10620eb5164e31208fcbf0437cd79ae535ed0559
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/AST/ASTConsumer.h"
20#include "clang/AST/ASTContext.h"
21#include "clang/AST/ASTMutationListener.h"
22#include "clang/AST/CharUnits.h"
23#include "clang/AST/CXXInheritance.h"
24#include "clang/AST/DeclVisitor.h"
25#include "clang/AST/ExprCXX.h"
26#include "clang/AST/RecordLayout.h"
27#include "clang/AST/StmtVisitor.h"
28#include "clang/AST/TypeLoc.h"
29#include "clang/AST/TypeOrdering.h"
30#include "clang/Sema/DeclSpec.h"
31#include "clang/Sema/ParsedTemplate.h"
32#include "clang/Basic/PartialDiagnostic.h"
33#include "clang/Lex/Preprocessor.h"
34#include "llvm/ADT/DenseSet.h"
35#include "llvm/ADT/STLExtras.h"
36#include <map>
37#include <set>
38
39using namespace clang;
40
41//===----------------------------------------------------------------------===//
42// CheckDefaultArgumentVisitor
43//===----------------------------------------------------------------------===//
44
45namespace {
46  /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
47  /// the default argument of a parameter to determine whether it
48  /// contains any ill-formed subexpressions. For example, this will
49  /// diagnose the use of local variables or parameters within the
50  /// default argument expression.
51  class CheckDefaultArgumentVisitor
52    : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
53    Expr *DefaultArg;
54    Sema *S;
55
56  public:
57    CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
58      : DefaultArg(defarg), S(s) {}
59
60    bool VisitExpr(Expr *Node);
61    bool VisitDeclRefExpr(DeclRefExpr *DRE);
62    bool VisitCXXThisExpr(CXXThisExpr *ThisE);
63  };
64
65  /// VisitExpr - Visit all of the children of this expression.
66  bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
67    bool IsInvalid = false;
68    for (Stmt::child_range I = Node->children(); I; ++I)
69      IsInvalid |= Visit(*I);
70    return IsInvalid;
71  }
72
73  /// VisitDeclRefExpr - Visit a reference to a declaration, to
74  /// determine whether this declaration can be used in the default
75  /// argument expression.
76  bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
77    NamedDecl *Decl = DRE->getDecl();
78    if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
79      // C++ [dcl.fct.default]p9
80      //   Default arguments are evaluated each time the function is
81      //   called. The order of evaluation of function arguments is
82      //   unspecified. Consequently, parameters of a function shall not
83      //   be used in default argument expressions, even if they are not
84      //   evaluated. Parameters of a function declared before a default
85      //   argument expression are in scope and can hide namespace and
86      //   class member names.
87      return S->Diag(DRE->getSourceRange().getBegin(),
88                     diag::err_param_default_argument_references_param)
89         << Param->getDeclName() << DefaultArg->getSourceRange();
90    } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
91      // C++ [dcl.fct.default]p7
92      //   Local variables shall not be used in default argument
93      //   expressions.
94      if (VDecl->isLocalVarDecl())
95        return S->Diag(DRE->getSourceRange().getBegin(),
96                       diag::err_param_default_argument_references_local)
97          << VDecl->getDeclName() << DefaultArg->getSourceRange();
98    }
99
100    return false;
101  }
102
103  /// VisitCXXThisExpr - Visit a C++ "this" expression.
104  bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
105    // C++ [dcl.fct.default]p8:
106    //   The keyword this shall not be used in a default argument of a
107    //   member function.
108    return S->Diag(ThisE->getSourceRange().getBegin(),
109                   diag::err_param_default_argument_references_this)
110               << ThisE->getSourceRange();
111  }
112}
113
114bool
115Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
116                              SourceLocation EqualLoc) {
117  if (RequireCompleteType(Param->getLocation(), Param->getType(),
118                          diag::err_typecheck_decl_incomplete_type)) {
119    Param->setInvalidDecl();
120    return true;
121  }
122
123  // C++ [dcl.fct.default]p5
124  //   A default argument expression is implicitly converted (clause
125  //   4) to the parameter type. The default argument expression has
126  //   the same semantic constraints as the initializer expression in
127  //   a declaration of a variable of the parameter type, using the
128  //   copy-initialization semantics (8.5).
129  InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
130                                                                    Param);
131  InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
132                                                           EqualLoc);
133  InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
134  ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
135                                      MultiExprArg(*this, &Arg, 1));
136  if (Result.isInvalid())
137    return true;
138  Arg = Result.takeAs<Expr>();
139
140  CheckImplicitConversions(Arg, EqualLoc);
141  Arg = MaybeCreateExprWithCleanups(Arg);
142
143  // Okay: add the default argument to the parameter
144  Param->setDefaultArg(Arg);
145
146  // We have already instantiated this parameter; provide each of the
147  // instantiations with the uninstantiated default argument.
148  UnparsedDefaultArgInstantiationsMap::iterator InstPos
149    = UnparsedDefaultArgInstantiations.find(Param);
150  if (InstPos != UnparsedDefaultArgInstantiations.end()) {
151    for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
152      InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
153
154    // We're done tracking this parameter's instantiations.
155    UnparsedDefaultArgInstantiations.erase(InstPos);
156  }
157
158  return false;
159}
160
161/// ActOnParamDefaultArgument - Check whether the default argument
162/// provided for a function parameter is well-formed. If so, attach it
163/// to the parameter declaration.
164void
165Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
166                                Expr *DefaultArg) {
167  if (!param || !DefaultArg)
168    return;
169
170  ParmVarDecl *Param = cast<ParmVarDecl>(param);
171  UnparsedDefaultArgLocs.erase(Param);
172
173  // Default arguments are only permitted in C++
174  if (!getLangOptions().CPlusPlus) {
175    Diag(EqualLoc, diag::err_param_default_argument)
176      << DefaultArg->getSourceRange();
177    Param->setInvalidDecl();
178    return;
179  }
180
181  // Check for unexpanded parameter packs.
182  if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
183    Param->setInvalidDecl();
184    return;
185  }
186
187  // Check that the default argument is well-formed
188  CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
189  if (DefaultArgChecker.Visit(DefaultArg)) {
190    Param->setInvalidDecl();
191    return;
192  }
193
194  SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
195}
196
197/// ActOnParamUnparsedDefaultArgument - We've seen a default
198/// argument for a function parameter, but we can't parse it yet
199/// because we're inside a class definition. Note that this default
200/// argument will be parsed later.
201void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
202                                             SourceLocation EqualLoc,
203                                             SourceLocation ArgLoc) {
204  if (!param)
205    return;
206
207  ParmVarDecl *Param = cast<ParmVarDecl>(param);
208  if (Param)
209    Param->setUnparsedDefaultArg();
210
211  UnparsedDefaultArgLocs[Param] = ArgLoc;
212}
213
214/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
215/// the default argument for the parameter param failed.
216void Sema::ActOnParamDefaultArgumentError(Decl *param) {
217  if (!param)
218    return;
219
220  ParmVarDecl *Param = cast<ParmVarDecl>(param);
221
222  Param->setInvalidDecl();
223
224  UnparsedDefaultArgLocs.erase(Param);
225}
226
227/// CheckExtraCXXDefaultArguments - Check for any extra default
228/// arguments in the declarator, which is not a function declaration
229/// or definition and therefore is not permitted to have default
230/// arguments. This routine should be invoked for every declarator
231/// that is not a function declaration or definition.
232void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
233  // C++ [dcl.fct.default]p3
234  //   A default argument expression shall be specified only in the
235  //   parameter-declaration-clause of a function declaration or in a
236  //   template-parameter (14.1). It shall not be specified for a
237  //   parameter pack. If it is specified in a
238  //   parameter-declaration-clause, it shall not occur within a
239  //   declarator or abstract-declarator of a parameter-declaration.
240  for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
241    DeclaratorChunk &chunk = D.getTypeObject(i);
242    if (chunk.Kind == DeclaratorChunk::Function) {
243      for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
244        ParmVarDecl *Param =
245          cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
246        if (Param->hasUnparsedDefaultArg()) {
247          CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
248          Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
249            << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
250          delete Toks;
251          chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
252        } else if (Param->getDefaultArg()) {
253          Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
254            << Param->getDefaultArg()->getSourceRange();
255          Param->setDefaultArg(0);
256        }
257      }
258    }
259  }
260}
261
262// MergeCXXFunctionDecl - Merge two declarations of the same C++
263// function, once we already know that they have the same
264// type. Subroutine of MergeFunctionDecl. Returns true if there was an
265// error, false otherwise.
266bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
267  bool Invalid = false;
268
269  // C++ [dcl.fct.default]p4:
270  //   For non-template functions, default arguments can be added in
271  //   later declarations of a function in the same
272  //   scope. Declarations in different scopes have completely
273  //   distinct sets of default arguments. That is, declarations in
274  //   inner scopes do not acquire default arguments from
275  //   declarations in outer scopes, and vice versa. In a given
276  //   function declaration, all parameters subsequent to a
277  //   parameter with a default argument shall have default
278  //   arguments supplied in this or previous declarations. A
279  //   default argument shall not be redefined by a later
280  //   declaration (not even to the same value).
281  //
282  // C++ [dcl.fct.default]p6:
283  //   Except for member functions of class templates, the default arguments
284  //   in a member function definition that appears outside of the class
285  //   definition are added to the set of default arguments provided by the
286  //   member function declaration in the class definition.
287  for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
288    ParmVarDecl *OldParam = Old->getParamDecl(p);
289    ParmVarDecl *NewParam = New->getParamDecl(p);
290
291    if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
292
293      unsigned DiagDefaultParamID =
294        diag::err_param_default_argument_redefinition;
295
296      // MSVC accepts that default parameters be redefined for member functions
297      // of template class. The new default parameter's value is ignored.
298      Invalid = true;
299      if (getLangOptions().Microsoft) {
300        CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
301        if (MD && MD->getParent()->getDescribedClassTemplate()) {
302          // Merge the old default argument into the new parameter.
303          NewParam->setHasInheritedDefaultArg();
304          if (OldParam->hasUninstantiatedDefaultArg())
305            NewParam->setUninstantiatedDefaultArg(
306                                      OldParam->getUninstantiatedDefaultArg());
307          else
308            NewParam->setDefaultArg(OldParam->getInit());
309          DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
310          Invalid = false;
311        }
312      }
313
314      // FIXME: If we knew where the '=' was, we could easily provide a fix-it
315      // hint here. Alternatively, we could walk the type-source information
316      // for NewParam to find the last source location in the type... but it
317      // isn't worth the effort right now. This is the kind of test case that
318      // is hard to get right:
319      //   int f(int);
320      //   void g(int (*fp)(int) = f);
321      //   void g(int (*fp)(int) = &f);
322      Diag(NewParam->getLocation(), DiagDefaultParamID)
323        << NewParam->getDefaultArgRange();
324
325      // Look for the function declaration where the default argument was
326      // actually written, which may be a declaration prior to Old.
327      for (FunctionDecl *Older = Old->getPreviousDeclaration();
328           Older; Older = Older->getPreviousDeclaration()) {
329        if (!Older->getParamDecl(p)->hasDefaultArg())
330          break;
331
332        OldParam = Older->getParamDecl(p);
333      }
334
335      Diag(OldParam->getLocation(), diag::note_previous_definition)
336        << OldParam->getDefaultArgRange();
337    } else if (OldParam->hasDefaultArg()) {
338      // Merge the old default argument into the new parameter.
339      // It's important to use getInit() here;  getDefaultArg()
340      // strips off any top-level ExprWithCleanups.
341      NewParam->setHasInheritedDefaultArg();
342      if (OldParam->hasUninstantiatedDefaultArg())
343        NewParam->setUninstantiatedDefaultArg(
344                                      OldParam->getUninstantiatedDefaultArg());
345      else
346        NewParam->setDefaultArg(OldParam->getInit());
347    } else if (NewParam->hasDefaultArg()) {
348      if (New->getDescribedFunctionTemplate()) {
349        // Paragraph 4, quoted above, only applies to non-template functions.
350        Diag(NewParam->getLocation(),
351             diag::err_param_default_argument_template_redecl)
352          << NewParam->getDefaultArgRange();
353        Diag(Old->getLocation(), diag::note_template_prev_declaration)
354          << false;
355      } else if (New->getTemplateSpecializationKind()
356                   != TSK_ImplicitInstantiation &&
357                 New->getTemplateSpecializationKind() != TSK_Undeclared) {
358        // C++ [temp.expr.spec]p21:
359        //   Default function arguments shall not be specified in a declaration
360        //   or a definition for one of the following explicit specializations:
361        //     - the explicit specialization of a function template;
362        //     - the explicit specialization of a member function template;
363        //     - the explicit specialization of a member function of a class
364        //       template where the class template specialization to which the
365        //       member function specialization belongs is implicitly
366        //       instantiated.
367        Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
368          << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
369          << New->getDeclName()
370          << NewParam->getDefaultArgRange();
371      } else if (New->getDeclContext()->isDependentContext()) {
372        // C++ [dcl.fct.default]p6 (DR217):
373        //   Default arguments for a member function of a class template shall
374        //   be specified on the initial declaration of the member function
375        //   within the class template.
376        //
377        // Reading the tea leaves a bit in DR217 and its reference to DR205
378        // leads me to the conclusion that one cannot add default function
379        // arguments for an out-of-line definition of a member function of a
380        // dependent type.
381        int WhichKind = 2;
382        if (CXXRecordDecl *Record
383              = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
384          if (Record->getDescribedClassTemplate())
385            WhichKind = 0;
386          else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
387            WhichKind = 1;
388          else
389            WhichKind = 2;
390        }
391
392        Diag(NewParam->getLocation(),
393             diag::err_param_default_argument_member_template_redecl)
394          << WhichKind
395          << NewParam->getDefaultArgRange();
396      }
397    }
398  }
399
400  if (CheckEquivalentExceptionSpec(Old, New))
401    Invalid = true;
402
403  return Invalid;
404}
405
406/// \brief Merge the exception specifications of two variable declarations.
407///
408/// This is called when there's a redeclaration of a VarDecl. The function
409/// checks if the redeclaration might have an exception specification and
410/// validates compatibility and merges the specs if necessary.
411void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
412  // Shortcut if exceptions are disabled.
413  if (!getLangOptions().CXXExceptions)
414    return;
415
416  assert(Context.hasSameType(New->getType(), Old->getType()) &&
417         "Should only be called if types are otherwise the same.");
418
419  QualType NewType = New->getType();
420  QualType OldType = Old->getType();
421
422  // We're only interested in pointers and references to functions, as well
423  // as pointers to member functions.
424  if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
425    NewType = R->getPointeeType();
426    OldType = OldType->getAs<ReferenceType>()->getPointeeType();
427  } else if (const PointerType *P = NewType->getAs<PointerType>()) {
428    NewType = P->getPointeeType();
429    OldType = OldType->getAs<PointerType>()->getPointeeType();
430  } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
431    NewType = M->getPointeeType();
432    OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
433  }
434
435  if (!NewType->isFunctionProtoType())
436    return;
437
438  // There's lots of special cases for functions. For function pointers, system
439  // libraries are hopefully not as broken so that we don't need these
440  // workarounds.
441  if (CheckEquivalentExceptionSpec(
442        OldType->getAs<FunctionProtoType>(), Old->getLocation(),
443        NewType->getAs<FunctionProtoType>(), New->getLocation())) {
444    New->setInvalidDecl();
445  }
446}
447
448/// CheckCXXDefaultArguments - Verify that the default arguments for a
449/// function declaration are well-formed according to C++
450/// [dcl.fct.default].
451void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
452  unsigned NumParams = FD->getNumParams();
453  unsigned p;
454
455  // Find first parameter with a default argument
456  for (p = 0; p < NumParams; ++p) {
457    ParmVarDecl *Param = FD->getParamDecl(p);
458    if (Param->hasDefaultArg())
459      break;
460  }
461
462  // C++ [dcl.fct.default]p4:
463  //   In a given function declaration, all parameters
464  //   subsequent to a parameter with a default argument shall
465  //   have default arguments supplied in this or previous
466  //   declarations. A default argument shall not be redefined
467  //   by a later declaration (not even to the same value).
468  unsigned LastMissingDefaultArg = 0;
469  for (; p < NumParams; ++p) {
470    ParmVarDecl *Param = FD->getParamDecl(p);
471    if (!Param->hasDefaultArg()) {
472      if (Param->isInvalidDecl())
473        /* We already complained about this parameter. */;
474      else if (Param->getIdentifier())
475        Diag(Param->getLocation(),
476             diag::err_param_default_argument_missing_name)
477          << Param->getIdentifier();
478      else
479        Diag(Param->getLocation(),
480             diag::err_param_default_argument_missing);
481
482      LastMissingDefaultArg = p;
483    }
484  }
485
486  if (LastMissingDefaultArg > 0) {
487    // Some default arguments were missing. Clear out all of the
488    // default arguments up to (and including) the last missing
489    // default argument, so that we leave the function parameters
490    // in a semantically valid state.
491    for (p = 0; p <= LastMissingDefaultArg; ++p) {
492      ParmVarDecl *Param = FD->getParamDecl(p);
493      if (Param->hasDefaultArg()) {
494        Param->setDefaultArg(0);
495      }
496    }
497  }
498}
499
500/// isCurrentClassName - Determine whether the identifier II is the
501/// name of the class type currently being defined. In the case of
502/// nested classes, this will only return true if II is the name of
503/// the innermost class.
504bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
505                              const CXXScopeSpec *SS) {
506  assert(getLangOptions().CPlusPlus && "No class names in C!");
507
508  CXXRecordDecl *CurDecl;
509  if (SS && SS->isSet() && !SS->isInvalid()) {
510    DeclContext *DC = computeDeclContext(*SS, true);
511    CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
512  } else
513    CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
514
515  if (CurDecl && CurDecl->getIdentifier())
516    return &II == CurDecl->getIdentifier();
517  else
518    return false;
519}
520
521/// \brief Check the validity of a C++ base class specifier.
522///
523/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
524/// and returns NULL otherwise.
525CXXBaseSpecifier *
526Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
527                         SourceRange SpecifierRange,
528                         bool Virtual, AccessSpecifier Access,
529                         TypeSourceInfo *TInfo,
530                         SourceLocation EllipsisLoc) {
531  QualType BaseType = TInfo->getType();
532
533  // C++ [class.union]p1:
534  //   A union shall not have base classes.
535  if (Class->isUnion()) {
536    Diag(Class->getLocation(), diag::err_base_clause_on_union)
537      << SpecifierRange;
538    return 0;
539  }
540
541  if (EllipsisLoc.isValid() &&
542      !TInfo->getType()->containsUnexpandedParameterPack()) {
543    Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
544      << TInfo->getTypeLoc().getSourceRange();
545    EllipsisLoc = SourceLocation();
546  }
547
548  if (BaseType->isDependentType())
549    return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
550                                          Class->getTagKind() == TTK_Class,
551                                          Access, TInfo, EllipsisLoc);
552
553  SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
554
555  // Base specifiers must be record types.
556  if (!BaseType->isRecordType()) {
557    Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
558    return 0;
559  }
560
561  // C++ [class.union]p1:
562  //   A union shall not be used as a base class.
563  if (BaseType->isUnionType()) {
564    Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
565    return 0;
566  }
567
568  // C++ [class.derived]p2:
569  //   The class-name in a base-specifier shall not be an incompletely
570  //   defined class.
571  if (RequireCompleteType(BaseLoc, BaseType,
572                          PDiag(diag::err_incomplete_base_class)
573                            << SpecifierRange)) {
574    Class->setInvalidDecl();
575    return 0;
576  }
577
578  // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
579  RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
580  assert(BaseDecl && "Record type has no declaration");
581  BaseDecl = BaseDecl->getDefinition();
582  assert(BaseDecl && "Base type is not incomplete, but has no definition");
583  CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
584  assert(CXXBaseDecl && "Base type is not a C++ type");
585
586  // C++ [class]p3:
587  //   If a class is marked final and it appears as a base-type-specifier in
588  //   base-clause, the program is ill-formed.
589  if (CXXBaseDecl->hasAttr<FinalAttr>()) {
590    Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
591      << CXXBaseDecl->getDeclName();
592    Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
593      << CXXBaseDecl->getDeclName();
594    return 0;
595  }
596
597  if (BaseDecl->isInvalidDecl())
598    Class->setInvalidDecl();
599
600  // Create the base specifier.
601  return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
602                                        Class->getTagKind() == TTK_Class,
603                                        Access, TInfo, EllipsisLoc);
604}
605
606/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
607/// one entry in the base class list of a class specifier, for
608/// example:
609///    class foo : public bar, virtual private baz {
610/// 'public bar' and 'virtual private baz' are each base-specifiers.
611BaseResult
612Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
613                         bool Virtual, AccessSpecifier Access,
614                         ParsedType basetype, SourceLocation BaseLoc,
615                         SourceLocation EllipsisLoc) {
616  if (!classdecl)
617    return true;
618
619  AdjustDeclIfTemplate(classdecl);
620  CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
621  if (!Class)
622    return true;
623
624  TypeSourceInfo *TInfo = 0;
625  GetTypeFromParser(basetype, &TInfo);
626
627  if (EllipsisLoc.isInvalid() &&
628      DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
629                                      UPPC_BaseType))
630    return true;
631
632  if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
633                                                      Virtual, Access, TInfo,
634                                                      EllipsisLoc))
635    return BaseSpec;
636
637  return true;
638}
639
640/// \brief Performs the actual work of attaching the given base class
641/// specifiers to a C++ class.
642bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
643                                unsigned NumBases) {
644 if (NumBases == 0)
645    return false;
646
647  // Used to keep track of which base types we have already seen, so
648  // that we can properly diagnose redundant direct base types. Note
649  // that the key is always the unqualified canonical type of the base
650  // class.
651  std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
652
653  // Copy non-redundant base specifiers into permanent storage.
654  unsigned NumGoodBases = 0;
655  bool Invalid = false;
656  for (unsigned idx = 0; idx < NumBases; ++idx) {
657    QualType NewBaseType
658      = Context.getCanonicalType(Bases[idx]->getType());
659    NewBaseType = NewBaseType.getLocalUnqualifiedType();
660    if (!Class->hasObjectMember()) {
661      if (const RecordType *FDTTy =
662            NewBaseType.getTypePtr()->getAs<RecordType>())
663        if (FDTTy->getDecl()->hasObjectMember())
664          Class->setHasObjectMember(true);
665    }
666
667    if (KnownBaseTypes[NewBaseType]) {
668      // C++ [class.mi]p3:
669      //   A class shall not be specified as a direct base class of a
670      //   derived class more than once.
671      Diag(Bases[idx]->getSourceRange().getBegin(),
672           diag::err_duplicate_base_class)
673        << KnownBaseTypes[NewBaseType]->getType()
674        << Bases[idx]->getSourceRange();
675
676      // Delete the duplicate base class specifier; we're going to
677      // overwrite its pointer later.
678      Context.Deallocate(Bases[idx]);
679
680      Invalid = true;
681    } else {
682      // Okay, add this new base class.
683      KnownBaseTypes[NewBaseType] = Bases[idx];
684      Bases[NumGoodBases++] = Bases[idx];
685    }
686  }
687
688  // Attach the remaining base class specifiers to the derived class.
689  Class->setBases(Bases, NumGoodBases);
690
691  // Delete the remaining (good) base class specifiers, since their
692  // data has been copied into the CXXRecordDecl.
693  for (unsigned idx = 0; idx < NumGoodBases; ++idx)
694    Context.Deallocate(Bases[idx]);
695
696  return Invalid;
697}
698
699/// ActOnBaseSpecifiers - Attach the given base specifiers to the
700/// class, after checking whether there are any duplicate base
701/// classes.
702void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, BaseTy **Bases,
703                               unsigned NumBases) {
704  if (!ClassDecl || !Bases || !NumBases)
705    return;
706
707  AdjustDeclIfTemplate(ClassDecl);
708  AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
709                       (CXXBaseSpecifier**)(Bases), NumBases);
710}
711
712static CXXRecordDecl *GetClassForType(QualType T) {
713  if (const RecordType *RT = T->getAs<RecordType>())
714    return cast<CXXRecordDecl>(RT->getDecl());
715  else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
716    return ICT->getDecl();
717  else
718    return 0;
719}
720
721/// \brief Determine whether the type \p Derived is a C++ class that is
722/// derived from the type \p Base.
723bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
724  if (!getLangOptions().CPlusPlus)
725    return false;
726
727  CXXRecordDecl *DerivedRD = GetClassForType(Derived);
728  if (!DerivedRD)
729    return false;
730
731  CXXRecordDecl *BaseRD = GetClassForType(Base);
732  if (!BaseRD)
733    return false;
734
735  // FIXME: instantiate DerivedRD if necessary.  We need a PoI for this.
736  return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
737}
738
739/// \brief Determine whether the type \p Derived is a C++ class that is
740/// derived from the type \p Base.
741bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
742  if (!getLangOptions().CPlusPlus)
743    return false;
744
745  CXXRecordDecl *DerivedRD = GetClassForType(Derived);
746  if (!DerivedRD)
747    return false;
748
749  CXXRecordDecl *BaseRD = GetClassForType(Base);
750  if (!BaseRD)
751    return false;
752
753  return DerivedRD->isDerivedFrom(BaseRD, Paths);
754}
755
756void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
757                              CXXCastPath &BasePathArray) {
758  assert(BasePathArray.empty() && "Base path array must be empty!");
759  assert(Paths.isRecordingPaths() && "Must record paths!");
760
761  const CXXBasePath &Path = Paths.front();
762
763  // We first go backward and check if we have a virtual base.
764  // FIXME: It would be better if CXXBasePath had the base specifier for
765  // the nearest virtual base.
766  unsigned Start = 0;
767  for (unsigned I = Path.size(); I != 0; --I) {
768    if (Path[I - 1].Base->isVirtual()) {
769      Start = I - 1;
770      break;
771    }
772  }
773
774  // Now add all bases.
775  for (unsigned I = Start, E = Path.size(); I != E; ++I)
776    BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
777}
778
779/// \brief Determine whether the given base path includes a virtual
780/// base class.
781bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
782  for (CXXCastPath::const_iterator B = BasePath.begin(),
783                                BEnd = BasePath.end();
784       B != BEnd; ++B)
785    if ((*B)->isVirtual())
786      return true;
787
788  return false;
789}
790
791/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
792/// conversion (where Derived and Base are class types) is
793/// well-formed, meaning that the conversion is unambiguous (and
794/// that all of the base classes are accessible). Returns true
795/// and emits a diagnostic if the code is ill-formed, returns false
796/// otherwise. Loc is the location where this routine should point to
797/// if there is an error, and Range is the source range to highlight
798/// if there is an error.
799bool
800Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
801                                   unsigned InaccessibleBaseID,
802                                   unsigned AmbigiousBaseConvID,
803                                   SourceLocation Loc, SourceRange Range,
804                                   DeclarationName Name,
805                                   CXXCastPath *BasePath) {
806  // First, determine whether the path from Derived to Base is
807  // ambiguous. This is slightly more expensive than checking whether
808  // the Derived to Base conversion exists, because here we need to
809  // explore multiple paths to determine if there is an ambiguity.
810  CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
811                     /*DetectVirtual=*/false);
812  bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
813  assert(DerivationOkay &&
814         "Can only be used with a derived-to-base conversion");
815  (void)DerivationOkay;
816
817  if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
818    if (InaccessibleBaseID) {
819      // Check that the base class can be accessed.
820      switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
821                                   InaccessibleBaseID)) {
822        case AR_inaccessible:
823          return true;
824        case AR_accessible:
825        case AR_dependent:
826        case AR_delayed:
827          break;
828      }
829    }
830
831    // Build a base path if necessary.
832    if (BasePath)
833      BuildBasePathArray(Paths, *BasePath);
834    return false;
835  }
836
837  // We know that the derived-to-base conversion is ambiguous, and
838  // we're going to produce a diagnostic. Perform the derived-to-base
839  // search just one more time to compute all of the possible paths so
840  // that we can print them out. This is more expensive than any of
841  // the previous derived-to-base checks we've done, but at this point
842  // performance isn't as much of an issue.
843  Paths.clear();
844  Paths.setRecordingPaths(true);
845  bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
846  assert(StillOkay && "Can only be used with a derived-to-base conversion");
847  (void)StillOkay;
848
849  // Build up a textual representation of the ambiguous paths, e.g.,
850  // D -> B -> A, that will be used to illustrate the ambiguous
851  // conversions in the diagnostic. We only print one of the paths
852  // to each base class subobject.
853  std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
854
855  Diag(Loc, AmbigiousBaseConvID)
856  << Derived << Base << PathDisplayStr << Range << Name;
857  return true;
858}
859
860bool
861Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
862                                   SourceLocation Loc, SourceRange Range,
863                                   CXXCastPath *BasePath,
864                                   bool IgnoreAccess) {
865  return CheckDerivedToBaseConversion(Derived, Base,
866                                      IgnoreAccess ? 0
867                                       : diag::err_upcast_to_inaccessible_base,
868                                      diag::err_ambiguous_derived_to_base_conv,
869                                      Loc, Range, DeclarationName(),
870                                      BasePath);
871}
872
873
874/// @brief Builds a string representing ambiguous paths from a
875/// specific derived class to different subobjects of the same base
876/// class.
877///
878/// This function builds a string that can be used in error messages
879/// to show the different paths that one can take through the
880/// inheritance hierarchy to go from the derived class to different
881/// subobjects of a base class. The result looks something like this:
882/// @code
883/// struct D -> struct B -> struct A
884/// struct D -> struct C -> struct A
885/// @endcode
886std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
887  std::string PathDisplayStr;
888  std::set<unsigned> DisplayedPaths;
889  for (CXXBasePaths::paths_iterator Path = Paths.begin();
890       Path != Paths.end(); ++Path) {
891    if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
892      // We haven't displayed a path to this particular base
893      // class subobject yet.
894      PathDisplayStr += "\n    ";
895      PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
896      for (CXXBasePath::const_iterator Element = Path->begin();
897           Element != Path->end(); ++Element)
898        PathDisplayStr += " -> " + Element->Base->getType().getAsString();
899    }
900  }
901
902  return PathDisplayStr;
903}
904
905//===----------------------------------------------------------------------===//
906// C++ class member Handling
907//===----------------------------------------------------------------------===//
908
909/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
910Decl *Sema::ActOnAccessSpecifier(AccessSpecifier Access,
911                                 SourceLocation ASLoc,
912                                 SourceLocation ColonLoc) {
913  assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
914  AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
915                                                  ASLoc, ColonLoc);
916  CurContext->addHiddenDecl(ASDecl);
917  return ASDecl;
918}
919
920/// CheckOverrideControl - Check C++0x override control semantics.
921void Sema::CheckOverrideControl(const Decl *D) {
922  const CXXMethodDecl *MD = llvm::dyn_cast<CXXMethodDecl>(D);
923  if (!MD || !MD->isVirtual())
924    return;
925
926  if (MD->isDependentContext())
927    return;
928
929  // C++0x [class.virtual]p3:
930  //   If a virtual function is marked with the virt-specifier override and does
931  //   not override a member function of a base class,
932  //   the program is ill-formed.
933  bool HasOverriddenMethods =
934    MD->begin_overridden_methods() != MD->end_overridden_methods();
935  if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) {
936    Diag(MD->getLocation(),
937                 diag::err_function_marked_override_not_overriding)
938      << MD->getDeclName();
939    return;
940  }
941}
942
943/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
944/// function overrides a virtual member function marked 'final', according to
945/// C++0x [class.virtual]p3.
946bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
947                                                  const CXXMethodDecl *Old) {
948  if (!Old->hasAttr<FinalAttr>())
949    return false;
950
951  Diag(New->getLocation(), diag::err_final_function_overridden)
952    << New->getDeclName();
953  Diag(Old->getLocation(), diag::note_overridden_virtual_function);
954  return true;
955}
956
957/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
958/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
959/// bitfield width if there is one and 'InitExpr' specifies the initializer if
960/// any.
961Decl *
962Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
963                               MultiTemplateParamsArg TemplateParameterLists,
964                               ExprTy *BW, const VirtSpecifiers &VS,
965                               ExprTy *InitExpr, bool IsDefinition,
966                               bool Deleted, SourceLocation DefLoc) {
967  const DeclSpec &DS = D.getDeclSpec();
968  DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
969  DeclarationName Name = NameInfo.getName();
970  SourceLocation Loc = NameInfo.getLoc();
971
972  // For anonymous bitfields, the location should point to the type.
973  if (Loc.isInvalid())
974    Loc = D.getSourceRange().getBegin();
975
976  Expr *BitWidth = static_cast<Expr*>(BW);
977  Expr *Init = static_cast<Expr*>(InitExpr);
978
979  assert(isa<CXXRecordDecl>(CurContext));
980  assert(!DS.isFriendSpecified());
981
982  bool isFunc = false;
983  if (D.isFunctionDeclarator())
984    isFunc = true;
985  else if (D.getNumTypeObjects() == 0 &&
986           D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
987    QualType TDType = GetTypeFromParser(DS.getRepAsType());
988    isFunc = TDType->isFunctionType();
989  }
990
991  // C++ 9.2p6: A member shall not be declared to have automatic storage
992  // duration (auto, register) or with the extern storage-class-specifier.
993  // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
994  // data members and cannot be applied to names declared const or static,
995  // and cannot be applied to reference members.
996  switch (DS.getStorageClassSpec()) {
997    case DeclSpec::SCS_unspecified:
998    case DeclSpec::SCS_typedef:
999    case DeclSpec::SCS_static:
1000      // FALL THROUGH.
1001      break;
1002    case DeclSpec::SCS_mutable:
1003      if (isFunc) {
1004        if (DS.getStorageClassSpecLoc().isValid())
1005          Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
1006        else
1007          Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
1008
1009        // FIXME: It would be nicer if the keyword was ignored only for this
1010        // declarator. Otherwise we could get follow-up errors.
1011        D.getMutableDeclSpec().ClearStorageClassSpecs();
1012      }
1013      break;
1014    default:
1015      if (DS.getStorageClassSpecLoc().isValid())
1016        Diag(DS.getStorageClassSpecLoc(),
1017             diag::err_storageclass_invalid_for_member);
1018      else
1019        Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1020      D.getMutableDeclSpec().ClearStorageClassSpecs();
1021  }
1022
1023  bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1024                       DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
1025                      !isFunc);
1026
1027  Decl *Member;
1028  if (isInstField) {
1029    CXXScopeSpec &SS = D.getCXXScopeSpec();
1030
1031    if (DefLoc.isValid())
1032      Diag(DefLoc, diag::err_default_special_members);
1033
1034    if (SS.isSet() && !SS.isInvalid()) {
1035      // The user provided a superfluous scope specifier inside a class
1036      // definition:
1037      //
1038      // class X {
1039      //   int X::member;
1040      // };
1041      DeclContext *DC = 0;
1042      if ((DC = computeDeclContext(SS, false)) && DC->Equals(CurContext))
1043        Diag(D.getIdentifierLoc(), diag::warn_member_extra_qualification)
1044        << Name << FixItHint::CreateRemoval(SS.getRange());
1045      else
1046        Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1047          << Name << SS.getRange();
1048
1049      SS.clear();
1050    }
1051
1052    // FIXME: Check for template parameters!
1053    // FIXME: Check that the name is an identifier!
1054    Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
1055                         AS);
1056    assert(Member && "HandleField never returns null");
1057  } else {
1058    Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition,
1059                              DefLoc);
1060    if (!Member) {
1061      return 0;
1062    }
1063
1064    // Non-instance-fields can't have a bitfield.
1065    if (BitWidth) {
1066      if (Member->isInvalidDecl()) {
1067        // don't emit another diagnostic.
1068      } else if (isa<VarDecl>(Member)) {
1069        // C++ 9.6p3: A bit-field shall not be a static member.
1070        // "static member 'A' cannot be a bit-field"
1071        Diag(Loc, diag::err_static_not_bitfield)
1072          << Name << BitWidth->getSourceRange();
1073      } else if (isa<TypedefDecl>(Member)) {
1074        // "typedef member 'x' cannot be a bit-field"
1075        Diag(Loc, diag::err_typedef_not_bitfield)
1076          << Name << BitWidth->getSourceRange();
1077      } else {
1078        // A function typedef ("typedef int f(); f a;").
1079        // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1080        Diag(Loc, diag::err_not_integral_type_bitfield)
1081          << Name << cast<ValueDecl>(Member)->getType()
1082          << BitWidth->getSourceRange();
1083      }
1084
1085      BitWidth = 0;
1086      Member->setInvalidDecl();
1087    }
1088
1089    Member->setAccess(AS);
1090
1091    // If we have declared a member function template, set the access of the
1092    // templated declaration as well.
1093    if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1094      FunTmpl->getTemplatedDecl()->setAccess(AS);
1095  }
1096
1097  if (VS.isOverrideSpecified()) {
1098    CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1099    if (!MD || !MD->isVirtual()) {
1100      Diag(Member->getLocStart(),
1101           diag::override_keyword_only_allowed_on_virtual_member_functions)
1102        << "override" << FixItHint::CreateRemoval(VS.getOverrideLoc());
1103    } else
1104      MD->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1105  }
1106  if (VS.isFinalSpecified()) {
1107    CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1108    if (!MD || !MD->isVirtual()) {
1109      Diag(Member->getLocStart(),
1110           diag::override_keyword_only_allowed_on_virtual_member_functions)
1111      << "final" << FixItHint::CreateRemoval(VS.getFinalLoc());
1112    } else
1113      MD->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
1114  }
1115
1116  if (VS.getLastLocation().isValid()) {
1117    // Update the end location of a method that has a virt-specifiers.
1118    if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1119      MD->setRangeEnd(VS.getLastLocation());
1120  }
1121
1122  CheckOverrideControl(Member);
1123
1124  assert((Name || isInstField) && "No identifier for non-field ?");
1125
1126  if (Init)
1127    AddInitializerToDecl(Member, Init, false,
1128                         DS.getTypeSpecType() == DeclSpec::TST_auto);
1129  if (Deleted) // FIXME: Source location is not very good.
1130    SetDeclDeleted(Member, D.getSourceRange().getBegin());
1131
1132  FinalizeDeclaration(Member);
1133
1134  if (isInstField)
1135    FieldCollector->Add(cast<FieldDecl>(Member));
1136  return Member;
1137}
1138
1139/// \brief Find the direct and/or virtual base specifiers that
1140/// correspond to the given base type, for use in base initialization
1141/// within a constructor.
1142static bool FindBaseInitializer(Sema &SemaRef,
1143                                CXXRecordDecl *ClassDecl,
1144                                QualType BaseType,
1145                                const CXXBaseSpecifier *&DirectBaseSpec,
1146                                const CXXBaseSpecifier *&VirtualBaseSpec) {
1147  // First, check for a direct base class.
1148  DirectBaseSpec = 0;
1149  for (CXXRecordDecl::base_class_const_iterator Base
1150         = ClassDecl->bases_begin();
1151       Base != ClassDecl->bases_end(); ++Base) {
1152    if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1153      // We found a direct base of this type. That's what we're
1154      // initializing.
1155      DirectBaseSpec = &*Base;
1156      break;
1157    }
1158  }
1159
1160  // Check for a virtual base class.
1161  // FIXME: We might be able to short-circuit this if we know in advance that
1162  // there are no virtual bases.
1163  VirtualBaseSpec = 0;
1164  if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1165    // We haven't found a base yet; search the class hierarchy for a
1166    // virtual base class.
1167    CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1168                       /*DetectVirtual=*/false);
1169    if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1170                              BaseType, Paths)) {
1171      for (CXXBasePaths::paths_iterator Path = Paths.begin();
1172           Path != Paths.end(); ++Path) {
1173        if (Path->back().Base->isVirtual()) {
1174          VirtualBaseSpec = Path->back().Base;
1175          break;
1176        }
1177      }
1178    }
1179  }
1180
1181  return DirectBaseSpec || VirtualBaseSpec;
1182}
1183
1184/// ActOnMemInitializer - Handle a C++ member initializer.
1185MemInitResult
1186Sema::ActOnMemInitializer(Decl *ConstructorD,
1187                          Scope *S,
1188                          CXXScopeSpec &SS,
1189                          IdentifierInfo *MemberOrBase,
1190                          ParsedType TemplateTypeTy,
1191                          SourceLocation IdLoc,
1192                          SourceLocation LParenLoc,
1193                          ExprTy **Args, unsigned NumArgs,
1194                          SourceLocation RParenLoc,
1195                          SourceLocation EllipsisLoc) {
1196  if (!ConstructorD)
1197    return true;
1198
1199  AdjustDeclIfTemplate(ConstructorD);
1200
1201  CXXConstructorDecl *Constructor
1202    = dyn_cast<CXXConstructorDecl>(ConstructorD);
1203  if (!Constructor) {
1204    // The user wrote a constructor initializer on a function that is
1205    // not a C++ constructor. Ignore the error for now, because we may
1206    // have more member initializers coming; we'll diagnose it just
1207    // once in ActOnMemInitializers.
1208    return true;
1209  }
1210
1211  CXXRecordDecl *ClassDecl = Constructor->getParent();
1212
1213  // C++ [class.base.init]p2:
1214  //   Names in a mem-initializer-id are looked up in the scope of the
1215  //   constructor's class and, if not found in that scope, are looked
1216  //   up in the scope containing the constructor's definition.
1217  //   [Note: if the constructor's class contains a member with the
1218  //   same name as a direct or virtual base class of the class, a
1219  //   mem-initializer-id naming the member or base class and composed
1220  //   of a single identifier refers to the class member. A
1221  //   mem-initializer-id for the hidden base class may be specified
1222  //   using a qualified name. ]
1223  if (!SS.getScopeRep() && !TemplateTypeTy) {
1224    // Look for a member, first.
1225    FieldDecl *Member = 0;
1226    DeclContext::lookup_result Result
1227      = ClassDecl->lookup(MemberOrBase);
1228    if (Result.first != Result.second) {
1229      Member = dyn_cast<FieldDecl>(*Result.first);
1230
1231      if (Member) {
1232        if (EllipsisLoc.isValid())
1233          Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
1234            << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1235
1236        return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1237                                    LParenLoc, RParenLoc);
1238      }
1239
1240      // Handle anonymous union case.
1241      if (IndirectFieldDecl* IndirectField
1242            = dyn_cast<IndirectFieldDecl>(*Result.first)) {
1243        if (EllipsisLoc.isValid())
1244          Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
1245            << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1246
1247         return BuildMemberInitializer(IndirectField, (Expr**)Args,
1248                                       NumArgs, IdLoc,
1249                                       LParenLoc, RParenLoc);
1250      }
1251    }
1252  }
1253  // It didn't name a member, so see if it names a class.
1254  QualType BaseType;
1255  TypeSourceInfo *TInfo = 0;
1256
1257  if (TemplateTypeTy) {
1258    BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
1259  } else {
1260    LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1261    LookupParsedName(R, S, &SS);
1262
1263    TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1264    if (!TyD) {
1265      if (R.isAmbiguous()) return true;
1266
1267      // We don't want access-control diagnostics here.
1268      R.suppressDiagnostics();
1269
1270      if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1271        bool NotUnknownSpecialization = false;
1272        DeclContext *DC = computeDeclContext(SS, false);
1273        if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1274          NotUnknownSpecialization = !Record->hasAnyDependentBases();
1275
1276        if (!NotUnknownSpecialization) {
1277          // When the scope specifier can refer to a member of an unknown
1278          // specialization, we take it as a type name.
1279          BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1280                                       SS.getWithLocInContext(Context),
1281                                       *MemberOrBase, IdLoc);
1282          if (BaseType.isNull())
1283            return true;
1284
1285          R.clear();
1286          R.setLookupName(MemberOrBase);
1287        }
1288      }
1289
1290      // If no results were found, try to correct typos.
1291      if (R.empty() && BaseType.isNull() &&
1292          CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1293          R.isSingleResult()) {
1294        if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
1295          if (Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl)) {
1296            // We have found a non-static data member with a similar
1297            // name to what was typed; complain and initialize that
1298            // member.
1299            Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1300              << MemberOrBase << true << R.getLookupName()
1301              << FixItHint::CreateReplacement(R.getNameLoc(),
1302                                              R.getLookupName().getAsString());
1303            Diag(Member->getLocation(), diag::note_previous_decl)
1304              << Member->getDeclName();
1305
1306            return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1307                                          LParenLoc, RParenLoc);
1308          }
1309        } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1310          const CXXBaseSpecifier *DirectBaseSpec;
1311          const CXXBaseSpecifier *VirtualBaseSpec;
1312          if (FindBaseInitializer(*this, ClassDecl,
1313                                  Context.getTypeDeclType(Type),
1314                                  DirectBaseSpec, VirtualBaseSpec)) {
1315            // We have found a direct or virtual base class with a
1316            // similar name to what was typed; complain and initialize
1317            // that base class.
1318            Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1319              << MemberOrBase << false << R.getLookupName()
1320              << FixItHint::CreateReplacement(R.getNameLoc(),
1321                                              R.getLookupName().getAsString());
1322
1323            const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1324                                                             : VirtualBaseSpec;
1325            Diag(BaseSpec->getSourceRange().getBegin(),
1326                 diag::note_base_class_specified_here)
1327              << BaseSpec->getType()
1328              << BaseSpec->getSourceRange();
1329
1330            TyD = Type;
1331          }
1332        }
1333      }
1334
1335      if (!TyD && BaseType.isNull()) {
1336        Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1337          << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1338        return true;
1339      }
1340    }
1341
1342    if (BaseType.isNull()) {
1343      BaseType = Context.getTypeDeclType(TyD);
1344      if (SS.isSet()) {
1345        NestedNameSpecifier *Qualifier =
1346          static_cast<NestedNameSpecifier*>(SS.getScopeRep());
1347
1348        // FIXME: preserve source range information
1349        BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
1350      }
1351    }
1352  }
1353
1354  if (!TInfo)
1355    TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
1356
1357  return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
1358                              LParenLoc, RParenLoc, ClassDecl, EllipsisLoc);
1359}
1360
1361/// Checks an initializer expression for use of uninitialized fields, such as
1362/// containing the field that is being initialized. Returns true if there is an
1363/// uninitialized field was used an updates the SourceLocation parameter; false
1364/// otherwise.
1365static bool InitExprContainsUninitializedFields(const Stmt *S,
1366                                                const ValueDecl *LhsField,
1367                                                SourceLocation *L) {
1368  assert(isa<FieldDecl>(LhsField) || isa<IndirectFieldDecl>(LhsField));
1369
1370  if (isa<CallExpr>(S)) {
1371    // Do not descend into function calls or constructors, as the use
1372    // of an uninitialized field may be valid. One would have to inspect
1373    // the contents of the function/ctor to determine if it is safe or not.
1374    // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1375    // may be safe, depending on what the function/ctor does.
1376    return false;
1377  }
1378  if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1379    const NamedDecl *RhsField = ME->getMemberDecl();
1380
1381    if (const VarDecl *VD = dyn_cast<VarDecl>(RhsField)) {
1382      // The member expression points to a static data member.
1383      assert(VD->isStaticDataMember() &&
1384             "Member points to non-static data member!");
1385      (void)VD;
1386      return false;
1387    }
1388
1389    if (isa<EnumConstantDecl>(RhsField)) {
1390      // The member expression points to an enum.
1391      return false;
1392    }
1393
1394    if (RhsField == LhsField) {
1395      // Initializing a field with itself. Throw a warning.
1396      // But wait; there are exceptions!
1397      // Exception #1:  The field may not belong to this record.
1398      // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
1399      const Expr *base = ME->getBase();
1400      if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1401        // Even though the field matches, it does not belong to this record.
1402        return false;
1403      }
1404      // None of the exceptions triggered; return true to indicate an
1405      // uninitialized field was used.
1406      *L = ME->getMemberLoc();
1407      return true;
1408    }
1409  } else if (isa<UnaryExprOrTypeTraitExpr>(S)) {
1410    // sizeof/alignof doesn't reference contents, do not warn.
1411    return false;
1412  } else if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(S)) {
1413    // address-of doesn't reference contents (the pointer may be dereferenced
1414    // in the same expression but it would be rare; and weird).
1415    if (UOE->getOpcode() == UO_AddrOf)
1416      return false;
1417  }
1418  for (Stmt::const_child_range it = S->children(); it; ++it) {
1419    if (!*it) {
1420      // An expression such as 'member(arg ?: "")' may trigger this.
1421      continue;
1422    }
1423    if (InitExprContainsUninitializedFields(*it, LhsField, L))
1424      return true;
1425  }
1426  return false;
1427}
1428
1429MemInitResult
1430Sema::BuildMemberInitializer(ValueDecl *Member, Expr **Args,
1431                             unsigned NumArgs, SourceLocation IdLoc,
1432                             SourceLocation LParenLoc,
1433                             SourceLocation RParenLoc) {
1434  FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
1435  IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
1436  assert((DirectMember || IndirectMember) &&
1437         "Member must be a FieldDecl or IndirectFieldDecl");
1438
1439  if (Member->isInvalidDecl())
1440    return true;
1441
1442  // Diagnose value-uses of fields to initialize themselves, e.g.
1443  //   foo(foo)
1444  // where foo is not also a parameter to the constructor.
1445  // TODO: implement -Wuninitialized and fold this into that framework.
1446  for (unsigned i = 0; i < NumArgs; ++i) {
1447    SourceLocation L;
1448    if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1449      // FIXME: Return true in the case when other fields are used before being
1450      // uninitialized. For example, let this field be the i'th field. When
1451      // initializing the i'th field, throw a warning if any of the >= i'th
1452      // fields are used, as they are not yet initialized.
1453      // Right now we are only handling the case where the i'th field uses
1454      // itself in its initializer.
1455      Diag(L, diag::warn_field_is_uninit);
1456    }
1457  }
1458
1459  bool HasDependentArg = false;
1460  for (unsigned i = 0; i < NumArgs; i++)
1461    HasDependentArg |= Args[i]->isTypeDependent();
1462
1463  Expr *Init;
1464  if (Member->getType()->isDependentType() || HasDependentArg) {
1465    // Can't check initialization for a member of dependent type or when
1466    // any of the arguments are type-dependent expressions.
1467    Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1468                                       RParenLoc);
1469
1470    // Erase any temporaries within this evaluation context; we're not
1471    // going to track them in the AST, since we'll be rebuilding the
1472    // ASTs during template instantiation.
1473    ExprTemporaries.erase(
1474              ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1475                          ExprTemporaries.end());
1476  } else {
1477    // Initialize the member.
1478    InitializedEntity MemberEntity =
1479      DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
1480                   : InitializedEntity::InitializeMember(IndirectMember, 0);
1481    InitializationKind Kind =
1482      InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1483
1484    InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1485
1486    ExprResult MemberInit =
1487      InitSeq.Perform(*this, MemberEntity, Kind,
1488                      MultiExprArg(*this, Args, NumArgs), 0);
1489    if (MemberInit.isInvalid())
1490      return true;
1491
1492    CheckImplicitConversions(MemberInit.get(), LParenLoc);
1493
1494    // C++0x [class.base.init]p7:
1495    //   The initialization of each base and member constitutes a
1496    //   full-expression.
1497    MemberInit = MaybeCreateExprWithCleanups(MemberInit);
1498    if (MemberInit.isInvalid())
1499      return true;
1500
1501    // If we are in a dependent context, template instantiation will
1502    // perform this type-checking again. Just save the arguments that we
1503    // received in a ParenListExpr.
1504    // FIXME: This isn't quite ideal, since our ASTs don't capture all
1505    // of the information that we have about the member
1506    // initializer. However, deconstructing the ASTs is a dicey process,
1507    // and this approach is far more likely to get the corner cases right.
1508    if (CurContext->isDependentContext())
1509      Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1510                                               RParenLoc);
1511    else
1512      Init = MemberInit.get();
1513  }
1514
1515  if (DirectMember) {
1516    return new (Context) CXXCtorInitializer(Context, DirectMember,
1517                                                    IdLoc, LParenLoc, Init,
1518                                                    RParenLoc);
1519  } else {
1520    return new (Context) CXXCtorInitializer(Context, IndirectMember,
1521                                                    IdLoc, LParenLoc, Init,
1522                                                    RParenLoc);
1523  }
1524}
1525
1526MemInitResult
1527Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo,
1528                                 Expr **Args, unsigned NumArgs,
1529                                 SourceLocation NameLoc,
1530                                 SourceLocation LParenLoc,
1531                                 SourceLocation RParenLoc,
1532                                 CXXRecordDecl *ClassDecl) {
1533  SourceLocation Loc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
1534  if (!LangOpts.CPlusPlus0x)
1535    return Diag(Loc, diag::err_delegation_0x_only)
1536      << TInfo->getTypeLoc().getLocalSourceRange();
1537
1538  // Initialize the object.
1539  InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
1540                                     QualType(ClassDecl->getTypeForDecl(), 0));
1541  InitializationKind Kind =
1542    InitializationKind::CreateDirect(NameLoc, LParenLoc, RParenLoc);
1543
1544  InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
1545
1546  ExprResult DelegationInit =
1547    InitSeq.Perform(*this, DelegationEntity, Kind,
1548                    MultiExprArg(*this, Args, NumArgs), 0);
1549  if (DelegationInit.isInvalid())
1550    return true;
1551
1552  CXXConstructExpr *ConExpr = cast<CXXConstructExpr>(DelegationInit.get());
1553  CXXConstructorDecl *Constructor
1554    = ConExpr->getConstructor();
1555  assert(Constructor && "Delegating constructor with no target?");
1556
1557  CheckImplicitConversions(DelegationInit.get(), LParenLoc);
1558
1559  // C++0x [class.base.init]p7:
1560  //   The initialization of each base and member constitutes a
1561  //   full-expression.
1562  DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
1563  if (DelegationInit.isInvalid())
1564    return true;
1565
1566  // If we are in a dependent context, template instantiation will
1567  // perform this type-checking again. Just save the arguments that we
1568  // received in a ParenListExpr.
1569  // FIXME: This isn't quite ideal, since our ASTs don't capture all
1570  // of the information that we have about the base
1571  // initializer. However, deconstructing the ASTs is a dicey process,
1572  // and this approach is far more likely to get the corner cases right.
1573  if (CurContext->isDependentContext()) {
1574    ExprResult Init
1575      = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args,
1576                                          NumArgs, RParenLoc));
1577    return new (Context) CXXCtorInitializer(Context, Loc, LParenLoc,
1578                                            Constructor, Init.takeAs<Expr>(),
1579                                            RParenLoc);
1580  }
1581
1582  return new (Context) CXXCtorInitializer(Context, Loc, LParenLoc, Constructor,
1583                                          DelegationInit.takeAs<Expr>(),
1584                                          RParenLoc);
1585}
1586
1587MemInitResult
1588Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
1589                           Expr **Args, unsigned NumArgs,
1590                           SourceLocation LParenLoc, SourceLocation RParenLoc,
1591                           CXXRecordDecl *ClassDecl,
1592                           SourceLocation EllipsisLoc) {
1593  bool HasDependentArg = false;
1594  for (unsigned i = 0; i < NumArgs; i++)
1595    HasDependentArg |= Args[i]->isTypeDependent();
1596
1597  SourceLocation BaseLoc
1598    = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1599
1600  if (!BaseType->isDependentType() && !BaseType->isRecordType())
1601    return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1602             << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1603
1604  // C++ [class.base.init]p2:
1605  //   [...] Unless the mem-initializer-id names a nonstatic data
1606  //   member of the constructor's class or a direct or virtual base
1607  //   of that class, the mem-initializer is ill-formed. A
1608  //   mem-initializer-list can initialize a base class using any
1609  //   name that denotes that base class type.
1610  bool Dependent = BaseType->isDependentType() || HasDependentArg;
1611
1612  if (EllipsisLoc.isValid()) {
1613    // This is a pack expansion.
1614    if (!BaseType->containsUnexpandedParameterPack())  {
1615      Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1616        << SourceRange(BaseLoc, RParenLoc);
1617
1618      EllipsisLoc = SourceLocation();
1619    }
1620  } else {
1621    // Check for any unexpanded parameter packs.
1622    if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
1623      return true;
1624
1625    for (unsigned I = 0; I != NumArgs; ++I)
1626      if (DiagnoseUnexpandedParameterPack(Args[I]))
1627        return true;
1628  }
1629
1630  // Check for direct and virtual base classes.
1631  const CXXBaseSpecifier *DirectBaseSpec = 0;
1632  const CXXBaseSpecifier *VirtualBaseSpec = 0;
1633  if (!Dependent) {
1634    if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
1635                                       BaseType))
1636      return BuildDelegatingInitializer(BaseTInfo, Args, NumArgs, BaseLoc,
1637                                        LParenLoc, RParenLoc, ClassDecl);
1638
1639    FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1640                        VirtualBaseSpec);
1641
1642    // C++ [base.class.init]p2:
1643    // Unless the mem-initializer-id names a nonstatic data member of the
1644    // constructor's class or a direct or virtual base of that class, the
1645    // mem-initializer is ill-formed.
1646    if (!DirectBaseSpec && !VirtualBaseSpec) {
1647      // If the class has any dependent bases, then it's possible that
1648      // one of those types will resolve to the same type as
1649      // BaseType. Therefore, just treat this as a dependent base
1650      // class initialization.  FIXME: Should we try to check the
1651      // initialization anyway? It seems odd.
1652      if (ClassDecl->hasAnyDependentBases())
1653        Dependent = true;
1654      else
1655        return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1656          << BaseType << Context.getTypeDeclType(ClassDecl)
1657          << BaseTInfo->getTypeLoc().getLocalSourceRange();
1658    }
1659  }
1660
1661  if (Dependent) {
1662    // Can't check initialization for a base of dependent type or when
1663    // any of the arguments are type-dependent expressions.
1664    ExprResult BaseInit
1665      = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1666                                          RParenLoc));
1667
1668    // Erase any temporaries within this evaluation context; we're not
1669    // going to track them in the AST, since we'll be rebuilding the
1670    // ASTs during template instantiation.
1671    ExprTemporaries.erase(
1672              ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1673                          ExprTemporaries.end());
1674
1675    return new (Context) CXXCtorInitializer(Context, BaseTInfo,
1676                                                    /*IsVirtual=*/false,
1677                                                    LParenLoc,
1678                                                    BaseInit.takeAs<Expr>(),
1679                                                    RParenLoc,
1680                                                    EllipsisLoc);
1681  }
1682
1683  // C++ [base.class.init]p2:
1684  //   If a mem-initializer-id is ambiguous because it designates both
1685  //   a direct non-virtual base class and an inherited virtual base
1686  //   class, the mem-initializer is ill-formed.
1687  if (DirectBaseSpec && VirtualBaseSpec)
1688    return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
1689      << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1690
1691  CXXBaseSpecifier *BaseSpec
1692    = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1693  if (!BaseSpec)
1694    BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1695
1696  // Initialize the base.
1697  InitializedEntity BaseEntity =
1698    InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
1699  InitializationKind Kind =
1700    InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1701
1702  InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1703
1704  ExprResult BaseInit =
1705    InitSeq.Perform(*this, BaseEntity, Kind,
1706                    MultiExprArg(*this, Args, NumArgs), 0);
1707  if (BaseInit.isInvalid())
1708    return true;
1709
1710  CheckImplicitConversions(BaseInit.get(), LParenLoc);
1711
1712  // C++0x [class.base.init]p7:
1713  //   The initialization of each base and member constitutes a
1714  //   full-expression.
1715  BaseInit = MaybeCreateExprWithCleanups(BaseInit);
1716  if (BaseInit.isInvalid())
1717    return true;
1718
1719  // If we are in a dependent context, template instantiation will
1720  // perform this type-checking again. Just save the arguments that we
1721  // received in a ParenListExpr.
1722  // FIXME: This isn't quite ideal, since our ASTs don't capture all
1723  // of the information that we have about the base
1724  // initializer. However, deconstructing the ASTs is a dicey process,
1725  // and this approach is far more likely to get the corner cases right.
1726  if (CurContext->isDependentContext()) {
1727    ExprResult Init
1728      = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1729                                          RParenLoc));
1730    return new (Context) CXXCtorInitializer(Context, BaseTInfo,
1731                                                    BaseSpec->isVirtual(),
1732                                                    LParenLoc,
1733                                                    Init.takeAs<Expr>(),
1734                                                    RParenLoc,
1735                                                    EllipsisLoc);
1736  }
1737
1738  return new (Context) CXXCtorInitializer(Context, BaseTInfo,
1739                                                  BaseSpec->isVirtual(),
1740                                                  LParenLoc,
1741                                                  BaseInit.takeAs<Expr>(),
1742                                                  RParenLoc,
1743                                                  EllipsisLoc);
1744}
1745
1746/// ImplicitInitializerKind - How an implicit base or member initializer should
1747/// initialize its base or member.
1748enum ImplicitInitializerKind {
1749  IIK_Default,
1750  IIK_Copy,
1751  IIK_Move
1752};
1753
1754static bool
1755BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
1756                             ImplicitInitializerKind ImplicitInitKind,
1757                             CXXBaseSpecifier *BaseSpec,
1758                             bool IsInheritedVirtualBase,
1759                             CXXCtorInitializer *&CXXBaseInit) {
1760  InitializedEntity InitEntity
1761    = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1762                                        IsInheritedVirtualBase);
1763
1764  ExprResult BaseInit;
1765
1766  switch (ImplicitInitKind) {
1767  case IIK_Default: {
1768    InitializationKind InitKind
1769      = InitializationKind::CreateDefault(Constructor->getLocation());
1770    InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1771    BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1772                               MultiExprArg(SemaRef, 0, 0));
1773    break;
1774  }
1775
1776  case IIK_Copy: {
1777    ParmVarDecl *Param = Constructor->getParamDecl(0);
1778    QualType ParamType = Param->getType().getNonReferenceType();
1779
1780    Expr *CopyCtorArg =
1781      DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), Param,
1782                          Constructor->getLocation(), ParamType,
1783                          VK_LValue, 0);
1784
1785    // Cast to the base class to avoid ambiguities.
1786    QualType ArgTy =
1787      SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1788                                       ParamType.getQualifiers());
1789
1790    CXXCastPath BasePath;
1791    BasePath.push_back(BaseSpec);
1792    CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
1793                                            CK_UncheckedDerivedToBase,
1794                                            VK_LValue, &BasePath).take();
1795
1796    InitializationKind InitKind
1797      = InitializationKind::CreateDirect(Constructor->getLocation(),
1798                                         SourceLocation(), SourceLocation());
1799    InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1800                                   &CopyCtorArg, 1);
1801    BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1802                               MultiExprArg(&CopyCtorArg, 1));
1803    break;
1804  }
1805
1806  case IIK_Move:
1807    assert(false && "Unhandled initializer kind!");
1808  }
1809
1810  BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
1811  if (BaseInit.isInvalid())
1812    return true;
1813
1814  CXXBaseInit =
1815    new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
1816               SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1817                                                        SourceLocation()),
1818                                             BaseSpec->isVirtual(),
1819                                             SourceLocation(),
1820                                             BaseInit.takeAs<Expr>(),
1821                                             SourceLocation(),
1822                                             SourceLocation());
1823
1824  return false;
1825}
1826
1827static bool
1828BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
1829                               ImplicitInitializerKind ImplicitInitKind,
1830                               FieldDecl *Field,
1831                               CXXCtorInitializer *&CXXMemberInit) {
1832  if (Field->isInvalidDecl())
1833    return true;
1834
1835  SourceLocation Loc = Constructor->getLocation();
1836
1837  if (ImplicitInitKind == IIK_Copy) {
1838    ParmVarDecl *Param = Constructor->getParamDecl(0);
1839    QualType ParamType = Param->getType().getNonReferenceType();
1840
1841    Expr *MemberExprBase =
1842      DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), Param,
1843                          Loc, ParamType, VK_LValue, 0);
1844
1845    // Build a reference to this field within the parameter.
1846    CXXScopeSpec SS;
1847    LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1848                              Sema::LookupMemberName);
1849    MemberLookup.addDecl(Field, AS_public);
1850    MemberLookup.resolveKind();
1851    ExprResult CopyCtorArg
1852      = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
1853                                         ParamType, Loc,
1854                                         /*IsArrow=*/false,
1855                                         SS,
1856                                         /*FirstQualifierInScope=*/0,
1857                                         MemberLookup,
1858                                         /*TemplateArgs=*/0);
1859    if (CopyCtorArg.isInvalid())
1860      return true;
1861
1862    // When the field we are copying is an array, create index variables for
1863    // each dimension of the array. We use these index variables to subscript
1864    // the source array, and other clients (e.g., CodeGen) will perform the
1865    // necessary iteration with these index variables.
1866    llvm::SmallVector<VarDecl *, 4> IndexVariables;
1867    QualType BaseType = Field->getType();
1868    QualType SizeType = SemaRef.Context.getSizeType();
1869    while (const ConstantArrayType *Array
1870                          = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1871      // Create the iteration variable for this array index.
1872      IdentifierInfo *IterationVarName = 0;
1873      {
1874        llvm::SmallString<8> Str;
1875        llvm::raw_svector_ostream OS(Str);
1876        OS << "__i" << IndexVariables.size();
1877        IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1878      }
1879      VarDecl *IterationVar
1880        = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
1881                          IterationVarName, SizeType,
1882                        SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1883                          SC_None, SC_None);
1884      IndexVariables.push_back(IterationVar);
1885
1886      // Create a reference to the iteration variable.
1887      ExprResult IterationVarRef
1888        = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc);
1889      assert(!IterationVarRef.isInvalid() &&
1890             "Reference to invented variable cannot fail!");
1891
1892      // Subscript the array with this iteration variable.
1893      CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CopyCtorArg.take(),
1894                                                            Loc,
1895                                                        IterationVarRef.take(),
1896                                                            Loc);
1897      if (CopyCtorArg.isInvalid())
1898        return true;
1899
1900      BaseType = Array->getElementType();
1901    }
1902
1903    // Construct the entity that we will be initializing. For an array, this
1904    // will be first element in the array, which may require several levels
1905    // of array-subscript entities.
1906    llvm::SmallVector<InitializedEntity, 4> Entities;
1907    Entities.reserve(1 + IndexVariables.size());
1908    Entities.push_back(InitializedEntity::InitializeMember(Field));
1909    for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1910      Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1911                                                              0,
1912                                                              Entities.back()));
1913
1914    // Direct-initialize to use the copy constructor.
1915    InitializationKind InitKind =
1916      InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1917
1918    Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1919    InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1920                                   &CopyCtorArgE, 1);
1921
1922    ExprResult MemberInit
1923      = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1924                        MultiExprArg(&CopyCtorArgE, 1));
1925    MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
1926    if (MemberInit.isInvalid())
1927      return true;
1928
1929    CXXMemberInit
1930      = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1931                                           MemberInit.takeAs<Expr>(), Loc,
1932                                           IndexVariables.data(),
1933                                           IndexVariables.size());
1934    return false;
1935  }
1936
1937  assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1938
1939  QualType FieldBaseElementType =
1940    SemaRef.Context.getBaseElementType(Field->getType());
1941
1942  if (FieldBaseElementType->isRecordType()) {
1943    InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
1944    InitializationKind InitKind =
1945      InitializationKind::CreateDefault(Loc);
1946
1947    InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1948    ExprResult MemberInit =
1949      InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
1950
1951    MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
1952    if (MemberInit.isInvalid())
1953      return true;
1954
1955    CXXMemberInit =
1956      new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
1957                                                       Field, Loc, Loc,
1958                                                       MemberInit.get(),
1959                                                       Loc);
1960    return false;
1961  }
1962
1963  if (FieldBaseElementType->isReferenceType()) {
1964    SemaRef.Diag(Constructor->getLocation(),
1965                 diag::err_uninitialized_member_in_ctor)
1966    << (int)Constructor->isImplicit()
1967    << SemaRef.Context.getTagDeclType(Constructor->getParent())
1968    << 0 << Field->getDeclName();
1969    SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1970    return true;
1971  }
1972
1973  if (FieldBaseElementType.isConstQualified()) {
1974    SemaRef.Diag(Constructor->getLocation(),
1975                 diag::err_uninitialized_member_in_ctor)
1976    << (int)Constructor->isImplicit()
1977    << SemaRef.Context.getTagDeclType(Constructor->getParent())
1978    << 1 << Field->getDeclName();
1979    SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1980    return true;
1981  }
1982
1983  // Nothing to initialize.
1984  CXXMemberInit = 0;
1985  return false;
1986}
1987
1988namespace {
1989struct BaseAndFieldInfo {
1990  Sema &S;
1991  CXXConstructorDecl *Ctor;
1992  bool AnyErrorsInInits;
1993  ImplicitInitializerKind IIK;
1994  llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
1995  llvm::SmallVector<CXXCtorInitializer*, 8> AllToInit;
1996
1997  BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1998    : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1999    // FIXME: Handle implicit move constructors.
2000    if (Ctor->isImplicit() && Ctor->isCopyConstructor())
2001      IIK = IIK_Copy;
2002    else
2003      IIK = IIK_Default;
2004  }
2005};
2006}
2007
2008static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
2009                                    FieldDecl *Top, FieldDecl *Field) {
2010
2011  // Overwhelmingly common case: we have a direct initializer for this field.
2012  if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field)) {
2013    Info.AllToInit.push_back(Init);
2014    return false;
2015  }
2016
2017  if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
2018    const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
2019    assert(FieldClassType && "anonymous struct/union without record type");
2020    CXXRecordDecl *FieldClassDecl
2021      = cast<CXXRecordDecl>(FieldClassType->getDecl());
2022
2023    // Even though union members never have non-trivial default
2024    // constructions in C++03, we still build member initializers for aggregate
2025    // record types which can be union members, and C++0x allows non-trivial
2026    // default constructors for union members, so we ensure that only one
2027    // member is initialized for these.
2028    if (FieldClassDecl->isUnion()) {
2029      // First check for an explicit initializer for one field.
2030      for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
2031           EA = FieldClassDecl->field_end(); FA != EA; FA++) {
2032        if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
2033          Info.AllToInit.push_back(Init);
2034
2035          // Once we've initialized a field of an anonymous union, the union
2036          // field in the class is also initialized, so exit immediately.
2037          return false;
2038        } else if ((*FA)->isAnonymousStructOrUnion()) {
2039          if (CollectFieldInitializer(Info, Top, *FA))
2040            return true;
2041        }
2042      }
2043
2044      // Fallthrough and construct a default initializer for the union as
2045      // a whole, which can call its default constructor if such a thing exists
2046      // (C++0x perhaps). FIXME: It's not clear that this is the correct
2047      // behavior going forward with C++0x, when anonymous unions there are
2048      // finalized, we should revisit this.
2049    } else {
2050      // For structs, we simply descend through to initialize all members where
2051      // necessary.
2052      for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
2053           EA = FieldClassDecl->field_end(); FA != EA; FA++) {
2054        if (CollectFieldInitializer(Info, Top, *FA))
2055          return true;
2056      }
2057    }
2058  }
2059
2060  // Don't try to build an implicit initializer if there were semantic
2061  // errors in any of the initializers (and therefore we might be
2062  // missing some that the user actually wrote).
2063  if (Info.AnyErrorsInInits)
2064    return false;
2065
2066  CXXCtorInitializer *Init = 0;
2067  if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
2068    return true;
2069
2070  if (Init)
2071    Info.AllToInit.push_back(Init);
2072
2073  return false;
2074}
2075
2076bool
2077Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
2078                               CXXCtorInitializer *Initializer) {
2079  assert(Initializer->isDelegatingInitializer());
2080  Constructor->setNumCtorInitializers(1);
2081  CXXCtorInitializer **initializer =
2082    new (Context) CXXCtorInitializer*[1];
2083  memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
2084  Constructor->setCtorInitializers(initializer);
2085
2086  if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
2087    MarkDeclarationReferenced(Initializer->getSourceLocation(), Dtor);
2088    DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
2089  }
2090
2091  DelegatingCtorDecls.push_back(Constructor);
2092
2093  return false;
2094}
2095
2096bool
2097Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
2098                                  CXXCtorInitializer **Initializers,
2099                                  unsigned NumInitializers,
2100                                  bool AnyErrors) {
2101  if (Constructor->getDeclContext()->isDependentContext()) {
2102    // Just store the initializers as written, they will be checked during
2103    // instantiation.
2104    if (NumInitializers > 0) {
2105      Constructor->setNumCtorInitializers(NumInitializers);
2106      CXXCtorInitializer **baseOrMemberInitializers =
2107        new (Context) CXXCtorInitializer*[NumInitializers];
2108      memcpy(baseOrMemberInitializers, Initializers,
2109             NumInitializers * sizeof(CXXCtorInitializer*));
2110      Constructor->setCtorInitializers(baseOrMemberInitializers);
2111    }
2112
2113    return false;
2114  }
2115
2116  BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
2117
2118  // We need to build the initializer AST according to order of construction
2119  // and not what user specified in the Initializers list.
2120  CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
2121  if (!ClassDecl)
2122    return true;
2123
2124  bool HadError = false;
2125
2126  for (unsigned i = 0; i < NumInitializers; i++) {
2127    CXXCtorInitializer *Member = Initializers[i];
2128
2129    if (Member->isBaseInitializer())
2130      Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
2131    else
2132      Info.AllBaseFields[Member->getAnyMember()] = Member;
2133  }
2134
2135  // Keep track of the direct virtual bases.
2136  llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2137  for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2138       E = ClassDecl->bases_end(); I != E; ++I) {
2139    if (I->isVirtual())
2140      DirectVBases.insert(I);
2141  }
2142
2143  // Push virtual bases before others.
2144  for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2145       E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2146
2147    if (CXXCtorInitializer *Value
2148        = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2149      Info.AllToInit.push_back(Value);
2150    } else if (!AnyErrors) {
2151      bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
2152      CXXCtorInitializer *CXXBaseInit;
2153      if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
2154                                       VBase, IsInheritedVirtualBase,
2155                                       CXXBaseInit)) {
2156        HadError = true;
2157        continue;
2158      }
2159
2160      Info.AllToInit.push_back(CXXBaseInit);
2161    }
2162  }
2163
2164  // Non-virtual bases.
2165  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2166       E = ClassDecl->bases_end(); Base != E; ++Base) {
2167    // Virtuals are in the virtual base list and already constructed.
2168    if (Base->isVirtual())
2169      continue;
2170
2171    if (CXXCtorInitializer *Value
2172          = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
2173      Info.AllToInit.push_back(Value);
2174    } else if (!AnyErrors) {
2175      CXXCtorInitializer *CXXBaseInit;
2176      if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
2177                                       Base, /*IsInheritedVirtualBase=*/false,
2178                                       CXXBaseInit)) {
2179        HadError = true;
2180        continue;
2181      }
2182
2183      Info.AllToInit.push_back(CXXBaseInit);
2184    }
2185  }
2186
2187  // Fields.
2188  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2189       E = ClassDecl->field_end(); Field != E; ++Field) {
2190    if ((*Field)->getType()->isIncompleteArrayType()) {
2191      assert(ClassDecl->hasFlexibleArrayMember() &&
2192             "Incomplete array type is not valid");
2193      continue;
2194    }
2195    if (CollectFieldInitializer(Info, *Field, *Field))
2196      HadError = true;
2197  }
2198
2199  NumInitializers = Info.AllToInit.size();
2200  if (NumInitializers > 0) {
2201    Constructor->setNumCtorInitializers(NumInitializers);
2202    CXXCtorInitializer **baseOrMemberInitializers =
2203      new (Context) CXXCtorInitializer*[NumInitializers];
2204    memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
2205           NumInitializers * sizeof(CXXCtorInitializer*));
2206    Constructor->setCtorInitializers(baseOrMemberInitializers);
2207
2208    // Constructors implicitly reference the base and member
2209    // destructors.
2210    MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
2211                                           Constructor->getParent());
2212  }
2213
2214  return HadError;
2215}
2216
2217static void *GetKeyForTopLevelField(FieldDecl *Field) {
2218  // For anonymous unions, use the class declaration as the key.
2219  if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
2220    if (RT->getDecl()->isAnonymousStructOrUnion())
2221      return static_cast<void *>(RT->getDecl());
2222  }
2223  return static_cast<void *>(Field);
2224}
2225
2226static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
2227  return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
2228}
2229
2230static void *GetKeyForMember(ASTContext &Context,
2231                             CXXCtorInitializer *Member) {
2232  if (!Member->isAnyMemberInitializer())
2233    return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
2234
2235  // For fields injected into the class via declaration of an anonymous union,
2236  // use its anonymous union class declaration as the unique key.
2237  FieldDecl *Field = Member->getAnyMember();
2238
2239  // If the field is a member of an anonymous struct or union, our key
2240  // is the anonymous record decl that's a direct child of the class.
2241  RecordDecl *RD = Field->getParent();
2242  if (RD->isAnonymousStructOrUnion()) {
2243    while (true) {
2244      RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
2245      if (Parent->isAnonymousStructOrUnion())
2246        RD = Parent;
2247      else
2248        break;
2249    }
2250
2251    return static_cast<void *>(RD);
2252  }
2253
2254  return static_cast<void *>(Field);
2255}
2256
2257static void
2258DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
2259                                  const CXXConstructorDecl *Constructor,
2260                                  CXXCtorInitializer **Inits,
2261                                  unsigned NumInits) {
2262  if (Constructor->getDeclContext()->isDependentContext())
2263    return;
2264
2265  // Don't check initializers order unless the warning is enabled at the
2266  // location of at least one initializer.
2267  bool ShouldCheckOrder = false;
2268  for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2269    CXXCtorInitializer *Init = Inits[InitIndex];
2270    if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
2271                                         Init->getSourceLocation())
2272          != Diagnostic::Ignored) {
2273      ShouldCheckOrder = true;
2274      break;
2275    }
2276  }
2277  if (!ShouldCheckOrder)
2278    return;
2279
2280  // Build the list of bases and members in the order that they'll
2281  // actually be initialized.  The explicit initializers should be in
2282  // this same order but may be missing things.
2283  llvm::SmallVector<const void*, 32> IdealInitKeys;
2284
2285  const CXXRecordDecl *ClassDecl = Constructor->getParent();
2286
2287  // 1. Virtual bases.
2288  for (CXXRecordDecl::base_class_const_iterator VBase =
2289       ClassDecl->vbases_begin(),
2290       E = ClassDecl->vbases_end(); VBase != E; ++VBase)
2291    IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
2292
2293  // 2. Non-virtual bases.
2294  for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
2295       E = ClassDecl->bases_end(); Base != E; ++Base) {
2296    if (Base->isVirtual())
2297      continue;
2298    IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
2299  }
2300
2301  // 3. Direct fields.
2302  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2303       E = ClassDecl->field_end(); Field != E; ++Field)
2304    IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
2305
2306  unsigned NumIdealInits = IdealInitKeys.size();
2307  unsigned IdealIndex = 0;
2308
2309  CXXCtorInitializer *PrevInit = 0;
2310  for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2311    CXXCtorInitializer *Init = Inits[InitIndex];
2312    void *InitKey = GetKeyForMember(SemaRef.Context, Init);
2313
2314    // Scan forward to try to find this initializer in the idealized
2315    // initializers list.
2316    for (; IdealIndex != NumIdealInits; ++IdealIndex)
2317      if (InitKey == IdealInitKeys[IdealIndex])
2318        break;
2319
2320    // If we didn't find this initializer, it must be because we
2321    // scanned past it on a previous iteration.  That can only
2322    // happen if we're out of order;  emit a warning.
2323    if (IdealIndex == NumIdealInits && PrevInit) {
2324      Sema::SemaDiagnosticBuilder D =
2325        SemaRef.Diag(PrevInit->getSourceLocation(),
2326                     diag::warn_initializer_out_of_order);
2327
2328      if (PrevInit->isAnyMemberInitializer())
2329        D << 0 << PrevInit->getAnyMember()->getDeclName();
2330      else
2331        D << 1 << PrevInit->getBaseClassInfo()->getType();
2332
2333      if (Init->isAnyMemberInitializer())
2334        D << 0 << Init->getAnyMember()->getDeclName();
2335      else
2336        D << 1 << Init->getBaseClassInfo()->getType();
2337
2338      // Move back to the initializer's location in the ideal list.
2339      for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2340        if (InitKey == IdealInitKeys[IdealIndex])
2341          break;
2342
2343      assert(IdealIndex != NumIdealInits &&
2344             "initializer not found in initializer list");
2345    }
2346
2347    PrevInit = Init;
2348  }
2349}
2350
2351namespace {
2352bool CheckRedundantInit(Sema &S,
2353                        CXXCtorInitializer *Init,
2354                        CXXCtorInitializer *&PrevInit) {
2355  if (!PrevInit) {
2356    PrevInit = Init;
2357    return false;
2358  }
2359
2360  if (FieldDecl *Field = Init->getMember())
2361    S.Diag(Init->getSourceLocation(),
2362           diag::err_multiple_mem_initialization)
2363      << Field->getDeclName()
2364      << Init->getSourceRange();
2365  else {
2366    const Type *BaseClass = Init->getBaseClass();
2367    assert(BaseClass && "neither field nor base");
2368    S.Diag(Init->getSourceLocation(),
2369           diag::err_multiple_base_initialization)
2370      << QualType(BaseClass, 0)
2371      << Init->getSourceRange();
2372  }
2373  S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2374    << 0 << PrevInit->getSourceRange();
2375
2376  return true;
2377}
2378
2379typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
2380typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2381
2382bool CheckRedundantUnionInit(Sema &S,
2383                             CXXCtorInitializer *Init,
2384                             RedundantUnionMap &Unions) {
2385  FieldDecl *Field = Init->getAnyMember();
2386  RecordDecl *Parent = Field->getParent();
2387  if (!Parent->isAnonymousStructOrUnion())
2388    return false;
2389
2390  NamedDecl *Child = Field;
2391  do {
2392    if (Parent->isUnion()) {
2393      UnionEntry &En = Unions[Parent];
2394      if (En.first && En.first != Child) {
2395        S.Diag(Init->getSourceLocation(),
2396               diag::err_multiple_mem_union_initialization)
2397          << Field->getDeclName()
2398          << Init->getSourceRange();
2399        S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2400          << 0 << En.second->getSourceRange();
2401        return true;
2402      } else if (!En.first) {
2403        En.first = Child;
2404        En.second = Init;
2405      }
2406    }
2407
2408    Child = Parent;
2409    Parent = cast<RecordDecl>(Parent->getDeclContext());
2410  } while (Parent->isAnonymousStructOrUnion());
2411
2412  return false;
2413}
2414}
2415
2416/// ActOnMemInitializers - Handle the member initializers for a constructor.
2417void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
2418                                SourceLocation ColonLoc,
2419                                MemInitTy **meminits, unsigned NumMemInits,
2420                                bool AnyErrors) {
2421  if (!ConstructorDecl)
2422    return;
2423
2424  AdjustDeclIfTemplate(ConstructorDecl);
2425
2426  CXXConstructorDecl *Constructor
2427    = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
2428
2429  if (!Constructor) {
2430    Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2431    return;
2432  }
2433
2434  CXXCtorInitializer **MemInits =
2435    reinterpret_cast<CXXCtorInitializer **>(meminits);
2436
2437  // Mapping for the duplicate initializers check.
2438  // For member initializers, this is keyed with a FieldDecl*.
2439  // For base initializers, this is keyed with a Type*.
2440  llvm::DenseMap<void*, CXXCtorInitializer *> Members;
2441
2442  // Mapping for the inconsistent anonymous-union initializers check.
2443  RedundantUnionMap MemberUnions;
2444
2445  bool HadError = false;
2446  for (unsigned i = 0; i < NumMemInits; i++) {
2447    CXXCtorInitializer *Init = MemInits[i];
2448
2449    // Set the source order index.
2450    Init->setSourceOrder(i);
2451
2452    if (Init->isAnyMemberInitializer()) {
2453      FieldDecl *Field = Init->getAnyMember();
2454      if (CheckRedundantInit(*this, Init, Members[Field]) ||
2455          CheckRedundantUnionInit(*this, Init, MemberUnions))
2456        HadError = true;
2457    } else if (Init->isBaseInitializer()) {
2458      void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2459      if (CheckRedundantInit(*this, Init, Members[Key]))
2460        HadError = true;
2461    } else {
2462      assert(Init->isDelegatingInitializer());
2463      // This must be the only initializer
2464      if (i != 0 || NumMemInits > 1) {
2465        Diag(MemInits[0]->getSourceLocation(),
2466             diag::err_delegating_initializer_alone)
2467          << MemInits[0]->getSourceRange();
2468        HadError = true;
2469        // We will treat this as being the only initializer.
2470      }
2471      SetDelegatingInitializer(Constructor, MemInits[i]);
2472      // Return immediately as the initializer is set.
2473      return;
2474    }
2475  }
2476
2477  if (HadError)
2478    return;
2479
2480  DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
2481
2482  SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
2483}
2484
2485void
2486Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2487                                             CXXRecordDecl *ClassDecl) {
2488  // Ignore dependent contexts.
2489  if (ClassDecl->isDependentContext())
2490    return;
2491
2492  // FIXME: all the access-control diagnostics are positioned on the
2493  // field/base declaration.  That's probably good; that said, the
2494  // user might reasonably want to know why the destructor is being
2495  // emitted, and we currently don't say.
2496
2497  // Non-static data members.
2498  for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2499       E = ClassDecl->field_end(); I != E; ++I) {
2500    FieldDecl *Field = *I;
2501    if (Field->isInvalidDecl())
2502      continue;
2503    QualType FieldType = Context.getBaseElementType(Field->getType());
2504
2505    const RecordType* RT = FieldType->getAs<RecordType>();
2506    if (!RT)
2507      continue;
2508
2509    CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2510    if (FieldClassDecl->isInvalidDecl())
2511      continue;
2512    if (FieldClassDecl->hasTrivialDestructor())
2513      continue;
2514
2515    CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
2516    assert(Dtor && "No dtor found for FieldClassDecl!");
2517    CheckDestructorAccess(Field->getLocation(), Dtor,
2518                          PDiag(diag::err_access_dtor_field)
2519                            << Field->getDeclName()
2520                            << FieldType);
2521
2522    MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
2523  }
2524
2525  llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2526
2527  // Bases.
2528  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2529       E = ClassDecl->bases_end(); Base != E; ++Base) {
2530    // Bases are always records in a well-formed non-dependent class.
2531    const RecordType *RT = Base->getType()->getAs<RecordType>();
2532
2533    // Remember direct virtual bases.
2534    if (Base->isVirtual())
2535      DirectVirtualBases.insert(RT);
2536
2537    CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2538    // If our base class is invalid, we probably can't get its dtor anyway.
2539    if (BaseClassDecl->isInvalidDecl())
2540      continue;
2541    // Ignore trivial destructors.
2542    if (BaseClassDecl->hasTrivialDestructor())
2543      continue;
2544
2545    CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
2546    assert(Dtor && "No dtor found for BaseClassDecl!");
2547
2548    // FIXME: caret should be on the start of the class name
2549    CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
2550                          PDiag(diag::err_access_dtor_base)
2551                            << Base->getType()
2552                            << Base->getSourceRange());
2553
2554    MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
2555  }
2556
2557  // Virtual bases.
2558  for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2559       E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2560
2561    // Bases are always records in a well-formed non-dependent class.
2562    const RecordType *RT = VBase->getType()->getAs<RecordType>();
2563
2564    // Ignore direct virtual bases.
2565    if (DirectVirtualBases.count(RT))
2566      continue;
2567
2568    CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2569    // If our base class is invalid, we probably can't get its dtor anyway.
2570    if (BaseClassDecl->isInvalidDecl())
2571      continue;
2572    // Ignore trivial destructors.
2573    if (BaseClassDecl->hasTrivialDestructor())
2574      continue;
2575
2576    CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
2577    assert(Dtor && "No dtor found for BaseClassDecl!");
2578    CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
2579                          PDiag(diag::err_access_dtor_vbase)
2580                            << VBase->getType());
2581
2582    MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
2583  }
2584}
2585
2586void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
2587  if (!CDtorDecl)
2588    return;
2589
2590  if (CXXConstructorDecl *Constructor
2591      = dyn_cast<CXXConstructorDecl>(CDtorDecl))
2592    SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
2593}
2594
2595bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2596                                  unsigned DiagID, AbstractDiagSelID SelID) {
2597  if (SelID == -1)
2598    return RequireNonAbstractType(Loc, T, PDiag(DiagID));
2599  else
2600    return RequireNonAbstractType(Loc, T, PDiag(DiagID) << SelID);
2601}
2602
2603bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2604                                  const PartialDiagnostic &PD) {
2605  if (!getLangOptions().CPlusPlus)
2606    return false;
2607
2608  if (const ArrayType *AT = Context.getAsArrayType(T))
2609    return RequireNonAbstractType(Loc, AT->getElementType(), PD);
2610
2611  if (const PointerType *PT = T->getAs<PointerType>()) {
2612    // Find the innermost pointer type.
2613    while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
2614      PT = T;
2615
2616    if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
2617      return RequireNonAbstractType(Loc, AT->getElementType(), PD);
2618  }
2619
2620  const RecordType *RT = T->getAs<RecordType>();
2621  if (!RT)
2622    return false;
2623
2624  const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
2625
2626  // We can't answer whether something is abstract until it has a
2627  // definition.  If it's currently being defined, we'll walk back
2628  // over all the declarations when we have a full definition.
2629  const CXXRecordDecl *Def = RD->getDefinition();
2630  if (!Def || Def->isBeingDefined())
2631    return false;
2632
2633  if (!RD->isAbstract())
2634    return false;
2635
2636  Diag(Loc, PD) << RD->getDeclName();
2637  DiagnoseAbstractType(RD);
2638
2639  return true;
2640}
2641
2642void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
2643  // Check if we've already emitted the list of pure virtual functions
2644  // for this class.
2645  if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2646    return;
2647
2648  CXXFinalOverriderMap FinalOverriders;
2649  RD->getFinalOverriders(FinalOverriders);
2650
2651  // Keep a set of seen pure methods so we won't diagnose the same method
2652  // more than once.
2653  llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2654
2655  for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2656                                   MEnd = FinalOverriders.end();
2657       M != MEnd;
2658       ++M) {
2659    for (OverridingMethods::iterator SO = M->second.begin(),
2660                                  SOEnd = M->second.end();
2661         SO != SOEnd; ++SO) {
2662      // C++ [class.abstract]p4:
2663      //   A class is abstract if it contains or inherits at least one
2664      //   pure virtual function for which the final overrider is pure
2665      //   virtual.
2666
2667      //
2668      if (SO->second.size() != 1)
2669        continue;
2670
2671      if (!SO->second.front().Method->isPure())
2672        continue;
2673
2674      if (!SeenPureMethods.insert(SO->second.front().Method))
2675        continue;
2676
2677      Diag(SO->second.front().Method->getLocation(),
2678           diag::note_pure_virtual_function)
2679        << SO->second.front().Method->getDeclName() << RD->getDeclName();
2680    }
2681  }
2682
2683  if (!PureVirtualClassDiagSet)
2684    PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2685  PureVirtualClassDiagSet->insert(RD);
2686}
2687
2688namespace {
2689struct AbstractUsageInfo {
2690  Sema &S;
2691  CXXRecordDecl *Record;
2692  CanQualType AbstractType;
2693  bool Invalid;
2694
2695  AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
2696    : S(S), Record(Record),
2697      AbstractType(S.Context.getCanonicalType(
2698                   S.Context.getTypeDeclType(Record))),
2699      Invalid(false) {}
2700
2701  void DiagnoseAbstractType() {
2702    if (Invalid) return;
2703    S.DiagnoseAbstractType(Record);
2704    Invalid = true;
2705  }
2706
2707  void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
2708};
2709
2710struct CheckAbstractUsage {
2711  AbstractUsageInfo &Info;
2712  const NamedDecl *Ctx;
2713
2714  CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
2715    : Info(Info), Ctx(Ctx) {}
2716
2717  void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2718    switch (TL.getTypeLocClass()) {
2719#define ABSTRACT_TYPELOC(CLASS, PARENT)
2720#define TYPELOC(CLASS, PARENT) \
2721    case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
2722#include "clang/AST/TypeLocNodes.def"
2723    }
2724  }
2725
2726  void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2727    Visit(TL.getResultLoc(), Sema::AbstractReturnType);
2728    for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2729      if (!TL.getArg(I))
2730        continue;
2731
2732      TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
2733      if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
2734    }
2735  }
2736
2737  void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2738    Visit(TL.getElementLoc(), Sema::AbstractArrayType);
2739  }
2740
2741  void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2742    // Visit the type parameters from a permissive context.
2743    for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2744      TemplateArgumentLoc TAL = TL.getArgLoc(I);
2745      if (TAL.getArgument().getKind() == TemplateArgument::Type)
2746        if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
2747          Visit(TSI->getTypeLoc(), Sema::AbstractNone);
2748      // TODO: other template argument types?
2749    }
2750  }
2751
2752  // Visit pointee types from a permissive context.
2753#define CheckPolymorphic(Type) \
2754  void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
2755    Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
2756  }
2757  CheckPolymorphic(PointerTypeLoc)
2758  CheckPolymorphic(ReferenceTypeLoc)
2759  CheckPolymorphic(MemberPointerTypeLoc)
2760  CheckPolymorphic(BlockPointerTypeLoc)
2761
2762  /// Handle all the types we haven't given a more specific
2763  /// implementation for above.
2764  void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2765    // Every other kind of type that we haven't called out already
2766    // that has an inner type is either (1) sugar or (2) contains that
2767    // inner type in some way as a subobject.
2768    if (TypeLoc Next = TL.getNextTypeLoc())
2769      return Visit(Next, Sel);
2770
2771    // If there's no inner type and we're in a permissive context,
2772    // don't diagnose.
2773    if (Sel == Sema::AbstractNone) return;
2774
2775    // Check whether the type matches the abstract type.
2776    QualType T = TL.getType();
2777    if (T->isArrayType()) {
2778      Sel = Sema::AbstractArrayType;
2779      T = Info.S.Context.getBaseElementType(T);
2780    }
2781    CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
2782    if (CT != Info.AbstractType) return;
2783
2784    // It matched; do some magic.
2785    if (Sel == Sema::AbstractArrayType) {
2786      Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
2787        << T << TL.getSourceRange();
2788    } else {
2789      Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
2790        << Sel << T << TL.getSourceRange();
2791    }
2792    Info.DiagnoseAbstractType();
2793  }
2794};
2795
2796void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
2797                                  Sema::AbstractDiagSelID Sel) {
2798  CheckAbstractUsage(*this, D).Visit(TL, Sel);
2799}
2800
2801}
2802
2803/// Check for invalid uses of an abstract type in a method declaration.
2804static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2805                                    CXXMethodDecl *MD) {
2806  // No need to do the check on definitions, which require that
2807  // the return/param types be complete.
2808  if (MD->doesThisDeclarationHaveABody())
2809    return;
2810
2811  // For safety's sake, just ignore it if we don't have type source
2812  // information.  This should never happen for non-implicit methods,
2813  // but...
2814  if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
2815    Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
2816}
2817
2818/// Check for invalid uses of an abstract type within a class definition.
2819static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2820                                    CXXRecordDecl *RD) {
2821  for (CXXRecordDecl::decl_iterator
2822         I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
2823    Decl *D = *I;
2824    if (D->isImplicit()) continue;
2825
2826    // Methods and method templates.
2827    if (isa<CXXMethodDecl>(D)) {
2828      CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
2829    } else if (isa<FunctionTemplateDecl>(D)) {
2830      FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
2831      CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
2832
2833    // Fields and static variables.
2834    } else if (isa<FieldDecl>(D)) {
2835      FieldDecl *FD = cast<FieldDecl>(D);
2836      if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
2837        Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
2838    } else if (isa<VarDecl>(D)) {
2839      VarDecl *VD = cast<VarDecl>(D);
2840      if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
2841        Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
2842
2843    // Nested classes and class templates.
2844    } else if (isa<CXXRecordDecl>(D)) {
2845      CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
2846    } else if (isa<ClassTemplateDecl>(D)) {
2847      CheckAbstractClassUsage(Info,
2848                             cast<ClassTemplateDecl>(D)->getTemplatedDecl());
2849    }
2850  }
2851}
2852
2853/// \brief Perform semantic checks on a class definition that has been
2854/// completing, introducing implicitly-declared members, checking for
2855/// abstract types, etc.
2856void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
2857  if (!Record)
2858    return;
2859
2860  if (Record->isAbstract() && !Record->isInvalidDecl()) {
2861    AbstractUsageInfo Info(*this, Record);
2862    CheckAbstractClassUsage(Info, Record);
2863  }
2864
2865  // If this is not an aggregate type and has no user-declared constructor,
2866  // complain about any non-static data members of reference or const scalar
2867  // type, since they will never get initializers.
2868  if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2869      !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2870    bool Complained = false;
2871    for (RecordDecl::field_iterator F = Record->field_begin(),
2872                                 FEnd = Record->field_end();
2873         F != FEnd; ++F) {
2874      if (F->getType()->isReferenceType() ||
2875          (F->getType().isConstQualified() && F->getType()->isScalarType())) {
2876        if (!Complained) {
2877          Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2878            << Record->getTagKind() << Record;
2879          Complained = true;
2880        }
2881
2882        Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2883          << F->getType()->isReferenceType()
2884          << F->getDeclName();
2885      }
2886    }
2887  }
2888
2889  if (Record->isDynamicClass() && !Record->isDependentType())
2890    DynamicClasses.push_back(Record);
2891
2892  if (Record->getIdentifier()) {
2893    // C++ [class.mem]p13:
2894    //   If T is the name of a class, then each of the following shall have a
2895    //   name different from T:
2896    //     - every member of every anonymous union that is a member of class T.
2897    //
2898    // C++ [class.mem]p14:
2899    //   In addition, if class T has a user-declared constructor (12.1), every
2900    //   non-static data member of class T shall have a name different from T.
2901    for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
2902         R.first != R.second; ++R.first) {
2903      NamedDecl *D = *R.first;
2904      if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
2905          isa<IndirectFieldDecl>(D)) {
2906        Diag(D->getLocation(), diag::err_member_name_of_class)
2907          << D->getDeclName();
2908        break;
2909      }
2910    }
2911  }
2912
2913  // Warn if the class has virtual methods but non-virtual public destructor.
2914  if (Record->isPolymorphic() && !Record->isDependentType()) {
2915    CXXDestructorDecl *dtor = Record->getDestructor();
2916    if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
2917      Diag(dtor ? dtor->getLocation() : Record->getLocation(),
2918           diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
2919  }
2920
2921  // See if a method overloads virtual methods in a base
2922  /// class without overriding any.
2923  if (!Record->isDependentType()) {
2924    for (CXXRecordDecl::method_iterator M = Record->method_begin(),
2925                                     MEnd = Record->method_end();
2926         M != MEnd; ++M) {
2927      if (!(*M)->isStatic())
2928        DiagnoseHiddenVirtualMethods(Record, *M);
2929    }
2930  }
2931
2932  // Declare inherited constructors. We do this eagerly here because:
2933  // - The standard requires an eager diagnostic for conflicting inherited
2934  //   constructors from different classes.
2935  // - The lazy declaration of the other implicit constructors is so as to not
2936  //   waste space and performance on classes that are not meant to be
2937  //   instantiated (e.g. meta-functions). This doesn't apply to classes that
2938  //   have inherited constructors.
2939  DeclareInheritedConstructors(Record);
2940}
2941
2942/// \brief Data used with FindHiddenVirtualMethod
2943namespace {
2944  struct FindHiddenVirtualMethodData {
2945    Sema *S;
2946    CXXMethodDecl *Method;
2947    llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
2948    llvm::SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
2949  };
2950}
2951
2952/// \brief Member lookup function that determines whether a given C++
2953/// method overloads virtual methods in a base class without overriding any,
2954/// to be used with CXXRecordDecl::lookupInBases().
2955static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
2956                                    CXXBasePath &Path,
2957                                    void *UserData) {
2958  RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
2959
2960  FindHiddenVirtualMethodData &Data
2961    = *static_cast<FindHiddenVirtualMethodData*>(UserData);
2962
2963  DeclarationName Name = Data.Method->getDeclName();
2964  assert(Name.getNameKind() == DeclarationName::Identifier);
2965
2966  bool foundSameNameMethod = false;
2967  llvm::SmallVector<CXXMethodDecl *, 8> overloadedMethods;
2968  for (Path.Decls = BaseRecord->lookup(Name);
2969       Path.Decls.first != Path.Decls.second;
2970       ++Path.Decls.first) {
2971    NamedDecl *D = *Path.Decls.first;
2972    if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
2973      MD = MD->getCanonicalDecl();
2974      foundSameNameMethod = true;
2975      // Interested only in hidden virtual methods.
2976      if (!MD->isVirtual())
2977        continue;
2978      // If the method we are checking overrides a method from its base
2979      // don't warn about the other overloaded methods.
2980      if (!Data.S->IsOverload(Data.Method, MD, false))
2981        return true;
2982      // Collect the overload only if its hidden.
2983      if (!Data.OverridenAndUsingBaseMethods.count(MD))
2984        overloadedMethods.push_back(MD);
2985    }
2986  }
2987
2988  if (foundSameNameMethod)
2989    Data.OverloadedMethods.append(overloadedMethods.begin(),
2990                                   overloadedMethods.end());
2991  return foundSameNameMethod;
2992}
2993
2994/// \brief See if a method overloads virtual methods in a base class without
2995/// overriding any.
2996void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
2997  if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
2998                               MD->getLocation()) == Diagnostic::Ignored)
2999    return;
3000  if (MD->getDeclName().getNameKind() != DeclarationName::Identifier)
3001    return;
3002
3003  CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
3004                     /*bool RecordPaths=*/false,
3005                     /*bool DetectVirtual=*/false);
3006  FindHiddenVirtualMethodData Data;
3007  Data.Method = MD;
3008  Data.S = this;
3009
3010  // Keep the base methods that were overriden or introduced in the subclass
3011  // by 'using' in a set. A base method not in this set is hidden.
3012  for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
3013       res.first != res.second; ++res.first) {
3014    if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
3015      for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
3016                                          E = MD->end_overridden_methods();
3017           I != E; ++I)
3018        Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
3019    if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
3020      if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
3021        Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
3022  }
3023
3024  if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
3025      !Data.OverloadedMethods.empty()) {
3026    Diag(MD->getLocation(), diag::warn_overloaded_virtual)
3027      << MD << (Data.OverloadedMethods.size() > 1);
3028
3029    for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
3030      CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
3031      Diag(overloadedMD->getLocation(),
3032           diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
3033    }
3034  }
3035}
3036
3037void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
3038                                             Decl *TagDecl,
3039                                             SourceLocation LBrac,
3040                                             SourceLocation RBrac,
3041                                             AttributeList *AttrList) {
3042  if (!TagDecl)
3043    return;
3044
3045  AdjustDeclIfTemplate(TagDecl);
3046
3047  ActOnFields(S, RLoc, TagDecl,
3048              // strict aliasing violation!
3049              reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
3050              FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
3051
3052  CheckCompletedCXXClass(
3053                        dyn_cast_or_null<CXXRecordDecl>(TagDecl));
3054}
3055
3056namespace {
3057  /// \brief Helper class that collects exception specifications for
3058  /// implicitly-declared special member functions.
3059  class ImplicitExceptionSpecification {
3060    ASTContext &Context;
3061    // We order exception specifications thus:
3062    // noexcept is the most restrictive, but is only used in C++0x.
3063    // throw() comes next.
3064    // Then a throw(collected exceptions)
3065    // Finally no specification.
3066    // throw(...) is used instead if any called function uses it.
3067    ExceptionSpecificationType ComputedEST;
3068    llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
3069    llvm::SmallVector<QualType, 4> Exceptions;
3070
3071    void ClearExceptions() {
3072      ExceptionsSeen.clear();
3073      Exceptions.clear();
3074    }
3075
3076  public:
3077    explicit ImplicitExceptionSpecification(ASTContext &Context)
3078      : Context(Context), ComputedEST(EST_BasicNoexcept) {
3079      if (!Context.getLangOptions().CPlusPlus0x)
3080        ComputedEST = EST_DynamicNone;
3081    }
3082
3083    /// \brief Get the computed exception specification type.
3084    ExceptionSpecificationType getExceptionSpecType() const {
3085      assert(ComputedEST != EST_ComputedNoexcept &&
3086             "noexcept(expr) should not be a possible result");
3087      return ComputedEST;
3088    }
3089
3090    /// \brief The number of exceptions in the exception specification.
3091    unsigned size() const { return Exceptions.size(); }
3092
3093    /// \brief The set of exceptions in the exception specification.
3094    const QualType *data() const { return Exceptions.data(); }
3095
3096    /// \brief Integrate another called method into the collected data.
3097    void CalledDecl(CXXMethodDecl *Method) {
3098      // If we have an MSAny spec already, don't bother.
3099      if (!Method || ComputedEST == EST_MSAny)
3100        return;
3101
3102      const FunctionProtoType *Proto
3103        = Method->getType()->getAs<FunctionProtoType>();
3104
3105      ExceptionSpecificationType EST = Proto->getExceptionSpecType();
3106
3107      // If this function can throw any exceptions, make a note of that.
3108      if (EST == EST_MSAny || EST == EST_None) {
3109        ClearExceptions();
3110        ComputedEST = EST;
3111        return;
3112      }
3113
3114      // If this function has a basic noexcept, it doesn't affect the outcome.
3115      if (EST == EST_BasicNoexcept)
3116        return;
3117
3118      // If we have a throw-all spec at this point, ignore the function.
3119      if (ComputedEST == EST_None)
3120        return;
3121
3122      // If we're still at noexcept(true) and there's a nothrow() callee,
3123      // change to that specification.
3124      if (EST == EST_DynamicNone) {
3125        if (ComputedEST == EST_BasicNoexcept)
3126          ComputedEST = EST_DynamicNone;
3127        return;
3128      }
3129
3130      // Check out noexcept specs.
3131      if (EST == EST_ComputedNoexcept) {
3132        FunctionProtoType::NoexceptResult NR = Proto->getNoexceptSpec(Context);
3133        assert(NR != FunctionProtoType::NR_NoNoexcept &&
3134               "Must have noexcept result for EST_ComputedNoexcept.");
3135        assert(NR != FunctionProtoType::NR_Dependent &&
3136               "Should not generate implicit declarations for dependent cases, "
3137               "and don't know how to handle them anyway.");
3138
3139        // noexcept(false) -> no spec on the new function
3140        if (NR == FunctionProtoType::NR_Throw) {
3141          ClearExceptions();
3142          ComputedEST = EST_None;
3143        }
3144        // noexcept(true) won't change anything either.
3145        return;
3146      }
3147
3148      assert(EST == EST_Dynamic && "EST case not considered earlier.");
3149      assert(ComputedEST != EST_None &&
3150             "Shouldn't collect exceptions when throw-all is guaranteed.");
3151      ComputedEST = EST_Dynamic;
3152      // Record the exceptions in this function's exception specification.
3153      for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
3154                                              EEnd = Proto->exception_end();
3155           E != EEnd; ++E)
3156        if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
3157          Exceptions.push_back(*E);
3158    }
3159  };
3160}
3161
3162
3163/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
3164/// special functions, such as the default constructor, copy
3165/// constructor, or destructor, to the given C++ class (C++
3166/// [special]p1).  This routine can only be executed just before the
3167/// definition of the class is complete.
3168void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
3169  if (!ClassDecl->hasUserDeclaredConstructor())
3170    ++ASTContext::NumImplicitDefaultConstructors;
3171
3172  if (!ClassDecl->hasUserDeclaredCopyConstructor())
3173    ++ASTContext::NumImplicitCopyConstructors;
3174
3175  if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
3176    ++ASTContext::NumImplicitCopyAssignmentOperators;
3177
3178    // If we have a dynamic class, then the copy assignment operator may be
3179    // virtual, so we have to declare it immediately. This ensures that, e.g.,
3180    // it shows up in the right place in the vtable and that we diagnose
3181    // problems with the implicit exception specification.
3182    if (ClassDecl->isDynamicClass())
3183      DeclareImplicitCopyAssignment(ClassDecl);
3184  }
3185
3186  if (!ClassDecl->hasUserDeclaredDestructor()) {
3187    ++ASTContext::NumImplicitDestructors;
3188
3189    // If we have a dynamic class, then the destructor may be virtual, so we
3190    // have to declare the destructor immediately. This ensures that, e.g., it
3191    // shows up in the right place in the vtable and that we diagnose problems
3192    // with the implicit exception specification.
3193    if (ClassDecl->isDynamicClass())
3194      DeclareImplicitDestructor(ClassDecl);
3195  }
3196}
3197
3198void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
3199  if (!D)
3200    return;
3201
3202  int NumParamList = D->getNumTemplateParameterLists();
3203  for (int i = 0; i < NumParamList; i++) {
3204    TemplateParameterList* Params = D->getTemplateParameterList(i);
3205    for (TemplateParameterList::iterator Param = Params->begin(),
3206                                      ParamEnd = Params->end();
3207          Param != ParamEnd; ++Param) {
3208      NamedDecl *Named = cast<NamedDecl>(*Param);
3209      if (Named->getDeclName()) {
3210        S->AddDecl(Named);
3211        IdResolver.AddDecl(Named);
3212      }
3213    }
3214  }
3215}
3216
3217void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
3218  if (!D)
3219    return;
3220
3221  TemplateParameterList *Params = 0;
3222  if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
3223    Params = Template->getTemplateParameters();
3224  else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3225           = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
3226    Params = PartialSpec->getTemplateParameters();
3227  else
3228    return;
3229
3230  for (TemplateParameterList::iterator Param = Params->begin(),
3231                                    ParamEnd = Params->end();
3232       Param != ParamEnd; ++Param) {
3233    NamedDecl *Named = cast<NamedDecl>(*Param);
3234    if (Named->getDeclName()) {
3235      S->AddDecl(Named);
3236      IdResolver.AddDecl(Named);
3237    }
3238  }
3239}
3240
3241void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
3242  if (!RecordD) return;
3243  AdjustDeclIfTemplate(RecordD);
3244  CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
3245  PushDeclContext(S, Record);
3246}
3247
3248void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
3249  if (!RecordD) return;
3250  PopDeclContext();
3251}
3252
3253/// ActOnStartDelayedCXXMethodDeclaration - We have completed
3254/// parsing a top-level (non-nested) C++ class, and we are now
3255/// parsing those parts of the given Method declaration that could
3256/// not be parsed earlier (C++ [class.mem]p2), such as default
3257/// arguments. This action should enter the scope of the given
3258/// Method declaration as if we had just parsed the qualified method
3259/// name. However, it should not bring the parameters into scope;
3260/// that will be performed by ActOnDelayedCXXMethodParameter.
3261void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
3262}
3263
3264/// ActOnDelayedCXXMethodParameter - We've already started a delayed
3265/// C++ method declaration. We're (re-)introducing the given
3266/// function parameter into scope for use in parsing later parts of
3267/// the method declaration. For example, we could see an
3268/// ActOnParamDefaultArgument event for this parameter.
3269void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
3270  if (!ParamD)
3271    return;
3272
3273  ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
3274
3275  // If this parameter has an unparsed default argument, clear it out
3276  // to make way for the parsed default argument.
3277  if (Param->hasUnparsedDefaultArg())
3278    Param->setDefaultArg(0);
3279
3280  S->AddDecl(Param);
3281  if (Param->getDeclName())
3282    IdResolver.AddDecl(Param);
3283}
3284
3285/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
3286/// processing the delayed method declaration for Method. The method
3287/// declaration is now considered finished. There may be a separate
3288/// ActOnStartOfFunctionDef action later (not necessarily
3289/// immediately!) for this method, if it was also defined inside the
3290/// class body.
3291void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
3292  if (!MethodD)
3293    return;
3294
3295  AdjustDeclIfTemplate(MethodD);
3296
3297  FunctionDecl *Method = cast<FunctionDecl>(MethodD);
3298
3299  // Now that we have our default arguments, check the constructor
3300  // again. It could produce additional diagnostics or affect whether
3301  // the class has implicitly-declared destructors, among other
3302  // things.
3303  if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
3304    CheckConstructor(Constructor);
3305
3306  // Check the default arguments, which we may have added.
3307  if (!Method->isInvalidDecl())
3308    CheckCXXDefaultArguments(Method);
3309}
3310
3311/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
3312/// the well-formedness of the constructor declarator @p D with type @p
3313/// R. If there are any errors in the declarator, this routine will
3314/// emit diagnostics and set the invalid bit to true.  In any case, the type
3315/// will be updated to reflect a well-formed type for the constructor and
3316/// returned.
3317QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
3318                                          StorageClass &SC) {
3319  bool isVirtual = D.getDeclSpec().isVirtualSpecified();
3320
3321  // C++ [class.ctor]p3:
3322  //   A constructor shall not be virtual (10.3) or static (9.4). A
3323  //   constructor can be invoked for a const, volatile or const
3324  //   volatile object. A constructor shall not be declared const,
3325  //   volatile, or const volatile (9.3.2).
3326  if (isVirtual) {
3327    if (!D.isInvalidType())
3328      Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
3329        << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
3330        << SourceRange(D.getIdentifierLoc());
3331    D.setInvalidType();
3332  }
3333  if (SC == SC_Static) {
3334    if (!D.isInvalidType())
3335      Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
3336        << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3337        << SourceRange(D.getIdentifierLoc());
3338    D.setInvalidType();
3339    SC = SC_None;
3340  }
3341
3342  DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
3343  if (FTI.TypeQuals != 0) {
3344    if (FTI.TypeQuals & Qualifiers::Const)
3345      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3346        << "const" << SourceRange(D.getIdentifierLoc());
3347    if (FTI.TypeQuals & Qualifiers::Volatile)
3348      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3349        << "volatile" << SourceRange(D.getIdentifierLoc());
3350    if (FTI.TypeQuals & Qualifiers::Restrict)
3351      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3352        << "restrict" << SourceRange(D.getIdentifierLoc());
3353    D.setInvalidType();
3354  }
3355
3356  // C++0x [class.ctor]p4:
3357  //   A constructor shall not be declared with a ref-qualifier.
3358  if (FTI.hasRefQualifier()) {
3359    Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
3360      << FTI.RefQualifierIsLValueRef
3361      << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
3362    D.setInvalidType();
3363  }
3364
3365  // Rebuild the function type "R" without any type qualifiers (in
3366  // case any of the errors above fired) and with "void" as the
3367  // return type, since constructors don't have return types.
3368  const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3369  if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
3370    return R;
3371
3372  FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
3373  EPI.TypeQuals = 0;
3374  EPI.RefQualifier = RQ_None;
3375
3376  return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
3377                                 Proto->getNumArgs(), EPI);
3378}
3379
3380/// CheckConstructor - Checks a fully-formed constructor for
3381/// well-formedness, issuing any diagnostics required. Returns true if
3382/// the constructor declarator is invalid.
3383void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
3384  CXXRecordDecl *ClassDecl
3385    = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
3386  if (!ClassDecl)
3387    return Constructor->setInvalidDecl();
3388
3389  // C++ [class.copy]p3:
3390  //   A declaration of a constructor for a class X is ill-formed if
3391  //   its first parameter is of type (optionally cv-qualified) X and
3392  //   either there are no other parameters or else all other
3393  //   parameters have default arguments.
3394  if (!Constructor->isInvalidDecl() &&
3395      ((Constructor->getNumParams() == 1) ||
3396       (Constructor->getNumParams() > 1 &&
3397        Constructor->getParamDecl(1)->hasDefaultArg())) &&
3398      Constructor->getTemplateSpecializationKind()
3399                                              != TSK_ImplicitInstantiation) {
3400    QualType ParamType = Constructor->getParamDecl(0)->getType();
3401    QualType ClassTy = Context.getTagDeclType(ClassDecl);
3402    if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
3403      SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
3404      const char *ConstRef
3405        = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
3406                                                        : " const &";
3407      Diag(ParamLoc, diag::err_constructor_byvalue_arg)
3408        << FixItHint::CreateInsertion(ParamLoc, ConstRef);
3409
3410      // FIXME: Rather that making the constructor invalid, we should endeavor
3411      // to fix the type.
3412      Constructor->setInvalidDecl();
3413    }
3414  }
3415}
3416
3417/// CheckDestructor - Checks a fully-formed destructor definition for
3418/// well-formedness, issuing any diagnostics required.  Returns true
3419/// on error.
3420bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
3421  CXXRecordDecl *RD = Destructor->getParent();
3422
3423  if (Destructor->isVirtual()) {
3424    SourceLocation Loc;
3425
3426    if (!Destructor->isImplicit())
3427      Loc = Destructor->getLocation();
3428    else
3429      Loc = RD->getLocation();
3430
3431    // If we have a virtual destructor, look up the deallocation function
3432    FunctionDecl *OperatorDelete = 0;
3433    DeclarationName Name =
3434    Context.DeclarationNames.getCXXOperatorName(OO_Delete);
3435    if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
3436      return true;
3437
3438    MarkDeclarationReferenced(Loc, OperatorDelete);
3439
3440    Destructor->setOperatorDelete(OperatorDelete);
3441  }
3442
3443  return false;
3444}
3445
3446static inline bool
3447FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
3448  return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3449          FTI.ArgInfo[0].Param &&
3450          cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
3451}
3452
3453/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
3454/// the well-formednes of the destructor declarator @p D with type @p
3455/// R. If there are any errors in the declarator, this routine will
3456/// emit diagnostics and set the declarator to invalid.  Even if this happens,
3457/// will be updated to reflect a well-formed type for the destructor and
3458/// returned.
3459QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
3460                                         StorageClass& SC) {
3461  // C++ [class.dtor]p1:
3462  //   [...] A typedef-name that names a class is a class-name
3463  //   (7.1.3); however, a typedef-name that names a class shall not
3464  //   be used as the identifier in the declarator for a destructor
3465  //   declaration.
3466  QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
3467  if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
3468    Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
3469      << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
3470  else if (const TemplateSpecializationType *TST =
3471             DeclaratorType->getAs<TemplateSpecializationType>())
3472    if (TST->isTypeAlias())
3473      Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
3474        << DeclaratorType << 1;
3475
3476  // C++ [class.dtor]p2:
3477  //   A destructor is used to destroy objects of its class type. A
3478  //   destructor takes no parameters, and no return type can be
3479  //   specified for it (not even void). The address of a destructor
3480  //   shall not be taken. A destructor shall not be static. A
3481  //   destructor can be invoked for a const, volatile or const
3482  //   volatile object. A destructor shall not be declared const,
3483  //   volatile or const volatile (9.3.2).
3484  if (SC == SC_Static) {
3485    if (!D.isInvalidType())
3486      Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3487        << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3488        << SourceRange(D.getIdentifierLoc())
3489        << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
3490
3491    SC = SC_None;
3492  }
3493  if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
3494    // Destructors don't have return types, but the parser will
3495    // happily parse something like:
3496    //
3497    //   class X {
3498    //     float ~X();
3499    //   };
3500    //
3501    // The return type will be eliminated later.
3502    Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3503      << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3504      << SourceRange(D.getIdentifierLoc());
3505  }
3506
3507  DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
3508  if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
3509    if (FTI.TypeQuals & Qualifiers::Const)
3510      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3511        << "const" << SourceRange(D.getIdentifierLoc());
3512    if (FTI.TypeQuals & Qualifiers::Volatile)
3513      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3514        << "volatile" << SourceRange(D.getIdentifierLoc());
3515    if (FTI.TypeQuals & Qualifiers::Restrict)
3516      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3517        << "restrict" << SourceRange(D.getIdentifierLoc());
3518    D.setInvalidType();
3519  }
3520
3521  // C++0x [class.dtor]p2:
3522  //   A destructor shall not be declared with a ref-qualifier.
3523  if (FTI.hasRefQualifier()) {
3524    Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
3525      << FTI.RefQualifierIsLValueRef
3526      << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
3527    D.setInvalidType();
3528  }
3529
3530  // Make sure we don't have any parameters.
3531  if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
3532    Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3533
3534    // Delete the parameters.
3535    FTI.freeArgs();
3536    D.setInvalidType();
3537  }
3538
3539  // Make sure the destructor isn't variadic.
3540  if (FTI.isVariadic) {
3541    Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
3542    D.setInvalidType();
3543  }
3544
3545  // Rebuild the function type "R" without any type qualifiers or
3546  // parameters (in case any of the errors above fired) and with
3547  // "void" as the return type, since destructors don't have return
3548  // types.
3549  if (!D.isInvalidType())
3550    return R;
3551
3552  const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3553  FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
3554  EPI.Variadic = false;
3555  EPI.TypeQuals = 0;
3556  EPI.RefQualifier = RQ_None;
3557  return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
3558}
3559
3560/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3561/// well-formednes of the conversion function declarator @p D with
3562/// type @p R. If there are any errors in the declarator, this routine
3563/// will emit diagnostics and return true. Otherwise, it will return
3564/// false. Either way, the type @p R will be updated to reflect a
3565/// well-formed type for the conversion operator.
3566void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
3567                                     StorageClass& SC) {
3568  // C++ [class.conv.fct]p1:
3569  //   Neither parameter types nor return type can be specified. The
3570  //   type of a conversion function (8.3.5) is "function taking no
3571  //   parameter returning conversion-type-id."
3572  if (SC == SC_Static) {
3573    if (!D.isInvalidType())
3574      Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3575        << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3576        << SourceRange(D.getIdentifierLoc());
3577    D.setInvalidType();
3578    SC = SC_None;
3579  }
3580
3581  QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3582
3583  if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
3584    // Conversion functions don't have return types, but the parser will
3585    // happily parse something like:
3586    //
3587    //   class X {
3588    //     float operator bool();
3589    //   };
3590    //
3591    // The return type will be changed later anyway.
3592    Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3593      << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3594      << SourceRange(D.getIdentifierLoc());
3595    D.setInvalidType();
3596  }
3597
3598  const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3599
3600  // Make sure we don't have any parameters.
3601  if (Proto->getNumArgs() > 0) {
3602    Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3603
3604    // Delete the parameters.
3605    D.getFunctionTypeInfo().freeArgs();
3606    D.setInvalidType();
3607  } else if (Proto->isVariadic()) {
3608    Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
3609    D.setInvalidType();
3610  }
3611
3612  // Diagnose "&operator bool()" and other such nonsense.  This
3613  // is actually a gcc extension which we don't support.
3614  if (Proto->getResultType() != ConvType) {
3615    Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3616      << Proto->getResultType();
3617    D.setInvalidType();
3618    ConvType = Proto->getResultType();
3619  }
3620
3621  // C++ [class.conv.fct]p4:
3622  //   The conversion-type-id shall not represent a function type nor
3623  //   an array type.
3624  if (ConvType->isArrayType()) {
3625    Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3626    ConvType = Context.getPointerType(ConvType);
3627    D.setInvalidType();
3628  } else if (ConvType->isFunctionType()) {
3629    Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3630    ConvType = Context.getPointerType(ConvType);
3631    D.setInvalidType();
3632  }
3633
3634  // Rebuild the function type "R" without any parameters (in case any
3635  // of the errors above fired) and with the conversion type as the
3636  // return type.
3637  if (D.isInvalidType())
3638    R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
3639
3640  // C++0x explicit conversion operators.
3641  if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
3642    Diag(D.getDeclSpec().getExplicitSpecLoc(),
3643         diag::warn_explicit_conversion_functions)
3644      << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
3645}
3646
3647/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3648/// the declaration of the given C++ conversion function. This routine
3649/// is responsible for recording the conversion function in the C++
3650/// class, if possible.
3651Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
3652  assert(Conversion && "Expected to receive a conversion function declaration");
3653
3654  CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
3655
3656  // Make sure we aren't redeclaring the conversion function.
3657  QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
3658
3659  // C++ [class.conv.fct]p1:
3660  //   [...] A conversion function is never used to convert a
3661  //   (possibly cv-qualified) object to the (possibly cv-qualified)
3662  //   same object type (or a reference to it), to a (possibly
3663  //   cv-qualified) base class of that type (or a reference to it),
3664  //   or to (possibly cv-qualified) void.
3665  // FIXME: Suppress this warning if the conversion function ends up being a
3666  // virtual function that overrides a virtual function in a base class.
3667  QualType ClassType
3668    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
3669  if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
3670    ConvType = ConvTypeRef->getPointeeType();
3671  if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
3672      Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
3673    /* Suppress diagnostics for instantiations. */;
3674  else if (ConvType->isRecordType()) {
3675    ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3676    if (ConvType == ClassType)
3677      Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
3678        << ClassType;
3679    else if (IsDerivedFrom(ClassType, ConvType))
3680      Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
3681        <<  ClassType << ConvType;
3682  } else if (ConvType->isVoidType()) {
3683    Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
3684      << ClassType << ConvType;
3685  }
3686
3687  if (FunctionTemplateDecl *ConversionTemplate
3688                                = Conversion->getDescribedFunctionTemplate())
3689    return ConversionTemplate;
3690
3691  return Conversion;
3692}
3693
3694//===----------------------------------------------------------------------===//
3695// Namespace Handling
3696//===----------------------------------------------------------------------===//
3697
3698
3699
3700/// ActOnStartNamespaceDef - This is called at the start of a namespace
3701/// definition.
3702Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3703                                   SourceLocation InlineLoc,
3704                                   SourceLocation NamespaceLoc,
3705                                   SourceLocation IdentLoc,
3706                                   IdentifierInfo *II,
3707                                   SourceLocation LBrace,
3708                                   AttributeList *AttrList) {
3709  SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
3710  // For anonymous namespace, take the location of the left brace.
3711  SourceLocation Loc = II ? IdentLoc : LBrace;
3712  NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
3713                                                 StartLoc, Loc, II);
3714  Namespc->setInline(InlineLoc.isValid());
3715
3716  Scope *DeclRegionScope = NamespcScope->getParent();
3717
3718  ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3719
3720  if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
3721    PushNamespaceVisibilityAttr(Attr);
3722
3723  if (II) {
3724    // C++ [namespace.def]p2:
3725    //   The identifier in an original-namespace-definition shall not
3726    //   have been previously defined in the declarative region in
3727    //   which the original-namespace-definition appears. The
3728    //   identifier in an original-namespace-definition is the name of
3729    //   the namespace. Subsequently in that declarative region, it is
3730    //   treated as an original-namespace-name.
3731    //
3732    // Since namespace names are unique in their scope, and we don't
3733    // look through using directives, just
3734    DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
3735    NamedDecl *PrevDecl = R.first == R.second? 0 : *R.first;
3736
3737    if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3738      // This is an extended namespace definition.
3739      if (Namespc->isInline() != OrigNS->isInline()) {
3740        // inline-ness must match
3741        Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3742          << Namespc->isInline();
3743        Diag(OrigNS->getLocation(), diag::note_previous_definition);
3744        Namespc->setInvalidDecl();
3745        // Recover by ignoring the new namespace's inline status.
3746        Namespc->setInline(OrigNS->isInline());
3747      }
3748
3749      // Attach this namespace decl to the chain of extended namespace
3750      // definitions.
3751      OrigNS->setNextNamespace(Namespc);
3752      Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
3753
3754      // Remove the previous declaration from the scope.
3755      if (DeclRegionScope->isDeclScope(OrigNS)) {
3756        IdResolver.RemoveDecl(OrigNS);
3757        DeclRegionScope->RemoveDecl(OrigNS);
3758      }
3759    } else if (PrevDecl) {
3760      // This is an invalid name redefinition.
3761      Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3762       << Namespc->getDeclName();
3763      Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3764      Namespc->setInvalidDecl();
3765      // Continue on to push Namespc as current DeclContext and return it.
3766    } else if (II->isStr("std") &&
3767               CurContext->getRedeclContext()->isTranslationUnit()) {
3768      // This is the first "real" definition of the namespace "std", so update
3769      // our cache of the "std" namespace to point at this definition.
3770      if (NamespaceDecl *StdNS = getStdNamespace()) {
3771        // We had already defined a dummy namespace "std". Link this new
3772        // namespace definition to the dummy namespace "std".
3773        StdNS->setNextNamespace(Namespc);
3774        StdNS->setLocation(IdentLoc);
3775        Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
3776      }
3777
3778      // Make our StdNamespace cache point at the first real definition of the
3779      // "std" namespace.
3780      StdNamespace = Namespc;
3781    }
3782
3783    PushOnScopeChains(Namespc, DeclRegionScope);
3784  } else {
3785    // Anonymous namespaces.
3786    assert(Namespc->isAnonymousNamespace());
3787
3788    // Link the anonymous namespace into its parent.
3789    NamespaceDecl *PrevDecl;
3790    DeclContext *Parent = CurContext->getRedeclContext();
3791    if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3792      PrevDecl = TU->getAnonymousNamespace();
3793      TU->setAnonymousNamespace(Namespc);
3794    } else {
3795      NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3796      PrevDecl = ND->getAnonymousNamespace();
3797      ND->setAnonymousNamespace(Namespc);
3798    }
3799
3800    // Link the anonymous namespace with its previous declaration.
3801    if (PrevDecl) {
3802      assert(PrevDecl->isAnonymousNamespace());
3803      assert(!PrevDecl->getNextNamespace());
3804      Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3805      PrevDecl->setNextNamespace(Namespc);
3806
3807      if (Namespc->isInline() != PrevDecl->isInline()) {
3808        // inline-ness must match
3809        Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3810          << Namespc->isInline();
3811        Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3812        Namespc->setInvalidDecl();
3813        // Recover by ignoring the new namespace's inline status.
3814        Namespc->setInline(PrevDecl->isInline());
3815      }
3816    }
3817
3818    CurContext->addDecl(Namespc);
3819
3820    // C++ [namespace.unnamed]p1.  An unnamed-namespace-definition
3821    //   behaves as if it were replaced by
3822    //     namespace unique { /* empty body */ }
3823    //     using namespace unique;
3824    //     namespace unique { namespace-body }
3825    //   where all occurrences of 'unique' in a translation unit are
3826    //   replaced by the same identifier and this identifier differs
3827    //   from all other identifiers in the entire program.
3828
3829    // We just create the namespace with an empty name and then add an
3830    // implicit using declaration, just like the standard suggests.
3831    //
3832    // CodeGen enforces the "universally unique" aspect by giving all
3833    // declarations semantically contained within an anonymous
3834    // namespace internal linkage.
3835
3836    if (!PrevDecl) {
3837      UsingDirectiveDecl* UD
3838        = UsingDirectiveDecl::Create(Context, CurContext,
3839                                     /* 'using' */ LBrace,
3840                                     /* 'namespace' */ SourceLocation(),
3841                                     /* qualifier */ NestedNameSpecifierLoc(),
3842                                     /* identifier */ SourceLocation(),
3843                                     Namespc,
3844                                     /* Ancestor */ CurContext);
3845      UD->setImplicit();
3846      CurContext->addDecl(UD);
3847    }
3848  }
3849
3850  // Although we could have an invalid decl (i.e. the namespace name is a
3851  // redefinition), push it as current DeclContext and try to continue parsing.
3852  // FIXME: We should be able to push Namespc here, so that the each DeclContext
3853  // for the namespace has the declarations that showed up in that particular
3854  // namespace definition.
3855  PushDeclContext(NamespcScope, Namespc);
3856  return Namespc;
3857}
3858
3859/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3860/// is a namespace alias, returns the namespace it points to.
3861static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3862  if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3863    return AD->getNamespace();
3864  return dyn_cast_or_null<NamespaceDecl>(D);
3865}
3866
3867/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3868/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
3869void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
3870  NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3871  assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3872  Namespc->setRBraceLoc(RBrace);
3873  PopDeclContext();
3874  if (Namespc->hasAttr<VisibilityAttr>())
3875    PopPragmaVisibility();
3876}
3877
3878CXXRecordDecl *Sema::getStdBadAlloc() const {
3879  return cast_or_null<CXXRecordDecl>(
3880                                  StdBadAlloc.get(Context.getExternalSource()));
3881}
3882
3883NamespaceDecl *Sema::getStdNamespace() const {
3884  return cast_or_null<NamespaceDecl>(
3885                                 StdNamespace.get(Context.getExternalSource()));
3886}
3887
3888/// \brief Retrieve the special "std" namespace, which may require us to
3889/// implicitly define the namespace.
3890NamespaceDecl *Sema::getOrCreateStdNamespace() {
3891  if (!StdNamespace) {
3892    // The "std" namespace has not yet been defined, so build one implicitly.
3893    StdNamespace = NamespaceDecl::Create(Context,
3894                                         Context.getTranslationUnitDecl(),
3895                                         SourceLocation(), SourceLocation(),
3896                                         &PP.getIdentifierTable().get("std"));
3897    getStdNamespace()->setImplicit(true);
3898  }
3899
3900  return getStdNamespace();
3901}
3902
3903/// \brief Determine whether a using statement is in a context where it will be
3904/// apply in all contexts.
3905static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
3906  switch (CurContext->getDeclKind()) {
3907    case Decl::TranslationUnit:
3908      return true;
3909    case Decl::LinkageSpec:
3910      return IsUsingDirectiveInToplevelContext(CurContext->getParent());
3911    default:
3912      return false;
3913  }
3914}
3915
3916Decl *Sema::ActOnUsingDirective(Scope *S,
3917                                          SourceLocation UsingLoc,
3918                                          SourceLocation NamespcLoc,
3919                                          CXXScopeSpec &SS,
3920                                          SourceLocation IdentLoc,
3921                                          IdentifierInfo *NamespcName,
3922                                          AttributeList *AttrList) {
3923  assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3924  assert(NamespcName && "Invalid NamespcName.");
3925  assert(IdentLoc.isValid() && "Invalid NamespceName location.");
3926
3927  // This can only happen along a recovery path.
3928  while (S->getFlags() & Scope::TemplateParamScope)
3929    S = S->getParent();
3930  assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
3931
3932  UsingDirectiveDecl *UDir = 0;
3933  NestedNameSpecifier *Qualifier = 0;
3934  if (SS.isSet())
3935    Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3936
3937  // Lookup namespace name.
3938  LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3939  LookupParsedName(R, S, &SS);
3940  if (R.isAmbiguous())
3941    return 0;
3942
3943  if (R.empty()) {
3944    // Allow "using namespace std;" or "using namespace ::std;" even if
3945    // "std" hasn't been defined yet, for GCC compatibility.
3946    if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3947        NamespcName->isStr("std")) {
3948      Diag(IdentLoc, diag::ext_using_undefined_std);
3949      R.addDecl(getOrCreateStdNamespace());
3950      R.resolveKind();
3951    }
3952    // Otherwise, attempt typo correction.
3953    else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3954                                                       CTC_NoKeywords, 0)) {
3955      if (R.getAsSingle<NamespaceDecl>() ||
3956          R.getAsSingle<NamespaceAliasDecl>()) {
3957        if (DeclContext *DC = computeDeclContext(SS, false))
3958          Diag(IdentLoc, diag::err_using_directive_member_suggest)
3959            << NamespcName << DC << Corrected << SS.getRange()
3960            << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3961        else
3962          Diag(IdentLoc, diag::err_using_directive_suggest)
3963            << NamespcName << Corrected
3964            << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3965        Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3966          << Corrected;
3967
3968        NamespcName = Corrected.getAsIdentifierInfo();
3969      } else {
3970        R.clear();
3971        R.setLookupName(NamespcName);
3972      }
3973    }
3974  }
3975
3976  if (!R.empty()) {
3977    NamedDecl *Named = R.getFoundDecl();
3978    assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3979        && "expected namespace decl");
3980    // C++ [namespace.udir]p1:
3981    //   A using-directive specifies that the names in the nominated
3982    //   namespace can be used in the scope in which the
3983    //   using-directive appears after the using-directive. During
3984    //   unqualified name lookup (3.4.1), the names appear as if they
3985    //   were declared in the nearest enclosing namespace which
3986    //   contains both the using-directive and the nominated
3987    //   namespace. [Note: in this context, "contains" means "contains
3988    //   directly or indirectly". ]
3989
3990    // Find enclosing context containing both using-directive and
3991    // nominated namespace.
3992    NamespaceDecl *NS = getNamespaceDecl(Named);
3993    DeclContext *CommonAncestor = cast<DeclContext>(NS);
3994    while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3995      CommonAncestor = CommonAncestor->getParent();
3996
3997    UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
3998                                      SS.getWithLocInContext(Context),
3999                                      IdentLoc, Named, CommonAncestor);
4000
4001    if (IsUsingDirectiveInToplevelContext(CurContext) &&
4002        !SourceMgr.isFromMainFile(SourceMgr.getInstantiationLoc(IdentLoc))) {
4003      Diag(IdentLoc, diag::warn_using_directive_in_header);
4004    }
4005
4006    PushUsingDirective(S, UDir);
4007  } else {
4008    Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
4009  }
4010
4011  // FIXME: We ignore attributes for now.
4012  return UDir;
4013}
4014
4015void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
4016  // If scope has associated entity, then using directive is at namespace
4017  // or translation unit scope. We add UsingDirectiveDecls, into
4018  // it's lookup structure.
4019  if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
4020    Ctx->addDecl(UDir);
4021  else
4022    // Otherwise it is block-sope. using-directives will affect lookup
4023    // only to the end of scope.
4024    S->PushUsingDirective(UDir);
4025}
4026
4027
4028Decl *Sema::ActOnUsingDeclaration(Scope *S,
4029                                  AccessSpecifier AS,
4030                                  bool HasUsingKeyword,
4031                                  SourceLocation UsingLoc,
4032                                  CXXScopeSpec &SS,
4033                                  UnqualifiedId &Name,
4034                                  AttributeList *AttrList,
4035                                  bool IsTypeName,
4036                                  SourceLocation TypenameLoc) {
4037  assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
4038
4039  switch (Name.getKind()) {
4040  case UnqualifiedId::IK_Identifier:
4041  case UnqualifiedId::IK_OperatorFunctionId:
4042  case UnqualifiedId::IK_LiteralOperatorId:
4043  case UnqualifiedId::IK_ConversionFunctionId:
4044    break;
4045
4046  case UnqualifiedId::IK_ConstructorName:
4047  case UnqualifiedId::IK_ConstructorTemplateId:
4048    // C++0x inherited constructors.
4049    if (getLangOptions().CPlusPlus0x) break;
4050
4051    Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
4052      << SS.getRange();
4053    return 0;
4054
4055  case UnqualifiedId::IK_DestructorName:
4056    Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
4057      << SS.getRange();
4058    return 0;
4059
4060  case UnqualifiedId::IK_TemplateId:
4061    Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
4062      << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
4063    return 0;
4064  }
4065
4066  DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
4067  DeclarationName TargetName = TargetNameInfo.getName();
4068  if (!TargetName)
4069    return 0;
4070
4071  // Warn about using declarations.
4072  // TODO: store that the declaration was written without 'using' and
4073  // talk about access decls instead of using decls in the
4074  // diagnostics.
4075  if (!HasUsingKeyword) {
4076    UsingLoc = Name.getSourceRange().getBegin();
4077
4078    Diag(UsingLoc, diag::warn_access_decl_deprecated)
4079      << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
4080  }
4081
4082  if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
4083      DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
4084    return 0;
4085
4086  NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
4087                                        TargetNameInfo, AttrList,
4088                                        /* IsInstantiation */ false,
4089                                        IsTypeName, TypenameLoc);
4090  if (UD)
4091    PushOnScopeChains(UD, S, /*AddToContext*/ false);
4092
4093  return UD;
4094}
4095
4096/// \brief Determine whether a using declaration considers the given
4097/// declarations as "equivalent", e.g., if they are redeclarations of
4098/// the same entity or are both typedefs of the same type.
4099static bool
4100IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
4101                         bool &SuppressRedeclaration) {
4102  if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
4103    SuppressRedeclaration = false;
4104    return true;
4105  }
4106
4107  if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
4108    if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
4109      SuppressRedeclaration = true;
4110      return Context.hasSameType(TD1->getUnderlyingType(),
4111                                 TD2->getUnderlyingType());
4112    }
4113
4114  return false;
4115}
4116
4117
4118/// Determines whether to create a using shadow decl for a particular
4119/// decl, given the set of decls existing prior to this using lookup.
4120bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
4121                                const LookupResult &Previous) {
4122  // Diagnose finding a decl which is not from a base class of the
4123  // current class.  We do this now because there are cases where this
4124  // function will silently decide not to build a shadow decl, which
4125  // will pre-empt further diagnostics.
4126  //
4127  // We don't need to do this in C++0x because we do the check once on
4128  // the qualifier.
4129  //
4130  // FIXME: diagnose the following if we care enough:
4131  //   struct A { int foo; };
4132  //   struct B : A { using A::foo; };
4133  //   template <class T> struct C : A {};
4134  //   template <class T> struct D : C<T> { using B::foo; } // <---
4135  // This is invalid (during instantiation) in C++03 because B::foo
4136  // resolves to the using decl in B, which is not a base class of D<T>.
4137  // We can't diagnose it immediately because C<T> is an unknown
4138  // specialization.  The UsingShadowDecl in D<T> then points directly
4139  // to A::foo, which will look well-formed when we instantiate.
4140  // The right solution is to not collapse the shadow-decl chain.
4141  if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
4142    DeclContext *OrigDC = Orig->getDeclContext();
4143
4144    // Handle enums and anonymous structs.
4145    if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
4146    CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
4147    while (OrigRec->isAnonymousStructOrUnion())
4148      OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
4149
4150    if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
4151      if (OrigDC == CurContext) {
4152        Diag(Using->getLocation(),
4153             diag::err_using_decl_nested_name_specifier_is_current_class)
4154          << Using->getQualifierLoc().getSourceRange();
4155        Diag(Orig->getLocation(), diag::note_using_decl_target);
4156        return true;
4157      }
4158
4159      Diag(Using->getQualifierLoc().getBeginLoc(),
4160           diag::err_using_decl_nested_name_specifier_is_not_base_class)
4161        << Using->getQualifier()
4162        << cast<CXXRecordDecl>(CurContext)
4163        << Using->getQualifierLoc().getSourceRange();
4164      Diag(Orig->getLocation(), diag::note_using_decl_target);
4165      return true;
4166    }
4167  }
4168
4169  if (Previous.empty()) return false;
4170
4171  NamedDecl *Target = Orig;
4172  if (isa<UsingShadowDecl>(Target))
4173    Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
4174
4175  // If the target happens to be one of the previous declarations, we
4176  // don't have a conflict.
4177  //
4178  // FIXME: but we might be increasing its access, in which case we
4179  // should redeclare it.
4180  NamedDecl *NonTag = 0, *Tag = 0;
4181  for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
4182         I != E; ++I) {
4183    NamedDecl *D = (*I)->getUnderlyingDecl();
4184    bool Result;
4185    if (IsEquivalentForUsingDecl(Context, D, Target, Result))
4186      return Result;
4187
4188    (isa<TagDecl>(D) ? Tag : NonTag) = D;
4189  }
4190
4191  if (Target->isFunctionOrFunctionTemplate()) {
4192    FunctionDecl *FD;
4193    if (isa<FunctionTemplateDecl>(Target))
4194      FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
4195    else
4196      FD = cast<FunctionDecl>(Target);
4197
4198    NamedDecl *OldDecl = 0;
4199    switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
4200    case Ovl_Overload:
4201      return false;
4202
4203    case Ovl_NonFunction:
4204      Diag(Using->getLocation(), diag::err_using_decl_conflict);
4205      break;
4206
4207    // We found a decl with the exact signature.
4208    case Ovl_Match:
4209      // If we're in a record, we want to hide the target, so we
4210      // return true (without a diagnostic) to tell the caller not to
4211      // build a shadow decl.
4212      if (CurContext->isRecord())
4213        return true;
4214
4215      // If we're not in a record, this is an error.
4216      Diag(Using->getLocation(), diag::err_using_decl_conflict);
4217      break;
4218    }
4219
4220    Diag(Target->getLocation(), diag::note_using_decl_target);
4221    Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
4222    return true;
4223  }
4224
4225  // Target is not a function.
4226
4227  if (isa<TagDecl>(Target)) {
4228    // No conflict between a tag and a non-tag.
4229    if (!Tag) return false;
4230
4231    Diag(Using->getLocation(), diag::err_using_decl_conflict);
4232    Diag(Target->getLocation(), diag::note_using_decl_target);
4233    Diag(Tag->getLocation(), diag::note_using_decl_conflict);
4234    return true;
4235  }
4236
4237  // No conflict between a tag and a non-tag.
4238  if (!NonTag) return false;
4239
4240  Diag(Using->getLocation(), diag::err_using_decl_conflict);
4241  Diag(Target->getLocation(), diag::note_using_decl_target);
4242  Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
4243  return true;
4244}
4245
4246/// Builds a shadow declaration corresponding to a 'using' declaration.
4247UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
4248                                            UsingDecl *UD,
4249                                            NamedDecl *Orig) {
4250
4251  // If we resolved to another shadow declaration, just coalesce them.
4252  NamedDecl *Target = Orig;
4253  if (isa<UsingShadowDecl>(Target)) {
4254    Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
4255    assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
4256  }
4257
4258  UsingShadowDecl *Shadow
4259    = UsingShadowDecl::Create(Context, CurContext,
4260                              UD->getLocation(), UD, Target);
4261  UD->addShadowDecl(Shadow);
4262
4263  Shadow->setAccess(UD->getAccess());
4264  if (Orig->isInvalidDecl() || UD->isInvalidDecl())
4265    Shadow->setInvalidDecl();
4266
4267  if (S)
4268    PushOnScopeChains(Shadow, S);
4269  else
4270    CurContext->addDecl(Shadow);
4271
4272
4273  return Shadow;
4274}
4275
4276/// Hides a using shadow declaration.  This is required by the current
4277/// using-decl implementation when a resolvable using declaration in a
4278/// class is followed by a declaration which would hide or override
4279/// one or more of the using decl's targets; for example:
4280///
4281///   struct Base { void foo(int); };
4282///   struct Derived : Base {
4283///     using Base::foo;
4284///     void foo(int);
4285///   };
4286///
4287/// The governing language is C++03 [namespace.udecl]p12:
4288///
4289///   When a using-declaration brings names from a base class into a
4290///   derived class scope, member functions in the derived class
4291///   override and/or hide member functions with the same name and
4292///   parameter types in a base class (rather than conflicting).
4293///
4294/// There are two ways to implement this:
4295///   (1) optimistically create shadow decls when they're not hidden
4296///       by existing declarations, or
4297///   (2) don't create any shadow decls (or at least don't make them
4298///       visible) until we've fully parsed/instantiated the class.
4299/// The problem with (1) is that we might have to retroactively remove
4300/// a shadow decl, which requires several O(n) operations because the
4301/// decl structures are (very reasonably) not designed for removal.
4302/// (2) avoids this but is very fiddly and phase-dependent.
4303void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
4304  if (Shadow->getDeclName().getNameKind() ==
4305        DeclarationName::CXXConversionFunctionName)
4306    cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
4307
4308  // Remove it from the DeclContext...
4309  Shadow->getDeclContext()->removeDecl(Shadow);
4310
4311  // ...and the scope, if applicable...
4312  if (S) {
4313    S->RemoveDecl(Shadow);
4314    IdResolver.RemoveDecl(Shadow);
4315  }
4316
4317  // ...and the using decl.
4318  Shadow->getUsingDecl()->removeShadowDecl(Shadow);
4319
4320  // TODO: complain somehow if Shadow was used.  It shouldn't
4321  // be possible for this to happen, because...?
4322}
4323
4324/// Builds a using declaration.
4325///
4326/// \param IsInstantiation - Whether this call arises from an
4327///   instantiation of an unresolved using declaration.  We treat
4328///   the lookup differently for these declarations.
4329NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
4330                                       SourceLocation UsingLoc,
4331                                       CXXScopeSpec &SS,
4332                                       const DeclarationNameInfo &NameInfo,
4333                                       AttributeList *AttrList,
4334                                       bool IsInstantiation,
4335                                       bool IsTypeName,
4336                                       SourceLocation TypenameLoc) {
4337  assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
4338  SourceLocation IdentLoc = NameInfo.getLoc();
4339  assert(IdentLoc.isValid() && "Invalid TargetName location.");
4340
4341  // FIXME: We ignore attributes for now.
4342
4343  if (SS.isEmpty()) {
4344    Diag(IdentLoc, diag::err_using_requires_qualname);
4345    return 0;
4346  }
4347
4348  // Do the redeclaration lookup in the current scope.
4349  LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
4350                        ForRedeclaration);
4351  Previous.setHideTags(false);
4352  if (S) {
4353    LookupName(Previous, S);
4354
4355    // It is really dumb that we have to do this.
4356    LookupResult::Filter F = Previous.makeFilter();
4357    while (F.hasNext()) {
4358      NamedDecl *D = F.next();
4359      if (!isDeclInScope(D, CurContext, S))
4360        F.erase();
4361    }
4362    F.done();
4363  } else {
4364    assert(IsInstantiation && "no scope in non-instantiation");
4365    assert(CurContext->isRecord() && "scope not record in instantiation");
4366    LookupQualifiedName(Previous, CurContext);
4367  }
4368
4369  // Check for invalid redeclarations.
4370  if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
4371    return 0;
4372
4373  // Check for bad qualifiers.
4374  if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
4375    return 0;
4376
4377  DeclContext *LookupContext = computeDeclContext(SS);
4378  NamedDecl *D;
4379  NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
4380  if (!LookupContext) {
4381    if (IsTypeName) {
4382      // FIXME: not all declaration name kinds are legal here
4383      D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
4384                                              UsingLoc, TypenameLoc,
4385                                              QualifierLoc,
4386                                              IdentLoc, NameInfo.getName());
4387    } else {
4388      D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
4389                                           QualifierLoc, NameInfo);
4390    }
4391  } else {
4392    D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
4393                          NameInfo, IsTypeName);
4394  }
4395  D->setAccess(AS);
4396  CurContext->addDecl(D);
4397
4398  if (!LookupContext) return D;
4399  UsingDecl *UD = cast<UsingDecl>(D);
4400
4401  if (RequireCompleteDeclContext(SS, LookupContext)) {
4402    UD->setInvalidDecl();
4403    return UD;
4404  }
4405
4406  // Constructor inheriting using decls get special treatment.
4407  if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
4408    if (CheckInheritedConstructorUsingDecl(UD))
4409      UD->setInvalidDecl();
4410    return UD;
4411  }
4412
4413  // Otherwise, look up the target name.
4414
4415  LookupResult R(*this, NameInfo, LookupOrdinaryName);
4416
4417  // Unlike most lookups, we don't always want to hide tag
4418  // declarations: tag names are visible through the using declaration
4419  // even if hidden by ordinary names, *except* in a dependent context
4420  // where it's important for the sanity of two-phase lookup.
4421  if (!IsInstantiation)
4422    R.setHideTags(false);
4423
4424  LookupQualifiedName(R, LookupContext);
4425
4426  if (R.empty()) {
4427    Diag(IdentLoc, diag::err_no_member)
4428      << NameInfo.getName() << LookupContext << SS.getRange();
4429    UD->setInvalidDecl();
4430    return UD;
4431  }
4432
4433  if (R.isAmbiguous()) {
4434    UD->setInvalidDecl();
4435    return UD;
4436  }
4437
4438  if (IsTypeName) {
4439    // If we asked for a typename and got a non-type decl, error out.
4440    if (!R.getAsSingle<TypeDecl>()) {
4441      Diag(IdentLoc, diag::err_using_typename_non_type);
4442      for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
4443        Diag((*I)->getUnderlyingDecl()->getLocation(),
4444             diag::note_using_decl_target);
4445      UD->setInvalidDecl();
4446      return UD;
4447    }
4448  } else {
4449    // If we asked for a non-typename and we got a type, error out,
4450    // but only if this is an instantiation of an unresolved using
4451    // decl.  Otherwise just silently find the type name.
4452    if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
4453      Diag(IdentLoc, diag::err_using_dependent_value_is_type);
4454      Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
4455      UD->setInvalidDecl();
4456      return UD;
4457    }
4458  }
4459
4460  // C++0x N2914 [namespace.udecl]p6:
4461  // A using-declaration shall not name a namespace.
4462  if (R.getAsSingle<NamespaceDecl>()) {
4463    Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
4464      << SS.getRange();
4465    UD->setInvalidDecl();
4466    return UD;
4467  }
4468
4469  for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
4470    if (!CheckUsingShadowDecl(UD, *I, Previous))
4471      BuildUsingShadowDecl(S, UD, *I);
4472  }
4473
4474  return UD;
4475}
4476
4477/// Additional checks for a using declaration referring to a constructor name.
4478bool Sema::CheckInheritedConstructorUsingDecl(UsingDecl *UD) {
4479  if (UD->isTypeName()) {
4480    // FIXME: Cannot specify typename when specifying constructor
4481    return true;
4482  }
4483
4484  const Type *SourceType = UD->getQualifier()->getAsType();
4485  assert(SourceType &&
4486         "Using decl naming constructor doesn't have type in scope spec.");
4487  CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
4488
4489  // Check whether the named type is a direct base class.
4490  CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
4491  CXXRecordDecl::base_class_iterator BaseIt, BaseE;
4492  for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
4493       BaseIt != BaseE; ++BaseIt) {
4494    CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
4495    if (CanonicalSourceType == BaseType)
4496      break;
4497  }
4498
4499  if (BaseIt == BaseE) {
4500    // Did not find SourceType in the bases.
4501    Diag(UD->getUsingLocation(),
4502         diag::err_using_decl_constructor_not_in_direct_base)
4503      << UD->getNameInfo().getSourceRange()
4504      << QualType(SourceType, 0) << TargetClass;
4505    return true;
4506  }
4507
4508  BaseIt->setInheritConstructors();
4509
4510  return false;
4511}
4512
4513/// Checks that the given using declaration is not an invalid
4514/// redeclaration.  Note that this is checking only for the using decl
4515/// itself, not for any ill-formedness among the UsingShadowDecls.
4516bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
4517                                       bool isTypeName,
4518                                       const CXXScopeSpec &SS,
4519                                       SourceLocation NameLoc,
4520                                       const LookupResult &Prev) {
4521  // C++03 [namespace.udecl]p8:
4522  // C++0x [namespace.udecl]p10:
4523  //   A using-declaration is a declaration and can therefore be used
4524  //   repeatedly where (and only where) multiple declarations are
4525  //   allowed.
4526  //
4527  // That's in non-member contexts.
4528  if (!CurContext->getRedeclContext()->isRecord())
4529    return false;
4530
4531  NestedNameSpecifier *Qual
4532    = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
4533
4534  for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
4535    NamedDecl *D = *I;
4536
4537    bool DTypename;
4538    NestedNameSpecifier *DQual;
4539    if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
4540      DTypename = UD->isTypeName();
4541      DQual = UD->getQualifier();
4542    } else if (UnresolvedUsingValueDecl *UD
4543                 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
4544      DTypename = false;
4545      DQual = UD->getQualifier();
4546    } else if (UnresolvedUsingTypenameDecl *UD
4547                 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
4548      DTypename = true;
4549      DQual = UD->getQualifier();
4550    } else continue;
4551
4552    // using decls differ if one says 'typename' and the other doesn't.
4553    // FIXME: non-dependent using decls?
4554    if (isTypeName != DTypename) continue;
4555
4556    // using decls differ if they name different scopes (but note that
4557    // template instantiation can cause this check to trigger when it
4558    // didn't before instantiation).
4559    if (Context.getCanonicalNestedNameSpecifier(Qual) !=
4560        Context.getCanonicalNestedNameSpecifier(DQual))
4561      continue;
4562
4563    Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
4564    Diag(D->getLocation(), diag::note_using_decl) << 1;
4565    return true;
4566  }
4567
4568  return false;
4569}
4570
4571
4572/// Checks that the given nested-name qualifier used in a using decl
4573/// in the current context is appropriately related to the current
4574/// scope.  If an error is found, diagnoses it and returns true.
4575bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4576                                   const CXXScopeSpec &SS,
4577                                   SourceLocation NameLoc) {
4578  DeclContext *NamedContext = computeDeclContext(SS);
4579
4580  if (!CurContext->isRecord()) {
4581    // C++03 [namespace.udecl]p3:
4582    // C++0x [namespace.udecl]p8:
4583    //   A using-declaration for a class member shall be a member-declaration.
4584
4585    // If we weren't able to compute a valid scope, it must be a
4586    // dependent class scope.
4587    if (!NamedContext || NamedContext->isRecord()) {
4588      Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4589        << SS.getRange();
4590      return true;
4591    }
4592
4593    // Otherwise, everything is known to be fine.
4594    return false;
4595  }
4596
4597  // The current scope is a record.
4598
4599  // If the named context is dependent, we can't decide much.
4600  if (!NamedContext) {
4601    // FIXME: in C++0x, we can diagnose if we can prove that the
4602    // nested-name-specifier does not refer to a base class, which is
4603    // still possible in some cases.
4604
4605    // Otherwise we have to conservatively report that things might be
4606    // okay.
4607    return false;
4608  }
4609
4610  if (!NamedContext->isRecord()) {
4611    // Ideally this would point at the last name in the specifier,
4612    // but we don't have that level of source info.
4613    Diag(SS.getRange().getBegin(),
4614         diag::err_using_decl_nested_name_specifier_is_not_class)
4615      << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4616    return true;
4617  }
4618
4619  if (!NamedContext->isDependentContext() &&
4620      RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
4621    return true;
4622
4623  if (getLangOptions().CPlusPlus0x) {
4624    // C++0x [namespace.udecl]p3:
4625    //   In a using-declaration used as a member-declaration, the
4626    //   nested-name-specifier shall name a base class of the class
4627    //   being defined.
4628
4629    if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4630                                 cast<CXXRecordDecl>(NamedContext))) {
4631      if (CurContext == NamedContext) {
4632        Diag(NameLoc,
4633             diag::err_using_decl_nested_name_specifier_is_current_class)
4634          << SS.getRange();
4635        return true;
4636      }
4637
4638      Diag(SS.getRange().getBegin(),
4639           diag::err_using_decl_nested_name_specifier_is_not_base_class)
4640        << (NestedNameSpecifier*) SS.getScopeRep()
4641        << cast<CXXRecordDecl>(CurContext)
4642        << SS.getRange();
4643      return true;
4644    }
4645
4646    return false;
4647  }
4648
4649  // C++03 [namespace.udecl]p4:
4650  //   A using-declaration used as a member-declaration shall refer
4651  //   to a member of a base class of the class being defined [etc.].
4652
4653  // Salient point: SS doesn't have to name a base class as long as
4654  // lookup only finds members from base classes.  Therefore we can
4655  // diagnose here only if we can prove that that can't happen,
4656  // i.e. if the class hierarchies provably don't intersect.
4657
4658  // TODO: it would be nice if "definitely valid" results were cached
4659  // in the UsingDecl and UsingShadowDecl so that these checks didn't
4660  // need to be repeated.
4661
4662  struct UserData {
4663    llvm::DenseSet<const CXXRecordDecl*> Bases;
4664
4665    static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4666      UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4667      Data->Bases.insert(Base);
4668      return true;
4669    }
4670
4671    bool hasDependentBases(const CXXRecordDecl *Class) {
4672      return !Class->forallBases(collect, this);
4673    }
4674
4675    /// Returns true if the base is dependent or is one of the
4676    /// accumulated base classes.
4677    static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4678      UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4679      return !Data->Bases.count(Base);
4680    }
4681
4682    bool mightShareBases(const CXXRecordDecl *Class) {
4683      return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4684    }
4685  };
4686
4687  UserData Data;
4688
4689  // Returns false if we find a dependent base.
4690  if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4691    return false;
4692
4693  // Returns false if the class has a dependent base or if it or one
4694  // of its bases is present in the base set of the current context.
4695  if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4696    return false;
4697
4698  Diag(SS.getRange().getBegin(),
4699       diag::err_using_decl_nested_name_specifier_is_not_base_class)
4700    << (NestedNameSpecifier*) SS.getScopeRep()
4701    << cast<CXXRecordDecl>(CurContext)
4702    << SS.getRange();
4703
4704  return true;
4705}
4706
4707Decl *Sema::ActOnAliasDeclaration(Scope *S,
4708                                  AccessSpecifier AS,
4709                                  MultiTemplateParamsArg TemplateParamLists,
4710                                  SourceLocation UsingLoc,
4711                                  UnqualifiedId &Name,
4712                                  TypeResult Type) {
4713  // Skip up to the relevant declaration scope.
4714  while (S->getFlags() & Scope::TemplateParamScope)
4715    S = S->getParent();
4716  assert((S->getFlags() & Scope::DeclScope) &&
4717         "got alias-declaration outside of declaration scope");
4718
4719  if (Type.isInvalid())
4720    return 0;
4721
4722  bool Invalid = false;
4723  DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
4724  TypeSourceInfo *TInfo = 0;
4725  GetTypeFromParser(Type.get(), &TInfo);
4726
4727  if (DiagnoseClassNameShadow(CurContext, NameInfo))
4728    return 0;
4729
4730  if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
4731                                      UPPC_DeclarationType)) {
4732    Invalid = true;
4733    TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
4734                                             TInfo->getTypeLoc().getBeginLoc());
4735  }
4736
4737  LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
4738  LookupName(Previous, S);
4739
4740  // Warn about shadowing the name of a template parameter.
4741  if (Previous.isSingleResult() &&
4742      Previous.getFoundDecl()->isTemplateParameter()) {
4743    if (DiagnoseTemplateParameterShadow(Name.StartLocation,
4744                                        Previous.getFoundDecl()))
4745      Invalid = true;
4746    Previous.clear();
4747  }
4748
4749  assert(Name.Kind == UnqualifiedId::IK_Identifier &&
4750         "name in alias declaration must be an identifier");
4751  TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
4752                                               Name.StartLocation,
4753                                               Name.Identifier, TInfo);
4754
4755  NewTD->setAccess(AS);
4756
4757  if (Invalid)
4758    NewTD->setInvalidDecl();
4759
4760  CheckTypedefForVariablyModifiedType(S, NewTD);
4761  Invalid |= NewTD->isInvalidDecl();
4762
4763  bool Redeclaration = false;
4764
4765  NamedDecl *NewND;
4766  if (TemplateParamLists.size()) {
4767    TypeAliasTemplateDecl *OldDecl = 0;
4768    TemplateParameterList *OldTemplateParams = 0;
4769
4770    if (TemplateParamLists.size() != 1) {
4771      Diag(UsingLoc, diag::err_alias_template_extra_headers)
4772        << SourceRange(TemplateParamLists.get()[1]->getTemplateLoc(),
4773         TemplateParamLists.get()[TemplateParamLists.size()-1]->getRAngleLoc());
4774    }
4775    TemplateParameterList *TemplateParams = TemplateParamLists.get()[0];
4776
4777    // Only consider previous declarations in the same scope.
4778    FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
4779                         /*ExplicitInstantiationOrSpecialization*/false);
4780    if (!Previous.empty()) {
4781      Redeclaration = true;
4782
4783      OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
4784      if (!OldDecl && !Invalid) {
4785        Diag(UsingLoc, diag::err_redefinition_different_kind)
4786          << Name.Identifier;
4787
4788        NamedDecl *OldD = Previous.getRepresentativeDecl();
4789        if (OldD->getLocation().isValid())
4790          Diag(OldD->getLocation(), diag::note_previous_definition);
4791
4792        Invalid = true;
4793      }
4794
4795      if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
4796        if (TemplateParameterListsAreEqual(TemplateParams,
4797                                           OldDecl->getTemplateParameters(),
4798                                           /*Complain=*/true,
4799                                           TPL_TemplateMatch))
4800          OldTemplateParams = OldDecl->getTemplateParameters();
4801        else
4802          Invalid = true;
4803
4804        TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
4805        if (!Invalid &&
4806            !Context.hasSameType(OldTD->getUnderlyingType(),
4807                                 NewTD->getUnderlyingType())) {
4808          // FIXME: The C++0x standard does not clearly say this is ill-formed,
4809          // but we can't reasonably accept it.
4810          Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
4811            << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
4812          if (OldTD->getLocation().isValid())
4813            Diag(OldTD->getLocation(), diag::note_previous_definition);
4814          Invalid = true;
4815        }
4816      }
4817    }
4818
4819    // Merge any previous default template arguments into our parameters,
4820    // and check the parameter list.
4821    if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
4822                                   TPC_TypeAliasTemplate))
4823      return 0;
4824
4825    TypeAliasTemplateDecl *NewDecl =
4826      TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
4827                                    Name.Identifier, TemplateParams,
4828                                    NewTD);
4829
4830    NewDecl->setAccess(AS);
4831
4832    if (Invalid)
4833      NewDecl->setInvalidDecl();
4834    else if (OldDecl)
4835      NewDecl->setPreviousDeclaration(OldDecl);
4836
4837    NewND = NewDecl;
4838  } else {
4839    ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
4840    NewND = NewTD;
4841  }
4842
4843  if (!Redeclaration)
4844    PushOnScopeChains(NewND, S);
4845
4846  return NewND;
4847}
4848
4849Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
4850                                             SourceLocation NamespaceLoc,
4851                                             SourceLocation AliasLoc,
4852                                             IdentifierInfo *Alias,
4853                                             CXXScopeSpec &SS,
4854                                             SourceLocation IdentLoc,
4855                                             IdentifierInfo *Ident) {
4856
4857  // Lookup the namespace name.
4858  LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4859  LookupParsedName(R, S, &SS);
4860
4861  // Check if we have a previous declaration with the same name.
4862  NamedDecl *PrevDecl
4863    = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4864                       ForRedeclaration);
4865  if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4866    PrevDecl = 0;
4867
4868  if (PrevDecl) {
4869    if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
4870      // We already have an alias with the same name that points to the same
4871      // namespace, so don't create a new one.
4872      // FIXME: At some point, we'll want to create the (redundant)
4873      // declaration to maintain better source information.
4874      if (!R.isAmbiguous() && !R.empty() &&
4875          AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
4876        return 0;
4877    }
4878
4879    unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4880      diag::err_redefinition_different_kind;
4881    Diag(AliasLoc, DiagID) << Alias;
4882    Diag(PrevDecl->getLocation(), diag::note_previous_definition);
4883    return 0;
4884  }
4885
4886  if (R.isAmbiguous())
4887    return 0;
4888
4889  if (R.empty()) {
4890    if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4891                                                CTC_NoKeywords, 0)) {
4892      if (R.getAsSingle<NamespaceDecl>() ||
4893          R.getAsSingle<NamespaceAliasDecl>()) {
4894        if (DeclContext *DC = computeDeclContext(SS, false))
4895          Diag(IdentLoc, diag::err_using_directive_member_suggest)
4896            << Ident << DC << Corrected << SS.getRange()
4897            << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4898        else
4899          Diag(IdentLoc, diag::err_using_directive_suggest)
4900            << Ident << Corrected
4901            << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4902
4903        Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4904          << Corrected;
4905
4906        Ident = Corrected.getAsIdentifierInfo();
4907      } else {
4908        R.clear();
4909        R.setLookupName(Ident);
4910      }
4911    }
4912
4913    if (R.empty()) {
4914      Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
4915      return 0;
4916    }
4917  }
4918
4919  NamespaceAliasDecl *AliasDecl =
4920    NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4921                               Alias, SS.getWithLocInContext(Context),
4922                               IdentLoc, R.getFoundDecl());
4923
4924  PushOnScopeChains(AliasDecl, S);
4925  return AliasDecl;
4926}
4927
4928namespace {
4929  /// \brief Scoped object used to handle the state changes required in Sema
4930  /// to implicitly define the body of a C++ member function;
4931  class ImplicitlyDefinedFunctionScope {
4932    Sema &S;
4933    Sema::ContextRAII SavedContext;
4934
4935  public:
4936    ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4937      : S(S), SavedContext(S, Method)
4938    {
4939      S.PushFunctionScope();
4940      S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4941    }
4942
4943    ~ImplicitlyDefinedFunctionScope() {
4944      S.PopExpressionEvaluationContext();
4945      S.PopFunctionOrBlockScope();
4946    }
4947  };
4948}
4949
4950static CXXConstructorDecl *getDefaultConstructorUnsafe(Sema &Self,
4951                                                       CXXRecordDecl *D) {
4952  ASTContext &Context = Self.Context;
4953  QualType ClassType = Context.getTypeDeclType(D);
4954  DeclarationName ConstructorName
4955    = Context.DeclarationNames.getCXXConstructorName(
4956                      Context.getCanonicalType(ClassType.getUnqualifiedType()));
4957
4958  DeclContext::lookup_const_iterator Con, ConEnd;
4959  for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
4960       Con != ConEnd; ++Con) {
4961    // FIXME: In C++0x, a constructor template can be a default constructor.
4962    if (isa<FunctionTemplateDecl>(*Con))
4963      continue;
4964
4965    CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
4966    if (Constructor->isDefaultConstructor())
4967      return Constructor;
4968  }
4969  return 0;
4970}
4971
4972CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4973                                                     CXXRecordDecl *ClassDecl) {
4974  // C++ [class.ctor]p5:
4975  //   A default constructor for a class X is a constructor of class X
4976  //   that can be called without an argument. If there is no
4977  //   user-declared constructor for class X, a default constructor is
4978  //   implicitly declared. An implicitly-declared default constructor
4979  //   is an inline public member of its class.
4980  assert(!ClassDecl->hasUserDeclaredConstructor() &&
4981         "Should not build implicit default constructor!");
4982
4983  // C++ [except.spec]p14:
4984  //   An implicitly declared special member function (Clause 12) shall have an
4985  //   exception-specification. [...]
4986  ImplicitExceptionSpecification ExceptSpec(Context);
4987
4988  // Direct base-class constructors.
4989  for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4990                                       BEnd = ClassDecl->bases_end();
4991       B != BEnd; ++B) {
4992    if (B->isVirtual()) // Handled below.
4993      continue;
4994
4995    if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4996      CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4997      if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4998        ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4999      else if (CXXConstructorDecl *Constructor
5000                            = getDefaultConstructorUnsafe(*this, BaseClassDecl))
5001        ExceptSpec.CalledDecl(Constructor);
5002    }
5003  }
5004
5005  // Virtual base-class constructors.
5006  for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
5007                                       BEnd = ClassDecl->vbases_end();
5008       B != BEnd; ++B) {
5009    if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
5010      CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
5011      if (!BaseClassDecl->hasDeclaredDefaultConstructor())
5012        ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
5013      else if (CXXConstructorDecl *Constructor
5014                            = getDefaultConstructorUnsafe(*this, BaseClassDecl))
5015        ExceptSpec.CalledDecl(Constructor);
5016    }
5017  }
5018
5019  // Field constructors.
5020  for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
5021                               FEnd = ClassDecl->field_end();
5022       F != FEnd; ++F) {
5023    if (const RecordType *RecordTy
5024              = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
5025      CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
5026      if (!FieldClassDecl->hasDeclaredDefaultConstructor())
5027        ExceptSpec.CalledDecl(
5028                            DeclareImplicitDefaultConstructor(FieldClassDecl));
5029      else if (CXXConstructorDecl *Constructor
5030                           = getDefaultConstructorUnsafe(*this, FieldClassDecl))
5031        ExceptSpec.CalledDecl(Constructor);
5032    }
5033  }
5034
5035  FunctionProtoType::ExtProtoInfo EPI;
5036  EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
5037  EPI.NumExceptions = ExceptSpec.size();
5038  EPI.Exceptions = ExceptSpec.data();
5039
5040  // Create the actual constructor declaration.
5041  CanQualType ClassType
5042    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
5043  SourceLocation ClassLoc = ClassDecl->getLocation();
5044  DeclarationName Name
5045    = Context.DeclarationNames.getCXXConstructorName(ClassType);
5046  DeclarationNameInfo NameInfo(Name, ClassLoc);
5047  CXXConstructorDecl *DefaultCon
5048    = CXXConstructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
5049                                 Context.getFunctionType(Context.VoidTy,
5050                                                         0, 0, EPI),
5051                                 /*TInfo=*/0,
5052                                 /*isExplicit=*/false,
5053                                 /*isInline=*/true,
5054                                 /*isImplicitlyDeclared=*/true);
5055  DefaultCon->setAccess(AS_public);
5056  DefaultCon->setImplicit();
5057  DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
5058
5059  // Note that we have declared this constructor.
5060  ++ASTContext::NumImplicitDefaultConstructorsDeclared;
5061
5062  if (Scope *S = getScopeForContext(ClassDecl))
5063    PushOnScopeChains(DefaultCon, S, false);
5064  ClassDecl->addDecl(DefaultCon);
5065
5066  return DefaultCon;
5067}
5068
5069void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
5070                                            CXXConstructorDecl *Constructor) {
5071  assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
5072          !Constructor->isUsed(false)) &&
5073    "DefineImplicitDefaultConstructor - call it for implicit default ctor");
5074
5075  CXXRecordDecl *ClassDecl = Constructor->getParent();
5076  assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
5077
5078  ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
5079  DiagnosticErrorTrap Trap(Diags);
5080  if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
5081      Trap.hasErrorOccurred()) {
5082    Diag(CurrentLocation, diag::note_member_synthesized_at)
5083      << CXXConstructor << Context.getTagDeclType(ClassDecl);
5084    Constructor->setInvalidDecl();
5085    return;
5086  }
5087
5088  SourceLocation Loc = Constructor->getLocation();
5089  Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
5090
5091  Constructor->setUsed();
5092  MarkVTableUsed(CurrentLocation, ClassDecl);
5093
5094  if (ASTMutationListener *L = getASTMutationListener()) {
5095    L->CompletedImplicitDefinition(Constructor);
5096  }
5097}
5098
5099void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
5100  // We start with an initial pass over the base classes to collect those that
5101  // inherit constructors from. If there are none, we can forgo all further
5102  // processing.
5103  typedef llvm::SmallVector<const RecordType *, 4> BasesVector;
5104  BasesVector BasesToInheritFrom;
5105  for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
5106                                          BaseE = ClassDecl->bases_end();
5107         BaseIt != BaseE; ++BaseIt) {
5108    if (BaseIt->getInheritConstructors()) {
5109      QualType Base = BaseIt->getType();
5110      if (Base->isDependentType()) {
5111        // If we inherit constructors from anything that is dependent, just
5112        // abort processing altogether. We'll get another chance for the
5113        // instantiations.
5114        return;
5115      }
5116      BasesToInheritFrom.push_back(Base->castAs<RecordType>());
5117    }
5118  }
5119  if (BasesToInheritFrom.empty())
5120    return;
5121
5122  // Now collect the constructors that we already have in the current class.
5123  // Those take precedence over inherited constructors.
5124  // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
5125  //   unless there is a user-declared constructor with the same signature in
5126  //   the class where the using-declaration appears.
5127  llvm::SmallSet<const Type *, 8> ExistingConstructors;
5128  for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
5129                                    CtorE = ClassDecl->ctor_end();
5130       CtorIt != CtorE; ++CtorIt) {
5131    ExistingConstructors.insert(
5132        Context.getCanonicalType(CtorIt->getType()).getTypePtr());
5133  }
5134
5135  Scope *S = getScopeForContext(ClassDecl);
5136  DeclarationName CreatedCtorName =
5137      Context.DeclarationNames.getCXXConstructorName(
5138          ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
5139
5140  // Now comes the true work.
5141  // First, we keep a map from constructor types to the base that introduced
5142  // them. Needed for finding conflicting constructors. We also keep the
5143  // actually inserted declarations in there, for pretty diagnostics.
5144  typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
5145  typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
5146  ConstructorToSourceMap InheritedConstructors;
5147  for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
5148                             BaseE = BasesToInheritFrom.end();
5149       BaseIt != BaseE; ++BaseIt) {
5150    const RecordType *Base = *BaseIt;
5151    CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
5152    CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
5153    for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
5154                                      CtorE = BaseDecl->ctor_end();
5155         CtorIt != CtorE; ++CtorIt) {
5156      // Find the using declaration for inheriting this base's constructors.
5157      DeclarationName Name =
5158          Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
5159      UsingDecl *UD = dyn_cast_or_null<UsingDecl>(
5160          LookupSingleName(S, Name,SourceLocation(), LookupUsingDeclName));
5161      SourceLocation UsingLoc = UD ? UD->getLocation() :
5162                                     ClassDecl->getLocation();
5163
5164      // C++0x [class.inhctor]p1: The candidate set of inherited constructors
5165      //   from the class X named in the using-declaration consists of actual
5166      //   constructors and notional constructors that result from the
5167      //   transformation of defaulted parameters as follows:
5168      //   - all non-template default constructors of X, and
5169      //   - for each non-template constructor of X that has at least one
5170      //     parameter with a default argument, the set of constructors that
5171      //     results from omitting any ellipsis parameter specification and
5172      //     successively omitting parameters with a default argument from the
5173      //     end of the parameter-type-list.
5174      CXXConstructorDecl *BaseCtor = *CtorIt;
5175      bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
5176      const FunctionProtoType *BaseCtorType =
5177          BaseCtor->getType()->getAs<FunctionProtoType>();
5178
5179      for (unsigned params = BaseCtor->getMinRequiredArguments(),
5180                    maxParams = BaseCtor->getNumParams();
5181           params <= maxParams; ++params) {
5182        // Skip default constructors. They're never inherited.
5183        if (params == 0)
5184          continue;
5185        // Skip copy and move constructors for the same reason.
5186        if (CanBeCopyOrMove && params == 1)
5187          continue;
5188
5189        // Build up a function type for this particular constructor.
5190        // FIXME: The working paper does not consider that the exception spec
5191        // for the inheriting constructor might be larger than that of the
5192        // source. This code doesn't yet, either.
5193        const Type *NewCtorType;
5194        if (params == maxParams)
5195          NewCtorType = BaseCtorType;
5196        else {
5197          llvm::SmallVector<QualType, 16> Args;
5198          for (unsigned i = 0; i < params; ++i) {
5199            Args.push_back(BaseCtorType->getArgType(i));
5200          }
5201          FunctionProtoType::ExtProtoInfo ExtInfo =
5202              BaseCtorType->getExtProtoInfo();
5203          ExtInfo.Variadic = false;
5204          NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
5205                                                Args.data(), params, ExtInfo)
5206                       .getTypePtr();
5207        }
5208        const Type *CanonicalNewCtorType =
5209            Context.getCanonicalType(NewCtorType);
5210
5211        // Now that we have the type, first check if the class already has a
5212        // constructor with this signature.
5213        if (ExistingConstructors.count(CanonicalNewCtorType))
5214          continue;
5215
5216        // Then we check if we have already declared an inherited constructor
5217        // with this signature.
5218        std::pair<ConstructorToSourceMap::iterator, bool> result =
5219            InheritedConstructors.insert(std::make_pair(
5220                CanonicalNewCtorType,
5221                std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
5222        if (!result.second) {
5223          // Already in the map. If it came from a different class, that's an
5224          // error. Not if it's from the same.
5225          CanQualType PreviousBase = result.first->second.first;
5226          if (CanonicalBase != PreviousBase) {
5227            const CXXConstructorDecl *PrevCtor = result.first->second.second;
5228            const CXXConstructorDecl *PrevBaseCtor =
5229                PrevCtor->getInheritedConstructor();
5230            assert(PrevBaseCtor && "Conflicting constructor was not inherited");
5231
5232            Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
5233            Diag(BaseCtor->getLocation(),
5234                 diag::note_using_decl_constructor_conflict_current_ctor);
5235            Diag(PrevBaseCtor->getLocation(),
5236                 diag::note_using_decl_constructor_conflict_previous_ctor);
5237            Diag(PrevCtor->getLocation(),
5238                 diag::note_using_decl_constructor_conflict_previous_using);
5239          }
5240          continue;
5241        }
5242
5243        // OK, we're there, now add the constructor.
5244        // C++0x [class.inhctor]p8: [...] that would be performed by a
5245        //   user-writtern inline constructor [...]
5246        DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
5247        CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
5248            Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
5249            /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
5250            /*ImplicitlyDeclared=*/true);
5251        NewCtor->setAccess(BaseCtor->getAccess());
5252
5253        // Build up the parameter decls and add them.
5254        llvm::SmallVector<ParmVarDecl *, 16> ParamDecls;
5255        for (unsigned i = 0; i < params; ++i) {
5256          ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
5257                                                   UsingLoc, UsingLoc,
5258                                                   /*IdentifierInfo=*/0,
5259                                                   BaseCtorType->getArgType(i),
5260                                                   /*TInfo=*/0, SC_None,
5261                                                   SC_None, /*DefaultArg=*/0));
5262        }
5263        NewCtor->setParams(ParamDecls.data(), ParamDecls.size());
5264        NewCtor->setInheritedConstructor(BaseCtor);
5265
5266        PushOnScopeChains(NewCtor, S, false);
5267        ClassDecl->addDecl(NewCtor);
5268        result.first->second.second = NewCtor;
5269      }
5270    }
5271  }
5272}
5273
5274CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
5275  // C++ [class.dtor]p2:
5276  //   If a class has no user-declared destructor, a destructor is
5277  //   declared implicitly. An implicitly-declared destructor is an
5278  //   inline public member of its class.
5279
5280  // C++ [except.spec]p14:
5281  //   An implicitly declared special member function (Clause 12) shall have
5282  //   an exception-specification.
5283  ImplicitExceptionSpecification ExceptSpec(Context);
5284
5285  // Direct base-class destructors.
5286  for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
5287                                       BEnd = ClassDecl->bases_end();
5288       B != BEnd; ++B) {
5289    if (B->isVirtual()) // Handled below.
5290      continue;
5291
5292    if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
5293      ExceptSpec.CalledDecl(
5294                    LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
5295  }
5296
5297  // Virtual base-class destructors.
5298  for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
5299                                       BEnd = ClassDecl->vbases_end();
5300       B != BEnd; ++B) {
5301    if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
5302      ExceptSpec.CalledDecl(
5303                    LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
5304  }
5305
5306  // Field destructors.
5307  for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
5308                               FEnd = ClassDecl->field_end();
5309       F != FEnd; ++F) {
5310    if (const RecordType *RecordTy
5311        = Context.getBaseElementType(F->getType())->getAs<RecordType>())
5312      ExceptSpec.CalledDecl(
5313                    LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
5314  }
5315
5316  // Create the actual destructor declaration.
5317  FunctionProtoType::ExtProtoInfo EPI;
5318  EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
5319  EPI.NumExceptions = ExceptSpec.size();
5320  EPI.Exceptions = ExceptSpec.data();
5321  QualType Ty = Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
5322
5323  CanQualType ClassType
5324    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
5325  SourceLocation ClassLoc = ClassDecl->getLocation();
5326  DeclarationName Name
5327    = Context.DeclarationNames.getCXXDestructorName(ClassType);
5328  DeclarationNameInfo NameInfo(Name, ClassLoc);
5329  CXXDestructorDecl *Destructor
5330      = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, Ty, 0,
5331                                  /*isInline=*/true,
5332                                  /*isImplicitlyDeclared=*/true);
5333  Destructor->setAccess(AS_public);
5334  Destructor->setImplicit();
5335  Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
5336
5337  // Note that we have declared this destructor.
5338  ++ASTContext::NumImplicitDestructorsDeclared;
5339
5340  // Introduce this destructor into its scope.
5341  if (Scope *S = getScopeForContext(ClassDecl))
5342    PushOnScopeChains(Destructor, S, false);
5343  ClassDecl->addDecl(Destructor);
5344
5345  // This could be uniqued if it ever proves significant.
5346  Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
5347
5348  AddOverriddenMethods(ClassDecl, Destructor);
5349
5350  return Destructor;
5351}
5352
5353void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
5354                                    CXXDestructorDecl *Destructor) {
5355  assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
5356         "DefineImplicitDestructor - call it for implicit default dtor");
5357  CXXRecordDecl *ClassDecl = Destructor->getParent();
5358  assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
5359
5360  if (Destructor->isInvalidDecl())
5361    return;
5362
5363  ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
5364
5365  DiagnosticErrorTrap Trap(Diags);
5366  MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
5367                                         Destructor->getParent());
5368
5369  if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
5370    Diag(CurrentLocation, diag::note_member_synthesized_at)
5371      << CXXDestructor << Context.getTagDeclType(ClassDecl);
5372
5373    Destructor->setInvalidDecl();
5374    return;
5375  }
5376
5377  SourceLocation Loc = Destructor->getLocation();
5378  Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
5379
5380  Destructor->setUsed();
5381  MarkVTableUsed(CurrentLocation, ClassDecl);
5382
5383  if (ASTMutationListener *L = getASTMutationListener()) {
5384    L->CompletedImplicitDefinition(Destructor);
5385  }
5386}
5387
5388/// \brief Builds a statement that copies the given entity from \p From to
5389/// \c To.
5390///
5391/// This routine is used to copy the members of a class with an
5392/// implicitly-declared copy assignment operator. When the entities being
5393/// copied are arrays, this routine builds for loops to copy them.
5394///
5395/// \param S The Sema object used for type-checking.
5396///
5397/// \param Loc The location where the implicit copy is being generated.
5398///
5399/// \param T The type of the expressions being copied. Both expressions must
5400/// have this type.
5401///
5402/// \param To The expression we are copying to.
5403///
5404/// \param From The expression we are copying from.
5405///
5406/// \param CopyingBaseSubobject Whether we're copying a base subobject.
5407/// Otherwise, it's a non-static member subobject.
5408///
5409/// \param Depth Internal parameter recording the depth of the recursion.
5410///
5411/// \returns A statement or a loop that copies the expressions.
5412static StmtResult
5413BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
5414                      Expr *To, Expr *From,
5415                      bool CopyingBaseSubobject, unsigned Depth = 0) {
5416  // C++0x [class.copy]p30:
5417  //   Each subobject is assigned in the manner appropriate to its type:
5418  //
5419  //     - if the subobject is of class type, the copy assignment operator
5420  //       for the class is used (as if by explicit qualification; that is,
5421  //       ignoring any possible virtual overriding functions in more derived
5422  //       classes);
5423  if (const RecordType *RecordTy = T->getAs<RecordType>()) {
5424    CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
5425
5426    // Look for operator=.
5427    DeclarationName Name
5428      = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5429    LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
5430    S.LookupQualifiedName(OpLookup, ClassDecl, false);
5431
5432    // Filter out any result that isn't a copy-assignment operator.
5433    LookupResult::Filter F = OpLookup.makeFilter();
5434    while (F.hasNext()) {
5435      NamedDecl *D = F.next();
5436      if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
5437        if (Method->isCopyAssignmentOperator())
5438          continue;
5439
5440      F.erase();
5441    }
5442    F.done();
5443
5444    // Suppress the protected check (C++ [class.protected]) for each of the
5445    // assignment operators we found. This strange dance is required when
5446    // we're assigning via a base classes's copy-assignment operator. To
5447    // ensure that we're getting the right base class subobject (without
5448    // ambiguities), we need to cast "this" to that subobject type; to
5449    // ensure that we don't go through the virtual call mechanism, we need
5450    // to qualify the operator= name with the base class (see below). However,
5451    // this means that if the base class has a protected copy assignment
5452    // operator, the protected member access check will fail. So, we
5453    // rewrite "protected" access to "public" access in this case, since we
5454    // know by construction that we're calling from a derived class.
5455    if (CopyingBaseSubobject) {
5456      for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
5457           L != LEnd; ++L) {
5458        if (L.getAccess() == AS_protected)
5459          L.setAccess(AS_public);
5460      }
5461    }
5462
5463    // Create the nested-name-specifier that will be used to qualify the
5464    // reference to operator=; this is required to suppress the virtual
5465    // call mechanism.
5466    CXXScopeSpec SS;
5467    SS.MakeTrivial(S.Context,
5468                   NestedNameSpecifier::Create(S.Context, 0, false,
5469                                               T.getTypePtr()),
5470                   Loc);
5471
5472    // Create the reference to operator=.
5473    ExprResult OpEqualRef
5474      = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
5475                                   /*FirstQualifierInScope=*/0, OpLookup,
5476                                   /*TemplateArgs=*/0,
5477                                   /*SuppressQualifierCheck=*/true);
5478    if (OpEqualRef.isInvalid())
5479      return StmtError();
5480
5481    // Build the call to the assignment operator.
5482
5483    ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
5484                                                  OpEqualRef.takeAs<Expr>(),
5485                                                  Loc, &From, 1, Loc);
5486    if (Call.isInvalid())
5487      return StmtError();
5488
5489    return S.Owned(Call.takeAs<Stmt>());
5490  }
5491
5492  //     - if the subobject is of scalar type, the built-in assignment
5493  //       operator is used.
5494  const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
5495  if (!ArrayTy) {
5496    ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
5497    if (Assignment.isInvalid())
5498      return StmtError();
5499
5500    return S.Owned(Assignment.takeAs<Stmt>());
5501  }
5502
5503  //     - if the subobject is an array, each element is assigned, in the
5504  //       manner appropriate to the element type;
5505
5506  // Construct a loop over the array bounds, e.g.,
5507  //
5508  //   for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
5509  //
5510  // that will copy each of the array elements.
5511  QualType SizeType = S.Context.getSizeType();
5512
5513  // Create the iteration variable.
5514  IdentifierInfo *IterationVarName = 0;
5515  {
5516    llvm::SmallString<8> Str;
5517    llvm::raw_svector_ostream OS(Str);
5518    OS << "__i" << Depth;
5519    IterationVarName = &S.Context.Idents.get(OS.str());
5520  }
5521  VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
5522                                          IterationVarName, SizeType,
5523                            S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
5524                                          SC_None, SC_None);
5525
5526  // Initialize the iteration variable to zero.
5527  llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
5528  IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
5529
5530  // Create a reference to the iteration variable; we'll use this several
5531  // times throughout.
5532  Expr *IterationVarRef
5533    = S.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc).take();
5534  assert(IterationVarRef && "Reference to invented variable cannot fail!");
5535
5536  // Create the DeclStmt that holds the iteration variable.
5537  Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
5538
5539  // Create the comparison against the array bound.
5540  llvm::APInt Upper
5541    = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
5542  Expr *Comparison
5543    = new (S.Context) BinaryOperator(IterationVarRef,
5544                     IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
5545                                     BO_NE, S.Context.BoolTy,
5546                                     VK_RValue, OK_Ordinary, Loc);
5547
5548  // Create the pre-increment of the iteration variable.
5549  Expr *Increment
5550    = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
5551                                    VK_LValue, OK_Ordinary, Loc);
5552
5553  // Subscript the "from" and "to" expressions with the iteration variable.
5554  From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
5555                                                         IterationVarRef, Loc));
5556  To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
5557                                                       IterationVarRef, Loc));
5558
5559  // Build the copy for an individual element of the array.
5560  StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
5561                                          To, From, CopyingBaseSubobject,
5562                                          Depth + 1);
5563  if (Copy.isInvalid())
5564    return StmtError();
5565
5566  // Construct the loop that copies all elements of this array.
5567  return S.ActOnForStmt(Loc, Loc, InitStmt,
5568                        S.MakeFullExpr(Comparison),
5569                        0, S.MakeFullExpr(Increment),
5570                        Loc, Copy.take());
5571}
5572
5573/// \brief Determine whether the given class has a copy assignment operator
5574/// that accepts a const-qualified argument.
5575static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
5576  CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
5577
5578  if (!Class->hasDeclaredCopyAssignment())
5579    S.DeclareImplicitCopyAssignment(Class);
5580
5581  QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
5582  DeclarationName OpName
5583    = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5584
5585  DeclContext::lookup_const_iterator Op, OpEnd;
5586  for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
5587    // C++ [class.copy]p9:
5588    //   A user-declared copy assignment operator is a non-static non-template
5589    //   member function of class X with exactly one parameter of type X, X&,
5590    //   const X&, volatile X& or const volatile X&.
5591    const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
5592    if (!Method)
5593      continue;
5594
5595    if (Method->isStatic())
5596      continue;
5597    if (Method->getPrimaryTemplate())
5598      continue;
5599    const FunctionProtoType *FnType =
5600    Method->getType()->getAs<FunctionProtoType>();
5601    assert(FnType && "Overloaded operator has no prototype.");
5602    // Don't assert on this; an invalid decl might have been left in the AST.
5603    if (FnType->getNumArgs() != 1 || FnType->isVariadic())
5604      continue;
5605    bool AcceptsConst = true;
5606    QualType ArgType = FnType->getArgType(0);
5607    if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
5608      ArgType = Ref->getPointeeType();
5609      // Is it a non-const lvalue reference?
5610      if (!ArgType.isConstQualified())
5611        AcceptsConst = false;
5612    }
5613    if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
5614      continue;
5615
5616    // We have a single argument of type cv X or cv X&, i.e. we've found the
5617    // copy assignment operator. Return whether it accepts const arguments.
5618    return AcceptsConst;
5619  }
5620  assert(Class->isInvalidDecl() &&
5621         "No copy assignment operator declared in valid code.");
5622  return false;
5623}
5624
5625CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
5626  // Note: The following rules are largely analoguous to the copy
5627  // constructor rules. Note that virtual bases are not taken into account
5628  // for determining the argument type of the operator. Note also that
5629  // operators taking an object instead of a reference are allowed.
5630
5631
5632  // C++ [class.copy]p10:
5633  //   If the class definition does not explicitly declare a copy
5634  //   assignment operator, one is declared implicitly.
5635  //   The implicitly-defined copy assignment operator for a class X
5636  //   will have the form
5637  //
5638  //       X& X::operator=(const X&)
5639  //
5640  //   if
5641  bool HasConstCopyAssignment = true;
5642
5643  //       -- each direct base class B of X has a copy assignment operator
5644  //          whose parameter is of type const B&, const volatile B& or B,
5645  //          and
5646  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5647                                       BaseEnd = ClassDecl->bases_end();
5648       HasConstCopyAssignment && Base != BaseEnd; ++Base) {
5649    assert(!Base->getType()->isDependentType() &&
5650           "Cannot generate implicit members for class with dependent bases.");
5651    const CXXRecordDecl *BaseClassDecl
5652      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
5653    HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
5654  }
5655
5656  //       -- for all the nonstatic data members of X that are of a class
5657  //          type M (or array thereof), each such class type has a copy
5658  //          assignment operator whose parameter is of type const M&,
5659  //          const volatile M& or M.
5660  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5661                                  FieldEnd = ClassDecl->field_end();
5662       HasConstCopyAssignment && Field != FieldEnd;
5663       ++Field) {
5664    QualType FieldType = Context.getBaseElementType((*Field)->getType());
5665    if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
5666      const CXXRecordDecl *FieldClassDecl
5667        = cast<CXXRecordDecl>(FieldClassType->getDecl());
5668      HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
5669    }
5670  }
5671
5672  //   Otherwise, the implicitly declared copy assignment operator will
5673  //   have the form
5674  //
5675  //       X& X::operator=(X&)
5676  QualType ArgType = Context.getTypeDeclType(ClassDecl);
5677  QualType RetType = Context.getLValueReferenceType(ArgType);
5678  if (HasConstCopyAssignment)
5679    ArgType = ArgType.withConst();
5680  ArgType = Context.getLValueReferenceType(ArgType);
5681
5682  // C++ [except.spec]p14:
5683  //   An implicitly declared special member function (Clause 12) shall have an
5684  //   exception-specification. [...]
5685  ImplicitExceptionSpecification ExceptSpec(Context);
5686  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5687                                       BaseEnd = ClassDecl->bases_end();
5688       Base != BaseEnd; ++Base) {
5689    CXXRecordDecl *BaseClassDecl
5690      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
5691
5692    if (!BaseClassDecl->hasDeclaredCopyAssignment())
5693      DeclareImplicitCopyAssignment(BaseClassDecl);
5694
5695    if (CXXMethodDecl *CopyAssign
5696           = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
5697      ExceptSpec.CalledDecl(CopyAssign);
5698  }
5699  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5700                                  FieldEnd = ClassDecl->field_end();
5701       Field != FieldEnd;
5702       ++Field) {
5703    QualType FieldType = Context.getBaseElementType((*Field)->getType());
5704    if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
5705      CXXRecordDecl *FieldClassDecl
5706        = cast<CXXRecordDecl>(FieldClassType->getDecl());
5707
5708      if (!FieldClassDecl->hasDeclaredCopyAssignment())
5709        DeclareImplicitCopyAssignment(FieldClassDecl);
5710
5711      if (CXXMethodDecl *CopyAssign
5712            = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
5713        ExceptSpec.CalledDecl(CopyAssign);
5714    }
5715  }
5716
5717  //   An implicitly-declared copy assignment operator is an inline public
5718  //   member of its class.
5719  FunctionProtoType::ExtProtoInfo EPI;
5720  EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
5721  EPI.NumExceptions = ExceptSpec.size();
5722  EPI.Exceptions = ExceptSpec.data();
5723  DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5724  SourceLocation ClassLoc = ClassDecl->getLocation();
5725  DeclarationNameInfo NameInfo(Name, ClassLoc);
5726  CXXMethodDecl *CopyAssignment
5727    = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
5728                            Context.getFunctionType(RetType, &ArgType, 1, EPI),
5729                            /*TInfo=*/0, /*isStatic=*/false,
5730                            /*StorageClassAsWritten=*/SC_None,
5731                            /*isInline=*/true,
5732                            SourceLocation());
5733  CopyAssignment->setAccess(AS_public);
5734  CopyAssignment->setImplicit();
5735  CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
5736
5737  // Add the parameter to the operator.
5738  ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
5739                                               ClassLoc, ClassLoc, /*Id=*/0,
5740                                               ArgType, /*TInfo=*/0,
5741                                               SC_None,
5742                                               SC_None, 0);
5743  CopyAssignment->setParams(&FromParam, 1);
5744
5745  // Note that we have added this copy-assignment operator.
5746  ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
5747
5748  if (Scope *S = getScopeForContext(ClassDecl))
5749    PushOnScopeChains(CopyAssignment, S, false);
5750  ClassDecl->addDecl(CopyAssignment);
5751
5752  AddOverriddenMethods(ClassDecl, CopyAssignment);
5753  return CopyAssignment;
5754}
5755
5756void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
5757                                        CXXMethodDecl *CopyAssignOperator) {
5758  assert((CopyAssignOperator->isImplicit() &&
5759          CopyAssignOperator->isOverloadedOperator() &&
5760          CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
5761          !CopyAssignOperator->isUsed(false)) &&
5762         "DefineImplicitCopyAssignment called for wrong function");
5763
5764  CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
5765
5766  if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
5767    CopyAssignOperator->setInvalidDecl();
5768    return;
5769  }
5770
5771  CopyAssignOperator->setUsed();
5772
5773  ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
5774  DiagnosticErrorTrap Trap(Diags);
5775
5776  // C++0x [class.copy]p30:
5777  //   The implicitly-defined or explicitly-defaulted copy assignment operator
5778  //   for a non-union class X performs memberwise copy assignment of its
5779  //   subobjects. The direct base classes of X are assigned first, in the
5780  //   order of their declaration in the base-specifier-list, and then the
5781  //   immediate non-static data members of X are assigned, in the order in
5782  //   which they were declared in the class definition.
5783
5784  // The statements that form the synthesized function body.
5785  ASTOwningVector<Stmt*> Statements(*this);
5786
5787  // The parameter for the "other" object, which we are copying from.
5788  ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
5789  Qualifiers OtherQuals = Other->getType().getQualifiers();
5790  QualType OtherRefType = Other->getType();
5791  if (const LValueReferenceType *OtherRef
5792                                = OtherRefType->getAs<LValueReferenceType>()) {
5793    OtherRefType = OtherRef->getPointeeType();
5794    OtherQuals = OtherRefType.getQualifiers();
5795  }
5796
5797  // Our location for everything implicitly-generated.
5798  SourceLocation Loc = CopyAssignOperator->getLocation();
5799
5800  // Construct a reference to the "other" object. We'll be using this
5801  // throughout the generated ASTs.
5802  Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
5803  assert(OtherRef && "Reference to parameter cannot fail!");
5804
5805  // Construct the "this" pointer. We'll be using this throughout the generated
5806  // ASTs.
5807  Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
5808  assert(This && "Reference to this cannot fail!");
5809
5810  // Assign base classes.
5811  bool Invalid = false;
5812  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5813       E = ClassDecl->bases_end(); Base != E; ++Base) {
5814    // Form the assignment:
5815    //   static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
5816    QualType BaseType = Base->getType().getUnqualifiedType();
5817    if (!BaseType->isRecordType()) {
5818      Invalid = true;
5819      continue;
5820    }
5821
5822    CXXCastPath BasePath;
5823    BasePath.push_back(Base);
5824
5825    // Construct the "from" expression, which is an implicit cast to the
5826    // appropriately-qualified base type.
5827    Expr *From = OtherRef;
5828    From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
5829                             CK_UncheckedDerivedToBase,
5830                             VK_LValue, &BasePath).take();
5831
5832    // Dereference "this".
5833    ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
5834
5835    // Implicitly cast "this" to the appropriately-qualified base type.
5836    To = ImpCastExprToType(To.take(),
5837                           Context.getCVRQualifiedType(BaseType,
5838                                     CopyAssignOperator->getTypeQualifiers()),
5839                           CK_UncheckedDerivedToBase,
5840                           VK_LValue, &BasePath);
5841
5842    // Build the copy.
5843    StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
5844                                            To.get(), From,
5845                                            /*CopyingBaseSubobject=*/true);
5846    if (Copy.isInvalid()) {
5847      Diag(CurrentLocation, diag::note_member_synthesized_at)
5848        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5849      CopyAssignOperator->setInvalidDecl();
5850      return;
5851    }
5852
5853    // Success! Record the copy.
5854    Statements.push_back(Copy.takeAs<Expr>());
5855  }
5856
5857  // \brief Reference to the __builtin_memcpy function.
5858  Expr *BuiltinMemCpyRef = 0;
5859  // \brief Reference to the __builtin_objc_memmove_collectable function.
5860  Expr *CollectableMemCpyRef = 0;
5861
5862  // Assign non-static members.
5863  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5864                                  FieldEnd = ClassDecl->field_end();
5865       Field != FieldEnd; ++Field) {
5866    // Check for members of reference type; we can't copy those.
5867    if (Field->getType()->isReferenceType()) {
5868      Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5869        << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
5870      Diag(Field->getLocation(), diag::note_declared_at);
5871      Diag(CurrentLocation, diag::note_member_synthesized_at)
5872        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5873      Invalid = true;
5874      continue;
5875    }
5876
5877    // Check for members of const-qualified, non-class type.
5878    QualType BaseType = Context.getBaseElementType(Field->getType());
5879    if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
5880      Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5881        << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
5882      Diag(Field->getLocation(), diag::note_declared_at);
5883      Diag(CurrentLocation, diag::note_member_synthesized_at)
5884        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5885      Invalid = true;
5886      continue;
5887    }
5888
5889    QualType FieldType = Field->getType().getNonReferenceType();
5890    if (FieldType->isIncompleteArrayType()) {
5891      assert(ClassDecl->hasFlexibleArrayMember() &&
5892             "Incomplete array type is not valid");
5893      continue;
5894    }
5895
5896    // Build references to the field in the object we're copying from and to.
5897    CXXScopeSpec SS; // Intentionally empty
5898    LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
5899                              LookupMemberName);
5900    MemberLookup.addDecl(*Field);
5901    MemberLookup.resolveKind();
5902    ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
5903                                               Loc, /*IsArrow=*/false,
5904                                               SS, 0, MemberLookup, 0);
5905    ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
5906                                             Loc, /*IsArrow=*/true,
5907                                             SS, 0, MemberLookup, 0);
5908    assert(!From.isInvalid() && "Implicit field reference cannot fail");
5909    assert(!To.isInvalid() && "Implicit field reference cannot fail");
5910
5911    // If the field should be copied with __builtin_memcpy rather than via
5912    // explicit assignments, do so. This optimization only applies for arrays
5913    // of scalars and arrays of class type with trivial copy-assignment
5914    // operators.
5915    if (FieldType->isArrayType() &&
5916        (!BaseType->isRecordType() ||
5917         cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
5918           ->hasTrivialCopyAssignment())) {
5919      // Compute the size of the memory buffer to be copied.
5920      QualType SizeType = Context.getSizeType();
5921      llvm::APInt Size(Context.getTypeSize(SizeType),
5922                       Context.getTypeSizeInChars(BaseType).getQuantity());
5923      for (const ConstantArrayType *Array
5924              = Context.getAsConstantArrayType(FieldType);
5925           Array;
5926           Array = Context.getAsConstantArrayType(Array->getElementType())) {
5927        llvm::APInt ArraySize
5928          = Array->getSize().zextOrTrunc(Size.getBitWidth());
5929        Size *= ArraySize;
5930      }
5931
5932      // Take the address of the field references for "from" and "to".
5933      From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
5934      To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
5935
5936      bool NeedsCollectableMemCpy =
5937          (BaseType->isRecordType() &&
5938           BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
5939
5940      if (NeedsCollectableMemCpy) {
5941        if (!CollectableMemCpyRef) {
5942          // Create a reference to the __builtin_objc_memmove_collectable function.
5943          LookupResult R(*this,
5944                         &Context.Idents.get("__builtin_objc_memmove_collectable"),
5945                         Loc, LookupOrdinaryName);
5946          LookupName(R, TUScope, true);
5947
5948          FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5949          if (!CollectableMemCpy) {
5950            // Something went horribly wrong earlier, and we will have
5951            // complained about it.
5952            Invalid = true;
5953            continue;
5954          }
5955
5956          CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5957                                                  CollectableMemCpy->getType(),
5958                                                  VK_LValue, Loc, 0).take();
5959          assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5960        }
5961      }
5962      // Create a reference to the __builtin_memcpy builtin function.
5963      else if (!BuiltinMemCpyRef) {
5964        LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5965                       LookupOrdinaryName);
5966        LookupName(R, TUScope, true);
5967
5968        FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5969        if (!BuiltinMemCpy) {
5970          // Something went horribly wrong earlier, and we will have complained
5971          // about it.
5972          Invalid = true;
5973          continue;
5974        }
5975
5976        BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5977                                            BuiltinMemCpy->getType(),
5978                                            VK_LValue, Loc, 0).take();
5979        assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5980      }
5981
5982      ASTOwningVector<Expr*> CallArgs(*this);
5983      CallArgs.push_back(To.takeAs<Expr>());
5984      CallArgs.push_back(From.takeAs<Expr>());
5985      CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
5986      ExprResult Call = ExprError();
5987      if (NeedsCollectableMemCpy)
5988        Call = ActOnCallExpr(/*Scope=*/0,
5989                             CollectableMemCpyRef,
5990                             Loc, move_arg(CallArgs),
5991                             Loc);
5992      else
5993        Call = ActOnCallExpr(/*Scope=*/0,
5994                             BuiltinMemCpyRef,
5995                             Loc, move_arg(CallArgs),
5996                             Loc);
5997
5998      assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5999      Statements.push_back(Call.takeAs<Expr>());
6000      continue;
6001    }
6002
6003    // Build the copy of this field.
6004    StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
6005                                                  To.get(), From.get(),
6006                                              /*CopyingBaseSubobject=*/false);
6007    if (Copy.isInvalid()) {
6008      Diag(CurrentLocation, diag::note_member_synthesized_at)
6009        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
6010      CopyAssignOperator->setInvalidDecl();
6011      return;
6012    }
6013
6014    // Success! Record the copy.
6015    Statements.push_back(Copy.takeAs<Stmt>());
6016  }
6017
6018  if (!Invalid) {
6019    // Add a "return *this;"
6020    ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
6021
6022    StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
6023    if (Return.isInvalid())
6024      Invalid = true;
6025    else {
6026      Statements.push_back(Return.takeAs<Stmt>());
6027
6028      if (Trap.hasErrorOccurred()) {
6029        Diag(CurrentLocation, diag::note_member_synthesized_at)
6030          << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
6031        Invalid = true;
6032      }
6033    }
6034  }
6035
6036  if (Invalid) {
6037    CopyAssignOperator->setInvalidDecl();
6038    return;
6039  }
6040
6041  StmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
6042                                            /*isStmtExpr=*/false);
6043  assert(!Body.isInvalid() && "Compound statement creation cannot fail");
6044  CopyAssignOperator->setBody(Body.takeAs<Stmt>());
6045
6046  if (ASTMutationListener *L = getASTMutationListener()) {
6047    L->CompletedImplicitDefinition(CopyAssignOperator);
6048  }
6049}
6050
6051CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
6052                                                    CXXRecordDecl *ClassDecl) {
6053  // C++ [class.copy]p4:
6054  //   If the class definition does not explicitly declare a copy
6055  //   constructor, one is declared implicitly.
6056
6057  // C++ [class.copy]p5:
6058  //   The implicitly-declared copy constructor for a class X will
6059  //   have the form
6060  //
6061  //       X::X(const X&)
6062  //
6063  //   if
6064  bool HasConstCopyConstructor = true;
6065
6066  //     -- each direct or virtual base class B of X has a copy
6067  //        constructor whose first parameter is of type const B& or
6068  //        const volatile B&, and
6069  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
6070                                       BaseEnd = ClassDecl->bases_end();
6071       HasConstCopyConstructor && Base != BaseEnd;
6072       ++Base) {
6073    // Virtual bases are handled below.
6074    if (Base->isVirtual())
6075      continue;
6076
6077    CXXRecordDecl *BaseClassDecl
6078      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
6079    if (!BaseClassDecl->hasDeclaredCopyConstructor())
6080      DeclareImplicitCopyConstructor(BaseClassDecl);
6081
6082    HasConstCopyConstructor
6083      = BaseClassDecl->hasConstCopyConstructor(Context);
6084  }
6085
6086  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
6087                                       BaseEnd = ClassDecl->vbases_end();
6088       HasConstCopyConstructor && Base != BaseEnd;
6089       ++Base) {
6090    CXXRecordDecl *BaseClassDecl
6091      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
6092    if (!BaseClassDecl->hasDeclaredCopyConstructor())
6093      DeclareImplicitCopyConstructor(BaseClassDecl);
6094
6095    HasConstCopyConstructor
6096      = BaseClassDecl->hasConstCopyConstructor(Context);
6097  }
6098
6099  //     -- for all the nonstatic data members of X that are of a
6100  //        class type M (or array thereof), each such class type
6101  //        has a copy constructor whose first parameter is of type
6102  //        const M& or const volatile M&.
6103  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
6104                                  FieldEnd = ClassDecl->field_end();
6105       HasConstCopyConstructor && Field != FieldEnd;
6106       ++Field) {
6107    QualType FieldType = Context.getBaseElementType((*Field)->getType());
6108    if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
6109      CXXRecordDecl *FieldClassDecl
6110        = cast<CXXRecordDecl>(FieldClassType->getDecl());
6111      if (!FieldClassDecl->hasDeclaredCopyConstructor())
6112        DeclareImplicitCopyConstructor(FieldClassDecl);
6113
6114      HasConstCopyConstructor
6115        = FieldClassDecl->hasConstCopyConstructor(Context);
6116    }
6117  }
6118
6119  //   Otherwise, the implicitly declared copy constructor will have
6120  //   the form
6121  //
6122  //       X::X(X&)
6123  QualType ClassType = Context.getTypeDeclType(ClassDecl);
6124  QualType ArgType = ClassType;
6125  if (HasConstCopyConstructor)
6126    ArgType = ArgType.withConst();
6127  ArgType = Context.getLValueReferenceType(ArgType);
6128
6129  // C++ [except.spec]p14:
6130  //   An implicitly declared special member function (Clause 12) shall have an
6131  //   exception-specification. [...]
6132  ImplicitExceptionSpecification ExceptSpec(Context);
6133  unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
6134  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
6135                                       BaseEnd = ClassDecl->bases_end();
6136       Base != BaseEnd;
6137       ++Base) {
6138    // Virtual bases are handled below.
6139    if (Base->isVirtual())
6140      continue;
6141
6142    CXXRecordDecl *BaseClassDecl
6143      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
6144    if (!BaseClassDecl->hasDeclaredCopyConstructor())
6145      DeclareImplicitCopyConstructor(BaseClassDecl);
6146
6147    if (CXXConstructorDecl *CopyConstructor
6148                          = BaseClassDecl->getCopyConstructor(Context, Quals))
6149      ExceptSpec.CalledDecl(CopyConstructor);
6150  }
6151  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
6152                                       BaseEnd = ClassDecl->vbases_end();
6153       Base != BaseEnd;
6154       ++Base) {
6155    CXXRecordDecl *BaseClassDecl
6156      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
6157    if (!BaseClassDecl->hasDeclaredCopyConstructor())
6158      DeclareImplicitCopyConstructor(BaseClassDecl);
6159
6160    if (CXXConstructorDecl *CopyConstructor
6161                          = BaseClassDecl->getCopyConstructor(Context, Quals))
6162      ExceptSpec.CalledDecl(CopyConstructor);
6163  }
6164  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
6165                                  FieldEnd = ClassDecl->field_end();
6166       Field != FieldEnd;
6167       ++Field) {
6168    QualType FieldType = Context.getBaseElementType((*Field)->getType());
6169    if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
6170      CXXRecordDecl *FieldClassDecl
6171        = cast<CXXRecordDecl>(FieldClassType->getDecl());
6172      if (!FieldClassDecl->hasDeclaredCopyConstructor())
6173        DeclareImplicitCopyConstructor(FieldClassDecl);
6174
6175      if (CXXConstructorDecl *CopyConstructor
6176                          = FieldClassDecl->getCopyConstructor(Context, Quals))
6177        ExceptSpec.CalledDecl(CopyConstructor);
6178    }
6179  }
6180
6181  //   An implicitly-declared copy constructor is an inline public
6182  //   member of its class.
6183  FunctionProtoType::ExtProtoInfo EPI;
6184  EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
6185  EPI.NumExceptions = ExceptSpec.size();
6186  EPI.Exceptions = ExceptSpec.data();
6187  DeclarationName Name
6188    = Context.DeclarationNames.getCXXConstructorName(
6189                                           Context.getCanonicalType(ClassType));
6190  SourceLocation ClassLoc = ClassDecl->getLocation();
6191  DeclarationNameInfo NameInfo(Name, ClassLoc);
6192  CXXConstructorDecl *CopyConstructor
6193    = CXXConstructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
6194                                 Context.getFunctionType(Context.VoidTy,
6195                                                         &ArgType, 1, EPI),
6196                                 /*TInfo=*/0,
6197                                 /*isExplicit=*/false,
6198                                 /*isInline=*/true,
6199                                 /*isImplicitlyDeclared=*/true);
6200  CopyConstructor->setAccess(AS_public);
6201  CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
6202
6203  // Note that we have declared this constructor.
6204  ++ASTContext::NumImplicitCopyConstructorsDeclared;
6205
6206  // Add the parameter to the constructor.
6207  ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
6208                                               ClassLoc, ClassLoc,
6209                                               /*IdentifierInfo=*/0,
6210                                               ArgType, /*TInfo=*/0,
6211                                               SC_None,
6212                                               SC_None, 0);
6213  CopyConstructor->setParams(&FromParam, 1);
6214  if (Scope *S = getScopeForContext(ClassDecl))
6215    PushOnScopeChains(CopyConstructor, S, false);
6216  ClassDecl->addDecl(CopyConstructor);
6217
6218  return CopyConstructor;
6219}
6220
6221void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
6222                                   CXXConstructorDecl *CopyConstructor,
6223                                   unsigned TypeQuals) {
6224  assert((CopyConstructor->isImplicit() &&
6225          CopyConstructor->isCopyConstructor(TypeQuals) &&
6226          !CopyConstructor->isUsed(false)) &&
6227         "DefineImplicitCopyConstructor - call it for implicit copy ctor");
6228
6229  CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
6230  assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
6231
6232  ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
6233  DiagnosticErrorTrap Trap(Diags);
6234
6235  if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
6236      Trap.hasErrorOccurred()) {
6237    Diag(CurrentLocation, diag::note_member_synthesized_at)
6238      << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
6239    CopyConstructor->setInvalidDecl();
6240  }  else {
6241    CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
6242                                               CopyConstructor->getLocation(),
6243                                               MultiStmtArg(*this, 0, 0),
6244                                               /*isStmtExpr=*/false)
6245                                                              .takeAs<Stmt>());
6246  }
6247
6248  CopyConstructor->setUsed();
6249
6250  if (ASTMutationListener *L = getASTMutationListener()) {
6251    L->CompletedImplicitDefinition(CopyConstructor);
6252  }
6253}
6254
6255ExprResult
6256Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
6257                            CXXConstructorDecl *Constructor,
6258                            MultiExprArg ExprArgs,
6259                            bool RequiresZeroInit,
6260                            unsigned ConstructKind,
6261                            SourceRange ParenRange) {
6262  bool Elidable = false;
6263
6264  // C++0x [class.copy]p34:
6265  //   When certain criteria are met, an implementation is allowed to
6266  //   omit the copy/move construction of a class object, even if the
6267  //   copy/move constructor and/or destructor for the object have
6268  //   side effects. [...]
6269  //     - when a temporary class object that has not been bound to a
6270  //       reference (12.2) would be copied/moved to a class object
6271  //       with the same cv-unqualified type, the copy/move operation
6272  //       can be omitted by constructing the temporary object
6273  //       directly into the target of the omitted copy/move
6274  if (ConstructKind == CXXConstructExpr::CK_Complete &&
6275      Constructor->isCopyOrMoveConstructor() && ExprArgs.size() >= 1) {
6276    Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
6277    Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
6278  }
6279
6280  return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
6281                               Elidable, move(ExprArgs), RequiresZeroInit,
6282                               ConstructKind, ParenRange);
6283}
6284
6285/// BuildCXXConstructExpr - Creates a complete call to a constructor,
6286/// including handling of its default argument expressions.
6287ExprResult
6288Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
6289                            CXXConstructorDecl *Constructor, bool Elidable,
6290                            MultiExprArg ExprArgs,
6291                            bool RequiresZeroInit,
6292                            unsigned ConstructKind,
6293                            SourceRange ParenRange) {
6294  unsigned NumExprs = ExprArgs.size();
6295  Expr **Exprs = (Expr **)ExprArgs.release();
6296
6297  for (specific_attr_iterator<NonNullAttr>
6298           i = Constructor->specific_attr_begin<NonNullAttr>(),
6299           e = Constructor->specific_attr_end<NonNullAttr>(); i != e; ++i) {
6300    const NonNullAttr *NonNull = *i;
6301    CheckNonNullArguments(NonNull, ExprArgs.get(), ConstructLoc);
6302  }
6303
6304  MarkDeclarationReferenced(ConstructLoc, Constructor);
6305  return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
6306                                        Constructor, Elidable, Exprs, NumExprs,
6307                                        RequiresZeroInit,
6308              static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
6309                                        ParenRange));
6310}
6311
6312bool Sema::InitializeVarWithConstructor(VarDecl *VD,
6313                                        CXXConstructorDecl *Constructor,
6314                                        MultiExprArg Exprs) {
6315  // FIXME: Provide the correct paren SourceRange when available.
6316  ExprResult TempResult =
6317    BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
6318                          move(Exprs), false, CXXConstructExpr::CK_Complete,
6319                          SourceRange());
6320  if (TempResult.isInvalid())
6321    return true;
6322
6323  Expr *Temp = TempResult.takeAs<Expr>();
6324  CheckImplicitConversions(Temp, VD->getLocation());
6325  MarkDeclarationReferenced(VD->getLocation(), Constructor);
6326  Temp = MaybeCreateExprWithCleanups(Temp);
6327  VD->setInit(Temp);
6328
6329  return false;
6330}
6331
6332void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
6333  if (VD->isInvalidDecl()) return;
6334
6335  CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
6336  if (ClassDecl->isInvalidDecl()) return;
6337  if (ClassDecl->hasTrivialDestructor()) return;
6338  if (ClassDecl->isDependentContext()) return;
6339
6340  CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
6341  MarkDeclarationReferenced(VD->getLocation(), Destructor);
6342  CheckDestructorAccess(VD->getLocation(), Destructor,
6343                        PDiag(diag::err_access_dtor_var)
6344                        << VD->getDeclName()
6345                        << VD->getType());
6346
6347  if (!VD->hasGlobalStorage()) return;
6348
6349  // Emit warning for non-trivial dtor in global scope (a real global,
6350  // class-static, function-static).
6351  Diag(VD->getLocation(), diag::warn_exit_time_destructor);
6352
6353  // TODO: this should be re-enabled for static locals by !CXAAtExit
6354  if (!VD->isStaticLocal())
6355    Diag(VD->getLocation(), diag::warn_global_destructor);
6356}
6357
6358/// AddCXXDirectInitializerToDecl - This action is called immediately after
6359/// ActOnDeclarator, when a C++ direct initializer is present.
6360/// e.g: "int x(1);"
6361void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
6362                                         SourceLocation LParenLoc,
6363                                         MultiExprArg Exprs,
6364                                         SourceLocation RParenLoc,
6365                                         bool TypeMayContainAuto) {
6366  assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
6367
6368  // If there is no declaration, there was an error parsing it.  Just ignore
6369  // the initializer.
6370  if (RealDecl == 0)
6371    return;
6372
6373  VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
6374  if (!VDecl) {
6375    Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
6376    RealDecl->setInvalidDecl();
6377    return;
6378  }
6379
6380  // C++0x [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
6381  if (TypeMayContainAuto && VDecl->getType()->getContainedAutoType()) {
6382    // FIXME: n3225 doesn't actually seem to indicate this is ill-formed
6383    if (Exprs.size() > 1) {
6384      Diag(Exprs.get()[1]->getSourceRange().getBegin(),
6385           diag::err_auto_var_init_multiple_expressions)
6386        << VDecl->getDeclName() << VDecl->getType()
6387        << VDecl->getSourceRange();
6388      RealDecl->setInvalidDecl();
6389      return;
6390    }
6391
6392    Expr *Init = Exprs.get()[0];
6393    TypeSourceInfo *DeducedType = 0;
6394    if (!DeduceAutoType(VDecl->getTypeSourceInfo(), Init, DeducedType))
6395      Diag(VDecl->getLocation(), diag::err_auto_var_deduction_failure)
6396        << VDecl->getDeclName() << VDecl->getType() << Init->getType()
6397        << Init->getSourceRange();
6398    if (!DeducedType) {
6399      RealDecl->setInvalidDecl();
6400      return;
6401    }
6402    VDecl->setTypeSourceInfo(DeducedType);
6403    VDecl->setType(DeducedType->getType());
6404
6405    // If this is a redeclaration, check that the type we just deduced matches
6406    // the previously declared type.
6407    if (VarDecl *Old = VDecl->getPreviousDeclaration())
6408      MergeVarDeclTypes(VDecl, Old);
6409  }
6410
6411  // We will represent direct-initialization similarly to copy-initialization:
6412  //    int x(1);  -as-> int x = 1;
6413  //    ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
6414  //
6415  // Clients that want to distinguish between the two forms, can check for
6416  // direct initializer using VarDecl::hasCXXDirectInitializer().
6417  // A major benefit is that clients that don't particularly care about which
6418  // exactly form was it (like the CodeGen) can handle both cases without
6419  // special case code.
6420
6421  // C++ 8.5p11:
6422  // The form of initialization (using parentheses or '=') is generally
6423  // insignificant, but does matter when the entity being initialized has a
6424  // class type.
6425
6426  if (!VDecl->getType()->isDependentType() &&
6427      RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
6428                          diag::err_typecheck_decl_incomplete_type)) {
6429    VDecl->setInvalidDecl();
6430    return;
6431  }
6432
6433  // The variable can not have an abstract class type.
6434  if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
6435                             diag::err_abstract_type_in_decl,
6436                             AbstractVariableType))
6437    VDecl->setInvalidDecl();
6438
6439  const VarDecl *Def;
6440  if ((Def = VDecl->getDefinition()) && Def != VDecl) {
6441    Diag(VDecl->getLocation(), diag::err_redefinition)
6442    << VDecl->getDeclName();
6443    Diag(Def->getLocation(), diag::note_previous_definition);
6444    VDecl->setInvalidDecl();
6445    return;
6446  }
6447
6448  // C++ [class.static.data]p4
6449  //   If a static data member is of const integral or const
6450  //   enumeration type, its declaration in the class definition can
6451  //   specify a constant-initializer which shall be an integral
6452  //   constant expression (5.19). In that case, the member can appear
6453  //   in integral constant expressions. The member shall still be
6454  //   defined in a namespace scope if it is used in the program and the
6455  //   namespace scope definition shall not contain an initializer.
6456  //
6457  // We already performed a redefinition check above, but for static
6458  // data members we also need to check whether there was an in-class
6459  // declaration with an initializer.
6460  const VarDecl* PrevInit = 0;
6461  if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
6462    Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
6463    Diag(PrevInit->getLocation(), diag::note_previous_definition);
6464    return;
6465  }
6466
6467  bool IsDependent = false;
6468  for (unsigned I = 0, N = Exprs.size(); I != N; ++I) {
6469    if (DiagnoseUnexpandedParameterPack(Exprs.get()[I], UPPC_Expression)) {
6470      VDecl->setInvalidDecl();
6471      return;
6472    }
6473
6474    if (Exprs.get()[I]->isTypeDependent())
6475      IsDependent = true;
6476  }
6477
6478  // If either the declaration has a dependent type or if any of the
6479  // expressions is type-dependent, we represent the initialization
6480  // via a ParenListExpr for later use during template instantiation.
6481  if (VDecl->getType()->isDependentType() || IsDependent) {
6482    // Let clients know that initialization was done with a direct initializer.
6483    VDecl->setCXXDirectInitializer(true);
6484
6485    // Store the initialization expressions as a ParenListExpr.
6486    unsigned NumExprs = Exprs.size();
6487    VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
6488                                               (Expr **)Exprs.release(),
6489                                               NumExprs, RParenLoc));
6490    return;
6491  }
6492
6493  // Capture the variable that is being initialized and the style of
6494  // initialization.
6495  InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
6496
6497  // FIXME: Poor source location information.
6498  InitializationKind Kind
6499    = InitializationKind::CreateDirect(VDecl->getLocation(),
6500                                       LParenLoc, RParenLoc);
6501
6502  InitializationSequence InitSeq(*this, Entity, Kind,
6503                                 Exprs.get(), Exprs.size());
6504  ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
6505  if (Result.isInvalid()) {
6506    VDecl->setInvalidDecl();
6507    return;
6508  }
6509
6510  CheckImplicitConversions(Result.get(), LParenLoc);
6511
6512  Result = MaybeCreateExprWithCleanups(Result);
6513  VDecl->setInit(Result.takeAs<Expr>());
6514  VDecl->setCXXDirectInitializer(true);
6515
6516  CheckCompleteVariableDeclaration(VDecl);
6517}
6518
6519/// \brief Given a constructor and the set of arguments provided for the
6520/// constructor, convert the arguments and add any required default arguments
6521/// to form a proper call to this constructor.
6522///
6523/// \returns true if an error occurred, false otherwise.
6524bool
6525Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
6526                              MultiExprArg ArgsPtr,
6527                              SourceLocation Loc,
6528                              ASTOwningVector<Expr*> &ConvertedArgs) {
6529  // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
6530  unsigned NumArgs = ArgsPtr.size();
6531  Expr **Args = (Expr **)ArgsPtr.get();
6532
6533  const FunctionProtoType *Proto
6534    = Constructor->getType()->getAs<FunctionProtoType>();
6535  assert(Proto && "Constructor without a prototype?");
6536  unsigned NumArgsInProto = Proto->getNumArgs();
6537
6538  // If too few arguments are available, we'll fill in the rest with defaults.
6539  if (NumArgs < NumArgsInProto)
6540    ConvertedArgs.reserve(NumArgsInProto);
6541  else
6542    ConvertedArgs.reserve(NumArgs);
6543
6544  VariadicCallType CallType =
6545    Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
6546  llvm::SmallVector<Expr *, 8> AllArgs;
6547  bool Invalid = GatherArgumentsForCall(Loc, Constructor,
6548                                        Proto, 0, Args, NumArgs, AllArgs,
6549                                        CallType);
6550  for (unsigned i =0, size = AllArgs.size(); i < size; i++)
6551    ConvertedArgs.push_back(AllArgs[i]);
6552  return Invalid;
6553}
6554
6555static inline bool
6556CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
6557                                       const FunctionDecl *FnDecl) {
6558  const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
6559  if (isa<NamespaceDecl>(DC)) {
6560    return SemaRef.Diag(FnDecl->getLocation(),
6561                        diag::err_operator_new_delete_declared_in_namespace)
6562      << FnDecl->getDeclName();
6563  }
6564
6565  if (isa<TranslationUnitDecl>(DC) &&
6566      FnDecl->getStorageClass() == SC_Static) {
6567    return SemaRef.Diag(FnDecl->getLocation(),
6568                        diag::err_operator_new_delete_declared_static)
6569      << FnDecl->getDeclName();
6570  }
6571
6572  return false;
6573}
6574
6575static inline bool
6576CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
6577                            CanQualType ExpectedResultType,
6578                            CanQualType ExpectedFirstParamType,
6579                            unsigned DependentParamTypeDiag,
6580                            unsigned InvalidParamTypeDiag) {
6581  QualType ResultType =
6582    FnDecl->getType()->getAs<FunctionType>()->getResultType();
6583
6584  // Check that the result type is not dependent.
6585  if (ResultType->isDependentType())
6586    return SemaRef.Diag(FnDecl->getLocation(),
6587                        diag::err_operator_new_delete_dependent_result_type)
6588    << FnDecl->getDeclName() << ExpectedResultType;
6589
6590  // Check that the result type is what we expect.
6591  if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
6592    return SemaRef.Diag(FnDecl->getLocation(),
6593                        diag::err_operator_new_delete_invalid_result_type)
6594    << FnDecl->getDeclName() << ExpectedResultType;
6595
6596  // A function template must have at least 2 parameters.
6597  if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
6598    return SemaRef.Diag(FnDecl->getLocation(),
6599                      diag::err_operator_new_delete_template_too_few_parameters)
6600        << FnDecl->getDeclName();
6601
6602  // The function decl must have at least 1 parameter.
6603  if (FnDecl->getNumParams() == 0)
6604    return SemaRef.Diag(FnDecl->getLocation(),
6605                        diag::err_operator_new_delete_too_few_parameters)
6606      << FnDecl->getDeclName();
6607
6608  // Check the the first parameter type is not dependent.
6609  QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
6610  if (FirstParamType->isDependentType())
6611    return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
6612      << FnDecl->getDeclName() << ExpectedFirstParamType;
6613
6614  // Check that the first parameter type is what we expect.
6615  if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
6616      ExpectedFirstParamType)
6617    return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
6618    << FnDecl->getDeclName() << ExpectedFirstParamType;
6619
6620  return false;
6621}
6622
6623static bool
6624CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
6625  // C++ [basic.stc.dynamic.allocation]p1:
6626  //   A program is ill-formed if an allocation function is declared in a
6627  //   namespace scope other than global scope or declared static in global
6628  //   scope.
6629  if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
6630    return true;
6631
6632  CanQualType SizeTy =
6633    SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
6634
6635  // C++ [basic.stc.dynamic.allocation]p1:
6636  //  The return type shall be void*. The first parameter shall have type
6637  //  std::size_t.
6638  if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
6639                                  SizeTy,
6640                                  diag::err_operator_new_dependent_param_type,
6641                                  diag::err_operator_new_param_type))
6642    return true;
6643
6644  // C++ [basic.stc.dynamic.allocation]p1:
6645  //  The first parameter shall not have an associated default argument.
6646  if (FnDecl->getParamDecl(0)->hasDefaultArg())
6647    return SemaRef.Diag(FnDecl->getLocation(),
6648                        diag::err_operator_new_default_arg)
6649      << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
6650
6651  return false;
6652}
6653
6654static bool
6655CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
6656  // C++ [basic.stc.dynamic.deallocation]p1:
6657  //   A program is ill-formed if deallocation functions are declared in a
6658  //   namespace scope other than global scope or declared static in global
6659  //   scope.
6660  if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
6661    return true;
6662
6663  // C++ [basic.stc.dynamic.deallocation]p2:
6664  //   Each deallocation function shall return void and its first parameter
6665  //   shall be void*.
6666  if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
6667                                  SemaRef.Context.VoidPtrTy,
6668                                 diag::err_operator_delete_dependent_param_type,
6669                                 diag::err_operator_delete_param_type))
6670    return true;
6671
6672  return false;
6673}
6674
6675/// CheckOverloadedOperatorDeclaration - Check whether the declaration
6676/// of this overloaded operator is well-formed. If so, returns false;
6677/// otherwise, emits appropriate diagnostics and returns true.
6678bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
6679  assert(FnDecl && FnDecl->isOverloadedOperator() &&
6680         "Expected an overloaded operator declaration");
6681
6682  OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
6683
6684  // C++ [over.oper]p5:
6685  //   The allocation and deallocation functions, operator new,
6686  //   operator new[], operator delete and operator delete[], are
6687  //   described completely in 3.7.3. The attributes and restrictions
6688  //   found in the rest of this subclause do not apply to them unless
6689  //   explicitly stated in 3.7.3.
6690  if (Op == OO_Delete || Op == OO_Array_Delete)
6691    return CheckOperatorDeleteDeclaration(*this, FnDecl);
6692
6693  if (Op == OO_New || Op == OO_Array_New)
6694    return CheckOperatorNewDeclaration(*this, FnDecl);
6695
6696  // C++ [over.oper]p6:
6697  //   An operator function shall either be a non-static member
6698  //   function or be a non-member function and have at least one
6699  //   parameter whose type is a class, a reference to a class, an
6700  //   enumeration, or a reference to an enumeration.
6701  if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
6702    if (MethodDecl->isStatic())
6703      return Diag(FnDecl->getLocation(),
6704                  diag::err_operator_overload_static) << FnDecl->getDeclName();
6705  } else {
6706    bool ClassOrEnumParam = false;
6707    for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
6708                                   ParamEnd = FnDecl->param_end();
6709         Param != ParamEnd; ++Param) {
6710      QualType ParamType = (*Param)->getType().getNonReferenceType();
6711      if (ParamType->isDependentType() || ParamType->isRecordType() ||
6712          ParamType->isEnumeralType()) {
6713        ClassOrEnumParam = true;
6714        break;
6715      }
6716    }
6717
6718    if (!ClassOrEnumParam)
6719      return Diag(FnDecl->getLocation(),
6720                  diag::err_operator_overload_needs_class_or_enum)
6721        << FnDecl->getDeclName();
6722  }
6723
6724  // C++ [over.oper]p8:
6725  //   An operator function cannot have default arguments (8.3.6),
6726  //   except where explicitly stated below.
6727  //
6728  // Only the function-call operator allows default arguments
6729  // (C++ [over.call]p1).
6730  if (Op != OO_Call) {
6731    for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
6732         Param != FnDecl->param_end(); ++Param) {
6733      if ((*Param)->hasDefaultArg())
6734        return Diag((*Param)->getLocation(),
6735                    diag::err_operator_overload_default_arg)
6736          << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
6737    }
6738  }
6739
6740  static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
6741    { false, false, false }
6742#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
6743    , { Unary, Binary, MemberOnly }
6744#include "clang/Basic/OperatorKinds.def"
6745  };
6746
6747  bool CanBeUnaryOperator = OperatorUses[Op][0];
6748  bool CanBeBinaryOperator = OperatorUses[Op][1];
6749  bool MustBeMemberOperator = OperatorUses[Op][2];
6750
6751  // C++ [over.oper]p8:
6752  //   [...] Operator functions cannot have more or fewer parameters
6753  //   than the number required for the corresponding operator, as
6754  //   described in the rest of this subclause.
6755  unsigned NumParams = FnDecl->getNumParams()
6756                     + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
6757  if (Op != OO_Call &&
6758      ((NumParams == 1 && !CanBeUnaryOperator) ||
6759       (NumParams == 2 && !CanBeBinaryOperator) ||
6760       (NumParams < 1) || (NumParams > 2))) {
6761    // We have the wrong number of parameters.
6762    unsigned ErrorKind;
6763    if (CanBeUnaryOperator && CanBeBinaryOperator) {
6764      ErrorKind = 2;  // 2 -> unary or binary.
6765    } else if (CanBeUnaryOperator) {
6766      ErrorKind = 0;  // 0 -> unary
6767    } else {
6768      assert(CanBeBinaryOperator &&
6769             "All non-call overloaded operators are unary or binary!");
6770      ErrorKind = 1;  // 1 -> binary
6771    }
6772
6773    return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
6774      << FnDecl->getDeclName() << NumParams << ErrorKind;
6775  }
6776
6777  // Overloaded operators other than operator() cannot be variadic.
6778  if (Op != OO_Call &&
6779      FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
6780    return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
6781      << FnDecl->getDeclName();
6782  }
6783
6784  // Some operators must be non-static member functions.
6785  if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
6786    return Diag(FnDecl->getLocation(),
6787                diag::err_operator_overload_must_be_member)
6788      << FnDecl->getDeclName();
6789  }
6790
6791  // C++ [over.inc]p1:
6792  //   The user-defined function called operator++ implements the
6793  //   prefix and postfix ++ operator. If this function is a member
6794  //   function with no parameters, or a non-member function with one
6795  //   parameter of class or enumeration type, it defines the prefix
6796  //   increment operator ++ for objects of that type. If the function
6797  //   is a member function with one parameter (which shall be of type
6798  //   int) or a non-member function with two parameters (the second
6799  //   of which shall be of type int), it defines the postfix
6800  //   increment operator ++ for objects of that type.
6801  if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
6802    ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
6803    bool ParamIsInt = false;
6804    if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
6805      ParamIsInt = BT->getKind() == BuiltinType::Int;
6806
6807    if (!ParamIsInt)
6808      return Diag(LastParam->getLocation(),
6809                  diag::err_operator_overload_post_incdec_must_be_int)
6810        << LastParam->getType() << (Op == OO_MinusMinus);
6811  }
6812
6813  return false;
6814}
6815
6816/// CheckLiteralOperatorDeclaration - Check whether the declaration
6817/// of this literal operator function is well-formed. If so, returns
6818/// false; otherwise, emits appropriate diagnostics and returns true.
6819bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
6820  DeclContext *DC = FnDecl->getDeclContext();
6821  Decl::Kind Kind = DC->getDeclKind();
6822  if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
6823      Kind != Decl::LinkageSpec) {
6824    Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
6825      << FnDecl->getDeclName();
6826    return true;
6827  }
6828
6829  bool Valid = false;
6830
6831  // template <char...> type operator "" name() is the only valid template
6832  // signature, and the only valid signature with no parameters.
6833  if (FnDecl->param_size() == 0) {
6834    if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
6835      // Must have only one template parameter
6836      TemplateParameterList *Params = TpDecl->getTemplateParameters();
6837      if (Params->size() == 1) {
6838        NonTypeTemplateParmDecl *PmDecl =
6839          cast<NonTypeTemplateParmDecl>(Params->getParam(0));
6840
6841        // The template parameter must be a char parameter pack.
6842        if (PmDecl && PmDecl->isTemplateParameterPack() &&
6843            Context.hasSameType(PmDecl->getType(), Context.CharTy))
6844          Valid = true;
6845      }
6846    }
6847  } else {
6848    // Check the first parameter
6849    FunctionDecl::param_iterator Param = FnDecl->param_begin();
6850
6851    QualType T = (*Param)->getType();
6852
6853    // unsigned long long int, long double, and any character type are allowed
6854    // as the only parameters.
6855    if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
6856        Context.hasSameType(T, Context.LongDoubleTy) ||
6857        Context.hasSameType(T, Context.CharTy) ||
6858        Context.hasSameType(T, Context.WCharTy) ||
6859        Context.hasSameType(T, Context.Char16Ty) ||
6860        Context.hasSameType(T, Context.Char32Ty)) {
6861      if (++Param == FnDecl->param_end())
6862        Valid = true;
6863      goto FinishedParams;
6864    }
6865
6866    // Otherwise it must be a pointer to const; let's strip those qualifiers.
6867    const PointerType *PT = T->getAs<PointerType>();
6868    if (!PT)
6869      goto FinishedParams;
6870    T = PT->getPointeeType();
6871    if (!T.isConstQualified())
6872      goto FinishedParams;
6873    T = T.getUnqualifiedType();
6874
6875    // Move on to the second parameter;
6876    ++Param;
6877
6878    // If there is no second parameter, the first must be a const char *
6879    if (Param == FnDecl->param_end()) {
6880      if (Context.hasSameType(T, Context.CharTy))
6881        Valid = true;
6882      goto FinishedParams;
6883    }
6884
6885    // const char *, const wchar_t*, const char16_t*, and const char32_t*
6886    // are allowed as the first parameter to a two-parameter function
6887    if (!(Context.hasSameType(T, Context.CharTy) ||
6888          Context.hasSameType(T, Context.WCharTy) ||
6889          Context.hasSameType(T, Context.Char16Ty) ||
6890          Context.hasSameType(T, Context.Char32Ty)))
6891      goto FinishedParams;
6892
6893    // The second and final parameter must be an std::size_t
6894    T = (*Param)->getType().getUnqualifiedType();
6895    if (Context.hasSameType(T, Context.getSizeType()) &&
6896        ++Param == FnDecl->param_end())
6897      Valid = true;
6898  }
6899
6900  // FIXME: This diagnostic is absolutely terrible.
6901FinishedParams:
6902  if (!Valid) {
6903    Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
6904      << FnDecl->getDeclName();
6905    return true;
6906  }
6907
6908  return false;
6909}
6910
6911/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
6912/// linkage specification, including the language and (if present)
6913/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
6914/// the location of the language string literal, which is provided
6915/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
6916/// the '{' brace. Otherwise, this linkage specification does not
6917/// have any braces.
6918Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
6919                                           SourceLocation LangLoc,
6920                                           llvm::StringRef Lang,
6921                                           SourceLocation LBraceLoc) {
6922  LinkageSpecDecl::LanguageIDs Language;
6923  if (Lang == "\"C\"")
6924    Language = LinkageSpecDecl::lang_c;
6925  else if (Lang == "\"C++\"")
6926    Language = LinkageSpecDecl::lang_cxx;
6927  else {
6928    Diag(LangLoc, diag::err_bad_language);
6929    return 0;
6930  }
6931
6932  // FIXME: Add all the various semantics of linkage specifications
6933
6934  LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
6935                                               ExternLoc, LangLoc, Language);
6936  CurContext->addDecl(D);
6937  PushDeclContext(S, D);
6938  return D;
6939}
6940
6941/// ActOnFinishLinkageSpecification - Complete the definition of
6942/// the C++ linkage specification LinkageSpec. If RBraceLoc is
6943/// valid, it's the position of the closing '}' brace in a linkage
6944/// specification that uses braces.
6945Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
6946                                            Decl *LinkageSpec,
6947                                            SourceLocation RBraceLoc) {
6948  if (LinkageSpec) {
6949    if (RBraceLoc.isValid()) {
6950      LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
6951      LSDecl->setRBraceLoc(RBraceLoc);
6952    }
6953    PopDeclContext();
6954  }
6955  return LinkageSpec;
6956}
6957
6958/// \brief Perform semantic analysis for the variable declaration that
6959/// occurs within a C++ catch clause, returning the newly-created
6960/// variable.
6961VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
6962                                         TypeSourceInfo *TInfo,
6963                                         SourceLocation StartLoc,
6964                                         SourceLocation Loc,
6965                                         IdentifierInfo *Name) {
6966  bool Invalid = false;
6967  QualType ExDeclType = TInfo->getType();
6968
6969  // Arrays and functions decay.
6970  if (ExDeclType->isArrayType())
6971    ExDeclType = Context.getArrayDecayedType(ExDeclType);
6972  else if (ExDeclType->isFunctionType())
6973    ExDeclType = Context.getPointerType(ExDeclType);
6974
6975  // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
6976  // The exception-declaration shall not denote a pointer or reference to an
6977  // incomplete type, other than [cv] void*.
6978  // N2844 forbids rvalue references.
6979  if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
6980    Diag(Loc, diag::err_catch_rvalue_ref);
6981    Invalid = true;
6982  }
6983
6984  // GCC allows catching pointers and references to incomplete types
6985  // as an extension; so do we, but we warn by default.
6986
6987  QualType BaseType = ExDeclType;
6988  int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
6989  unsigned DK = diag::err_catch_incomplete;
6990  bool IncompleteCatchIsInvalid = true;
6991  if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
6992    BaseType = Ptr->getPointeeType();
6993    Mode = 1;
6994    DK = diag::ext_catch_incomplete_ptr;
6995    IncompleteCatchIsInvalid = false;
6996  } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
6997    // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
6998    BaseType = Ref->getPointeeType();
6999    Mode = 2;
7000    DK = diag::ext_catch_incomplete_ref;
7001    IncompleteCatchIsInvalid = false;
7002  }
7003  if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
7004      !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
7005      IncompleteCatchIsInvalid)
7006    Invalid = true;
7007
7008  if (!Invalid && !ExDeclType->isDependentType() &&
7009      RequireNonAbstractType(Loc, ExDeclType,
7010                             diag::err_abstract_type_in_decl,
7011                             AbstractVariableType))
7012    Invalid = true;
7013
7014  // Only the non-fragile NeXT runtime currently supports C++ catches
7015  // of ObjC types, and no runtime supports catching ObjC types by value.
7016  if (!Invalid && getLangOptions().ObjC1) {
7017    QualType T = ExDeclType;
7018    if (const ReferenceType *RT = T->getAs<ReferenceType>())
7019      T = RT->getPointeeType();
7020
7021    if (T->isObjCObjectType()) {
7022      Diag(Loc, diag::err_objc_object_catch);
7023      Invalid = true;
7024    } else if (T->isObjCObjectPointerType()) {
7025      if (!getLangOptions().ObjCNonFragileABI) {
7026        Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
7027        Invalid = true;
7028      }
7029    }
7030  }
7031
7032  VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
7033                                    ExDeclType, TInfo, SC_None, SC_None);
7034  ExDecl->setExceptionVariable(true);
7035
7036  if (!Invalid) {
7037    if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
7038      // C++ [except.handle]p16:
7039      //   The object declared in an exception-declaration or, if the
7040      //   exception-declaration does not specify a name, a temporary (12.2) is
7041      //   copy-initialized (8.5) from the exception object. [...]
7042      //   The object is destroyed when the handler exits, after the destruction
7043      //   of any automatic objects initialized within the handler.
7044      //
7045      // We just pretend to initialize the object with itself, then make sure
7046      // it can be destroyed later.
7047      QualType initType = ExDeclType;
7048
7049      InitializedEntity entity =
7050        InitializedEntity::InitializeVariable(ExDecl);
7051      InitializationKind initKind =
7052        InitializationKind::CreateCopy(Loc, SourceLocation());
7053
7054      Expr *opaqueValue =
7055        new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
7056      InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
7057      ExprResult result = sequence.Perform(*this, entity, initKind,
7058                                           MultiExprArg(&opaqueValue, 1));
7059      if (result.isInvalid())
7060        Invalid = true;
7061      else {
7062        // If the constructor used was non-trivial, set this as the
7063        // "initializer".
7064        CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
7065        if (!construct->getConstructor()->isTrivial()) {
7066          Expr *init = MaybeCreateExprWithCleanups(construct);
7067          ExDecl->setInit(init);
7068        }
7069
7070        // And make sure it's destructable.
7071        FinalizeVarWithDestructor(ExDecl, recordType);
7072      }
7073    }
7074  }
7075
7076  if (Invalid)
7077    ExDecl->setInvalidDecl();
7078
7079  return ExDecl;
7080}
7081
7082/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
7083/// handler.
7084Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
7085  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
7086  bool Invalid = D.isInvalidType();
7087
7088  // Check for unexpanded parameter packs.
7089  if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
7090                                               UPPC_ExceptionType)) {
7091    TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
7092                                             D.getIdentifierLoc());
7093    Invalid = true;
7094  }
7095
7096  IdentifierInfo *II = D.getIdentifier();
7097  if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
7098                                             LookupOrdinaryName,
7099                                             ForRedeclaration)) {
7100    // The scope should be freshly made just for us. There is just no way
7101    // it contains any previous declaration.
7102    assert(!S->isDeclScope(PrevDecl));
7103    if (PrevDecl->isTemplateParameter()) {
7104      // Maybe we will complain about the shadowed template parameter.
7105      DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
7106    }
7107  }
7108
7109  if (D.getCXXScopeSpec().isSet() && !Invalid) {
7110    Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
7111      << D.getCXXScopeSpec().getRange();
7112    Invalid = true;
7113  }
7114
7115  VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
7116                                              D.getSourceRange().getBegin(),
7117                                              D.getIdentifierLoc(),
7118                                              D.getIdentifier());
7119  if (Invalid)
7120    ExDecl->setInvalidDecl();
7121
7122  // Add the exception declaration into this scope.
7123  if (II)
7124    PushOnScopeChains(ExDecl, S);
7125  else
7126    CurContext->addDecl(ExDecl);
7127
7128  ProcessDeclAttributes(S, ExDecl, D);
7129  return ExDecl;
7130}
7131
7132Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
7133                                         Expr *AssertExpr,
7134                                         Expr *AssertMessageExpr_,
7135                                         SourceLocation RParenLoc) {
7136  StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
7137
7138  if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
7139    llvm::APSInt Value(32);
7140    if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
7141      Diag(StaticAssertLoc,
7142           diag::err_static_assert_expression_is_not_constant) <<
7143        AssertExpr->getSourceRange();
7144      return 0;
7145    }
7146
7147    if (Value == 0) {
7148      Diag(StaticAssertLoc, diag::err_static_assert_failed)
7149        << AssertMessage->getString() << AssertExpr->getSourceRange();
7150    }
7151  }
7152
7153  if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
7154    return 0;
7155
7156  Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
7157                                        AssertExpr, AssertMessage, RParenLoc);
7158
7159  CurContext->addDecl(Decl);
7160  return Decl;
7161}
7162
7163/// \brief Perform semantic analysis of the given friend type declaration.
7164///
7165/// \returns A friend declaration that.
7166FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
7167                                      TypeSourceInfo *TSInfo) {
7168  assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
7169
7170  QualType T = TSInfo->getType();
7171  SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
7172
7173  if (!getLangOptions().CPlusPlus0x) {
7174    // C++03 [class.friend]p2:
7175    //   An elaborated-type-specifier shall be used in a friend declaration
7176    //   for a class.*
7177    //
7178    //   * The class-key of the elaborated-type-specifier is required.
7179    if (!ActiveTemplateInstantiations.empty()) {
7180      // Do not complain about the form of friend template types during
7181      // template instantiation; we will already have complained when the
7182      // template was declared.
7183    } else if (!T->isElaboratedTypeSpecifier()) {
7184      // If we evaluated the type to a record type, suggest putting
7185      // a tag in front.
7186      if (const RecordType *RT = T->getAs<RecordType>()) {
7187        RecordDecl *RD = RT->getDecl();
7188
7189        std::string InsertionText = std::string(" ") + RD->getKindName();
7190
7191        Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
7192          << (unsigned) RD->getTagKind()
7193          << T
7194          << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
7195                                        InsertionText);
7196      } else {
7197        Diag(FriendLoc, diag::ext_nonclass_type_friend)
7198          << T
7199          << SourceRange(FriendLoc, TypeRange.getEnd());
7200      }
7201    } else if (T->getAs<EnumType>()) {
7202      Diag(FriendLoc, diag::ext_enum_friend)
7203        << T
7204        << SourceRange(FriendLoc, TypeRange.getEnd());
7205    }
7206  }
7207
7208  // C++0x [class.friend]p3:
7209  //   If the type specifier in a friend declaration designates a (possibly
7210  //   cv-qualified) class type, that class is declared as a friend; otherwise,
7211  //   the friend declaration is ignored.
7212
7213  // FIXME: C++0x has some syntactic restrictions on friend type declarations
7214  // in [class.friend]p3 that we do not implement.
7215
7216  return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
7217}
7218
7219/// Handle a friend tag declaration where the scope specifier was
7220/// templated.
7221Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
7222                                    unsigned TagSpec, SourceLocation TagLoc,
7223                                    CXXScopeSpec &SS,
7224                                    IdentifierInfo *Name, SourceLocation NameLoc,
7225                                    AttributeList *Attr,
7226                                    MultiTemplateParamsArg TempParamLists) {
7227  TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
7228
7229  bool isExplicitSpecialization = false;
7230  bool Invalid = false;
7231
7232  if (TemplateParameterList *TemplateParams
7233        = MatchTemplateParametersToScopeSpecifier(TagLoc, SS,
7234                                                  TempParamLists.get(),
7235                                                  TempParamLists.size(),
7236                                                  /*friend*/ true,
7237                                                  isExplicitSpecialization,
7238                                                  Invalid)) {
7239    if (TemplateParams->size() > 0) {
7240      // This is a declaration of a class template.
7241      if (Invalid)
7242        return 0;
7243
7244      return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
7245                                SS, Name, NameLoc, Attr,
7246                                TemplateParams, AS_public,
7247                                TempParamLists.size() - 1,
7248                   (TemplateParameterList**) TempParamLists.release()).take();
7249    } else {
7250      // The "template<>" header is extraneous.
7251      Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
7252        << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
7253      isExplicitSpecialization = true;
7254    }
7255  }
7256
7257  if (Invalid) return 0;
7258
7259  assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
7260
7261  bool isAllExplicitSpecializations = true;
7262  for (unsigned I = TempParamLists.size(); I-- > 0; ) {
7263    if (TempParamLists.get()[I]->size()) {
7264      isAllExplicitSpecializations = false;
7265      break;
7266    }
7267  }
7268
7269  // FIXME: don't ignore attributes.
7270
7271  // If it's explicit specializations all the way down, just forget
7272  // about the template header and build an appropriate non-templated
7273  // friend.  TODO: for source fidelity, remember the headers.
7274  if (isAllExplicitSpecializations) {
7275    NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
7276    ElaboratedTypeKeyword Keyword
7277      = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
7278    QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
7279                                   *Name, NameLoc);
7280    if (T.isNull())
7281      return 0;
7282
7283    TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
7284    if (isa<DependentNameType>(T)) {
7285      DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
7286      TL.setKeywordLoc(TagLoc);
7287      TL.setQualifierLoc(QualifierLoc);
7288      TL.setNameLoc(NameLoc);
7289    } else {
7290      ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
7291      TL.setKeywordLoc(TagLoc);
7292      TL.setQualifierLoc(QualifierLoc);
7293      cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
7294    }
7295
7296    FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
7297                                            TSI, FriendLoc);
7298    Friend->setAccess(AS_public);
7299    CurContext->addDecl(Friend);
7300    return Friend;
7301  }
7302
7303  // Handle the case of a templated-scope friend class.  e.g.
7304  //   template <class T> class A<T>::B;
7305  // FIXME: we don't support these right now.
7306  ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
7307  QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
7308  TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
7309  DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
7310  TL.setKeywordLoc(TagLoc);
7311  TL.setQualifierLoc(SS.getWithLocInContext(Context));
7312  TL.setNameLoc(NameLoc);
7313
7314  FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
7315                                          TSI, FriendLoc);
7316  Friend->setAccess(AS_public);
7317  Friend->setUnsupportedFriend(true);
7318  CurContext->addDecl(Friend);
7319  return Friend;
7320}
7321
7322
7323/// Handle a friend type declaration.  This works in tandem with
7324/// ActOnTag.
7325///
7326/// Notes on friend class templates:
7327///
7328/// We generally treat friend class declarations as if they were
7329/// declaring a class.  So, for example, the elaborated type specifier
7330/// in a friend declaration is required to obey the restrictions of a
7331/// class-head (i.e. no typedefs in the scope chain), template
7332/// parameters are required to match up with simple template-ids, &c.
7333/// However, unlike when declaring a template specialization, it's
7334/// okay to refer to a template specialization without an empty
7335/// template parameter declaration, e.g.
7336///   friend class A<T>::B<unsigned>;
7337/// We permit this as a special case; if there are any template
7338/// parameters present at all, require proper matching, i.e.
7339///   template <> template <class T> friend class A<int>::B;
7340Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
7341                                MultiTemplateParamsArg TempParams) {
7342  SourceLocation Loc = DS.getSourceRange().getBegin();
7343
7344  assert(DS.isFriendSpecified());
7345  assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
7346
7347  // Try to convert the decl specifier to a type.  This works for
7348  // friend templates because ActOnTag never produces a ClassTemplateDecl
7349  // for a TUK_Friend.
7350  Declarator TheDeclarator(DS, Declarator::MemberContext);
7351  TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
7352  QualType T = TSI->getType();
7353  if (TheDeclarator.isInvalidType())
7354    return 0;
7355
7356  if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
7357    return 0;
7358
7359  // This is definitely an error in C++98.  It's probably meant to
7360  // be forbidden in C++0x, too, but the specification is just
7361  // poorly written.
7362  //
7363  // The problem is with declarations like the following:
7364  //   template <T> friend A<T>::foo;
7365  // where deciding whether a class C is a friend or not now hinges
7366  // on whether there exists an instantiation of A that causes
7367  // 'foo' to equal C.  There are restrictions on class-heads
7368  // (which we declare (by fiat) elaborated friend declarations to
7369  // be) that makes this tractable.
7370  //
7371  // FIXME: handle "template <> friend class A<T>;", which
7372  // is possibly well-formed?  Who even knows?
7373  if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
7374    Diag(Loc, diag::err_tagless_friend_type_template)
7375      << DS.getSourceRange();
7376    return 0;
7377  }
7378
7379  // C++98 [class.friend]p1: A friend of a class is a function
7380  //   or class that is not a member of the class . . .
7381  // This is fixed in DR77, which just barely didn't make the C++03
7382  // deadline.  It's also a very silly restriction that seriously
7383  // affects inner classes and which nobody else seems to implement;
7384  // thus we never diagnose it, not even in -pedantic.
7385  //
7386  // But note that we could warn about it: it's always useless to
7387  // friend one of your own members (it's not, however, worthless to
7388  // friend a member of an arbitrary specialization of your template).
7389
7390  Decl *D;
7391  if (unsigned NumTempParamLists = TempParams.size())
7392    D = FriendTemplateDecl::Create(Context, CurContext, Loc,
7393                                   NumTempParamLists,
7394                                   TempParams.release(),
7395                                   TSI,
7396                                   DS.getFriendSpecLoc());
7397  else
7398    D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
7399
7400  if (!D)
7401    return 0;
7402
7403  D->setAccess(AS_public);
7404  CurContext->addDecl(D);
7405
7406  return D;
7407}
7408
7409Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, bool IsDefinition,
7410                                    MultiTemplateParamsArg TemplateParams) {
7411  const DeclSpec &DS = D.getDeclSpec();
7412
7413  assert(DS.isFriendSpecified());
7414  assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
7415
7416  SourceLocation Loc = D.getIdentifierLoc();
7417  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
7418  QualType T = TInfo->getType();
7419
7420  // C++ [class.friend]p1
7421  //   A friend of a class is a function or class....
7422  // Note that this sees through typedefs, which is intended.
7423  // It *doesn't* see through dependent types, which is correct
7424  // according to [temp.arg.type]p3:
7425  //   If a declaration acquires a function type through a
7426  //   type dependent on a template-parameter and this causes
7427  //   a declaration that does not use the syntactic form of a
7428  //   function declarator to have a function type, the program
7429  //   is ill-formed.
7430  if (!T->isFunctionType()) {
7431    Diag(Loc, diag::err_unexpected_friend);
7432
7433    // It might be worthwhile to try to recover by creating an
7434    // appropriate declaration.
7435    return 0;
7436  }
7437
7438  // C++ [namespace.memdef]p3
7439  //  - If a friend declaration in a non-local class first declares a
7440  //    class or function, the friend class or function is a member
7441  //    of the innermost enclosing namespace.
7442  //  - The name of the friend is not found by simple name lookup
7443  //    until a matching declaration is provided in that namespace
7444  //    scope (either before or after the class declaration granting
7445  //    friendship).
7446  //  - If a friend function is called, its name may be found by the
7447  //    name lookup that considers functions from namespaces and
7448  //    classes associated with the types of the function arguments.
7449  //  - When looking for a prior declaration of a class or a function
7450  //    declared as a friend, scopes outside the innermost enclosing
7451  //    namespace scope are not considered.
7452
7453  CXXScopeSpec &SS = D.getCXXScopeSpec();
7454  DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7455  DeclarationName Name = NameInfo.getName();
7456  assert(Name);
7457
7458  // Check for unexpanded parameter packs.
7459  if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
7460      DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
7461      DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
7462    return 0;
7463
7464  // The context we found the declaration in, or in which we should
7465  // create the declaration.
7466  DeclContext *DC;
7467  Scope *DCScope = S;
7468  LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
7469                        ForRedeclaration);
7470
7471  // FIXME: there are different rules in local classes
7472
7473  // There are four cases here.
7474  //   - There's no scope specifier, in which case we just go to the
7475  //     appropriate scope and look for a function or function template
7476  //     there as appropriate.
7477  // Recover from invalid scope qualifiers as if they just weren't there.
7478  if (SS.isInvalid() || !SS.isSet()) {
7479    // C++0x [namespace.memdef]p3:
7480    //   If the name in a friend declaration is neither qualified nor
7481    //   a template-id and the declaration is a function or an
7482    //   elaborated-type-specifier, the lookup to determine whether
7483    //   the entity has been previously declared shall not consider
7484    //   any scopes outside the innermost enclosing namespace.
7485    // C++0x [class.friend]p11:
7486    //   If a friend declaration appears in a local class and the name
7487    //   specified is an unqualified name, a prior declaration is
7488    //   looked up without considering scopes that are outside the
7489    //   innermost enclosing non-class scope. For a friend function
7490    //   declaration, if there is no prior declaration, the program is
7491    //   ill-formed.
7492    bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
7493    bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
7494
7495    // Find the appropriate context according to the above.
7496    DC = CurContext;
7497    while (true) {
7498      // Skip class contexts.  If someone can cite chapter and verse
7499      // for this behavior, that would be nice --- it's what GCC and
7500      // EDG do, and it seems like a reasonable intent, but the spec
7501      // really only says that checks for unqualified existing
7502      // declarations should stop at the nearest enclosing namespace,
7503      // not that they should only consider the nearest enclosing
7504      // namespace.
7505      while (DC->isRecord())
7506        DC = DC->getParent();
7507
7508      LookupQualifiedName(Previous, DC);
7509
7510      // TODO: decide what we think about using declarations.
7511      if (isLocal || !Previous.empty())
7512        break;
7513
7514      if (isTemplateId) {
7515        if (isa<TranslationUnitDecl>(DC)) break;
7516      } else {
7517        if (DC->isFileContext()) break;
7518      }
7519      DC = DC->getParent();
7520    }
7521
7522    // C++ [class.friend]p1: A friend of a class is a function or
7523    //   class that is not a member of the class . . .
7524    // C++0x changes this for both friend types and functions.
7525    // Most C++ 98 compilers do seem to give an error here, so
7526    // we do, too.
7527    if (!Previous.empty() && DC->Equals(CurContext)
7528        && !getLangOptions().CPlusPlus0x)
7529      Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
7530
7531    DCScope = getScopeForDeclContext(S, DC);
7532
7533  //   - There's a non-dependent scope specifier, in which case we
7534  //     compute it and do a previous lookup there for a function
7535  //     or function template.
7536  } else if (!SS.getScopeRep()->isDependent()) {
7537    DC = computeDeclContext(SS);
7538    if (!DC) return 0;
7539
7540    if (RequireCompleteDeclContext(SS, DC)) return 0;
7541
7542    LookupQualifiedName(Previous, DC);
7543
7544    // Ignore things found implicitly in the wrong scope.
7545    // TODO: better diagnostics for this case.  Suggesting the right
7546    // qualified scope would be nice...
7547    LookupResult::Filter F = Previous.makeFilter();
7548    while (F.hasNext()) {
7549      NamedDecl *D = F.next();
7550      if (!DC->InEnclosingNamespaceSetOf(
7551              D->getDeclContext()->getRedeclContext()))
7552        F.erase();
7553    }
7554    F.done();
7555
7556    if (Previous.empty()) {
7557      D.setInvalidType();
7558      Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
7559      return 0;
7560    }
7561
7562    // C++ [class.friend]p1: A friend of a class is a function or
7563    //   class that is not a member of the class . . .
7564    if (DC->Equals(CurContext))
7565      Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
7566
7567  //   - There's a scope specifier that does not match any template
7568  //     parameter lists, in which case we use some arbitrary context,
7569  //     create a method or method template, and wait for instantiation.
7570  //   - There's a scope specifier that does match some template
7571  //     parameter lists, which we don't handle right now.
7572  } else {
7573    DC = CurContext;
7574    assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
7575  }
7576
7577  if (!DC->isRecord()) {
7578    // This implies that it has to be an operator or function.
7579    if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
7580        D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
7581        D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
7582      Diag(Loc, diag::err_introducing_special_friend) <<
7583        (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
7584         D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
7585      return 0;
7586    }
7587  }
7588
7589  bool Redeclaration = false;
7590  NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, T, TInfo, Previous,
7591                                          move(TemplateParams),
7592                                          IsDefinition,
7593                                          Redeclaration);
7594  if (!ND) return 0;
7595
7596  assert(ND->getDeclContext() == DC);
7597  assert(ND->getLexicalDeclContext() == CurContext);
7598
7599  // Add the function declaration to the appropriate lookup tables,
7600  // adjusting the redeclarations list as necessary.  We don't
7601  // want to do this yet if the friending class is dependent.
7602  //
7603  // Also update the scope-based lookup if the target context's
7604  // lookup context is in lexical scope.
7605  if (!CurContext->isDependentContext()) {
7606    DC = DC->getRedeclContext();
7607    DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
7608    if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
7609      PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
7610  }
7611
7612  FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
7613                                       D.getIdentifierLoc(), ND,
7614                                       DS.getFriendSpecLoc());
7615  FrD->setAccess(AS_public);
7616  CurContext->addDecl(FrD);
7617
7618  if (ND->isInvalidDecl())
7619    FrD->setInvalidDecl();
7620  else {
7621    FunctionDecl *FD;
7622    if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
7623      FD = FTD->getTemplatedDecl();
7624    else
7625      FD = cast<FunctionDecl>(ND);
7626
7627    // Mark templated-scope function declarations as unsupported.
7628    if (FD->getNumTemplateParameterLists())
7629      FrD->setUnsupportedFriend(true);
7630  }
7631
7632  return ND;
7633}
7634
7635void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
7636  AdjustDeclIfTemplate(Dcl);
7637
7638  FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
7639  if (!Fn) {
7640    Diag(DelLoc, diag::err_deleted_non_function);
7641    return;
7642  }
7643  if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
7644    Diag(DelLoc, diag::err_deleted_decl_not_first);
7645    Diag(Prev->getLocation(), diag::note_previous_declaration);
7646    // If the declaration wasn't the first, we delete the function anyway for
7647    // recovery.
7648  }
7649  Fn->setDeletedAsWritten();
7650}
7651
7652static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
7653  for (Stmt::child_range CI = S->children(); CI; ++CI) {
7654    Stmt *SubStmt = *CI;
7655    if (!SubStmt)
7656      continue;
7657    if (isa<ReturnStmt>(SubStmt))
7658      Self.Diag(SubStmt->getSourceRange().getBegin(),
7659           diag::err_return_in_constructor_handler);
7660    if (!isa<Expr>(SubStmt))
7661      SearchForReturnInStmt(Self, SubStmt);
7662  }
7663}
7664
7665void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
7666  for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
7667    CXXCatchStmt *Handler = TryBlock->getHandler(I);
7668    SearchForReturnInStmt(*this, Handler);
7669  }
7670}
7671
7672bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
7673                                             const CXXMethodDecl *Old) {
7674  QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
7675  QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
7676
7677  if (Context.hasSameType(NewTy, OldTy) ||
7678      NewTy->isDependentType() || OldTy->isDependentType())
7679    return false;
7680
7681  // Check if the return types are covariant
7682  QualType NewClassTy, OldClassTy;
7683
7684  /// Both types must be pointers or references to classes.
7685  if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
7686    if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
7687      NewClassTy = NewPT->getPointeeType();
7688      OldClassTy = OldPT->getPointeeType();
7689    }
7690  } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
7691    if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
7692      if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
7693        NewClassTy = NewRT->getPointeeType();
7694        OldClassTy = OldRT->getPointeeType();
7695      }
7696    }
7697  }
7698
7699  // The return types aren't either both pointers or references to a class type.
7700  if (NewClassTy.isNull()) {
7701    Diag(New->getLocation(),
7702         diag::err_different_return_type_for_overriding_virtual_function)
7703      << New->getDeclName() << NewTy << OldTy;
7704    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7705
7706    return true;
7707  }
7708
7709  // C++ [class.virtual]p6:
7710  //   If the return type of D::f differs from the return type of B::f, the
7711  //   class type in the return type of D::f shall be complete at the point of
7712  //   declaration of D::f or shall be the class type D.
7713  if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
7714    if (!RT->isBeingDefined() &&
7715        RequireCompleteType(New->getLocation(), NewClassTy,
7716                            PDiag(diag::err_covariant_return_incomplete)
7717                              << New->getDeclName()))
7718    return true;
7719  }
7720
7721  if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
7722    // Check if the new class derives from the old class.
7723    if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
7724      Diag(New->getLocation(),
7725           diag::err_covariant_return_not_derived)
7726      << New->getDeclName() << NewTy << OldTy;
7727      Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7728      return true;
7729    }
7730
7731    // Check if we the conversion from derived to base is valid.
7732    if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
7733                    diag::err_covariant_return_inaccessible_base,
7734                    diag::err_covariant_return_ambiguous_derived_to_base_conv,
7735                    // FIXME: Should this point to the return type?
7736                    New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
7737      // FIXME: this note won't trigger for delayed access control
7738      // diagnostics, and it's impossible to get an undelayed error
7739      // here from access control during the original parse because
7740      // the ParsingDeclSpec/ParsingDeclarator are still in scope.
7741      Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7742      return true;
7743    }
7744  }
7745
7746  // The qualifiers of the return types must be the same.
7747  if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
7748    Diag(New->getLocation(),
7749         diag::err_covariant_return_type_different_qualifications)
7750    << New->getDeclName() << NewTy << OldTy;
7751    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7752    return true;
7753  };
7754
7755
7756  // The new class type must have the same or less qualifiers as the old type.
7757  if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
7758    Diag(New->getLocation(),
7759         diag::err_covariant_return_type_class_type_more_qualified)
7760    << New->getDeclName() << NewTy << OldTy;
7761    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7762    return true;
7763  };
7764
7765  return false;
7766}
7767
7768/// \brief Mark the given method pure.
7769///
7770/// \param Method the method to be marked pure.
7771///
7772/// \param InitRange the source range that covers the "0" initializer.
7773bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
7774  SourceLocation EndLoc = InitRange.getEnd();
7775  if (EndLoc.isValid())
7776    Method->setRangeEnd(EndLoc);
7777
7778  if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
7779    Method->setPure();
7780    return false;
7781  }
7782
7783  if (!Method->isInvalidDecl())
7784    Diag(Method->getLocation(), diag::err_non_virtual_pure)
7785      << Method->getDeclName() << InitRange;
7786  return true;
7787}
7788
7789/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
7790/// an initializer for the out-of-line declaration 'Dcl'.  The scope
7791/// is a fresh scope pushed for just this purpose.
7792///
7793/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
7794/// static data member of class X, names should be looked up in the scope of
7795/// class X.
7796void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
7797  // If there is no declaration, there was an error parsing it.
7798  if (D == 0 || D->isInvalidDecl()) return;
7799
7800  // We should only get called for declarations with scope specifiers, like:
7801  //   int foo::bar;
7802  assert(D->isOutOfLine());
7803  EnterDeclaratorContext(S, D->getDeclContext());
7804}
7805
7806/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
7807/// initializer for the out-of-line declaration 'D'.
7808void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
7809  // If there is no declaration, there was an error parsing it.
7810  if (D == 0 || D->isInvalidDecl()) return;
7811
7812  assert(D->isOutOfLine());
7813  ExitDeclaratorContext(S);
7814}
7815
7816/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
7817/// C++ if/switch/while/for statement.
7818/// e.g: "if (int x = f()) {...}"
7819DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
7820  // C++ 6.4p2:
7821  // The declarator shall not specify a function or an array.
7822  // The type-specifier-seq shall not contain typedef and shall not declare a
7823  // new class or enumeration.
7824  assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
7825         "Parser allowed 'typedef' as storage class of condition decl.");
7826
7827  TagDecl *OwnedTag = 0;
7828  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
7829  QualType Ty = TInfo->getType();
7830
7831  if (Ty->isFunctionType()) { // The declarator shall not specify a function...
7832                              // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
7833                              // would be created and CXXConditionDeclExpr wants a VarDecl.
7834    Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
7835      << D.getSourceRange();
7836    return DeclResult();
7837  } else if (OwnedTag && OwnedTag->isDefinition()) {
7838    // The type-specifier-seq shall not declare a new class or enumeration.
7839    Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
7840  }
7841
7842  Decl *Dcl = ActOnDeclarator(S, D);
7843  if (!Dcl)
7844    return DeclResult();
7845
7846  return Dcl;
7847}
7848
7849void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
7850                          bool DefinitionRequired) {
7851  // Ignore any vtable uses in unevaluated operands or for classes that do
7852  // not have a vtable.
7853  if (!Class->isDynamicClass() || Class->isDependentContext() ||
7854      CurContext->isDependentContext() ||
7855      ExprEvalContexts.back().Context == Unevaluated)
7856    return;
7857
7858  // Try to insert this class into the map.
7859  Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
7860  std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
7861    Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
7862  if (!Pos.second) {
7863    // If we already had an entry, check to see if we are promoting this vtable
7864    // to required a definition. If so, we need to reappend to the VTableUses
7865    // list, since we may have already processed the first entry.
7866    if (DefinitionRequired && !Pos.first->second) {
7867      Pos.first->second = true;
7868    } else {
7869      // Otherwise, we can early exit.
7870      return;
7871    }
7872  }
7873
7874  // Local classes need to have their virtual members marked
7875  // immediately. For all other classes, we mark their virtual members
7876  // at the end of the translation unit.
7877  if (Class->isLocalClass())
7878    MarkVirtualMembersReferenced(Loc, Class);
7879  else
7880    VTableUses.push_back(std::make_pair(Class, Loc));
7881}
7882
7883bool Sema::DefineUsedVTables() {
7884  if (VTableUses.empty())
7885    return false;
7886
7887  // Note: The VTableUses vector could grow as a result of marking
7888  // the members of a class as "used", so we check the size each
7889  // time through the loop and prefer indices (with are stable) to
7890  // iterators (which are not).
7891  bool DefinedAnything = false;
7892  for (unsigned I = 0; I != VTableUses.size(); ++I) {
7893    CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
7894    if (!Class)
7895      continue;
7896
7897    SourceLocation Loc = VTableUses[I].second;
7898
7899    // If this class has a key function, but that key function is
7900    // defined in another translation unit, we don't need to emit the
7901    // vtable even though we're using it.
7902    const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
7903    if (KeyFunction && !KeyFunction->hasBody()) {
7904      switch (KeyFunction->getTemplateSpecializationKind()) {
7905      case TSK_Undeclared:
7906      case TSK_ExplicitSpecialization:
7907      case TSK_ExplicitInstantiationDeclaration:
7908        // The key function is in another translation unit.
7909        continue;
7910
7911      case TSK_ExplicitInstantiationDefinition:
7912      case TSK_ImplicitInstantiation:
7913        // We will be instantiating the key function.
7914        break;
7915      }
7916    } else if (!KeyFunction) {
7917      // If we have a class with no key function that is the subject
7918      // of an explicit instantiation declaration, suppress the
7919      // vtable; it will live with the explicit instantiation
7920      // definition.
7921      bool IsExplicitInstantiationDeclaration
7922        = Class->getTemplateSpecializationKind()
7923                                      == TSK_ExplicitInstantiationDeclaration;
7924      for (TagDecl::redecl_iterator R = Class->redecls_begin(),
7925                                 REnd = Class->redecls_end();
7926           R != REnd; ++R) {
7927        TemplateSpecializationKind TSK
7928          = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
7929        if (TSK == TSK_ExplicitInstantiationDeclaration)
7930          IsExplicitInstantiationDeclaration = true;
7931        else if (TSK == TSK_ExplicitInstantiationDefinition) {
7932          IsExplicitInstantiationDeclaration = false;
7933          break;
7934        }
7935      }
7936
7937      if (IsExplicitInstantiationDeclaration)
7938        continue;
7939    }
7940
7941    // Mark all of the virtual members of this class as referenced, so
7942    // that we can build a vtable. Then, tell the AST consumer that a
7943    // vtable for this class is required.
7944    DefinedAnything = true;
7945    MarkVirtualMembersReferenced(Loc, Class);
7946    CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
7947    Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
7948
7949    // Optionally warn if we're emitting a weak vtable.
7950    if (Class->getLinkage() == ExternalLinkage &&
7951        Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
7952      if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
7953        Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
7954    }
7955  }
7956  VTableUses.clear();
7957
7958  return DefinedAnything;
7959}
7960
7961void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
7962                                        const CXXRecordDecl *RD) {
7963  for (CXXRecordDecl::method_iterator i = RD->method_begin(),
7964       e = RD->method_end(); i != e; ++i) {
7965    CXXMethodDecl *MD = *i;
7966
7967    // C++ [basic.def.odr]p2:
7968    //   [...] A virtual member function is used if it is not pure. [...]
7969    if (MD->isVirtual() && !MD->isPure())
7970      MarkDeclarationReferenced(Loc, MD);
7971  }
7972
7973  // Only classes that have virtual bases need a VTT.
7974  if (RD->getNumVBases() == 0)
7975    return;
7976
7977  for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
7978           e = RD->bases_end(); i != e; ++i) {
7979    const CXXRecordDecl *Base =
7980        cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
7981    if (Base->getNumVBases() == 0)
7982      continue;
7983    MarkVirtualMembersReferenced(Loc, Base);
7984  }
7985}
7986
7987/// SetIvarInitializers - This routine builds initialization ASTs for the
7988/// Objective-C implementation whose ivars need be initialized.
7989void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
7990  if (!getLangOptions().CPlusPlus)
7991    return;
7992  if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
7993    llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
7994    CollectIvarsToConstructOrDestruct(OID, ivars);
7995    if (ivars.empty())
7996      return;
7997    llvm::SmallVector<CXXCtorInitializer*, 32> AllToInit;
7998    for (unsigned i = 0; i < ivars.size(); i++) {
7999      FieldDecl *Field = ivars[i];
8000      if (Field->isInvalidDecl())
8001        continue;
8002
8003      CXXCtorInitializer *Member;
8004      InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
8005      InitializationKind InitKind =
8006        InitializationKind::CreateDefault(ObjCImplementation->getLocation());
8007
8008      InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
8009      ExprResult MemberInit =
8010        InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
8011      MemberInit = MaybeCreateExprWithCleanups(MemberInit);
8012      // Note, MemberInit could actually come back empty if no initialization
8013      // is required (e.g., because it would call a trivial default constructor)
8014      if (!MemberInit.get() || MemberInit.isInvalid())
8015        continue;
8016
8017      Member =
8018        new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
8019                                         SourceLocation(),
8020                                         MemberInit.takeAs<Expr>(),
8021                                         SourceLocation());
8022      AllToInit.push_back(Member);
8023
8024      // Be sure that the destructor is accessible and is marked as referenced.
8025      if (const RecordType *RecordTy
8026                  = Context.getBaseElementType(Field->getType())
8027                                                        ->getAs<RecordType>()) {
8028                    CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
8029        if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
8030          MarkDeclarationReferenced(Field->getLocation(), Destructor);
8031          CheckDestructorAccess(Field->getLocation(), Destructor,
8032                            PDiag(diag::err_access_dtor_ivar)
8033                              << Context.getBaseElementType(Field->getType()));
8034        }
8035      }
8036    }
8037    ObjCImplementation->setIvarInitializers(Context,
8038                                            AllToInit.data(), AllToInit.size());
8039  }
8040}
8041
8042static
8043void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
8044                           llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
8045                           llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
8046                           llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
8047                           Sema &S) {
8048  llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
8049                                                   CE = Current.end();
8050  if (Ctor->isInvalidDecl())
8051    return;
8052
8053  const FunctionDecl *FNTarget = 0;
8054  CXXConstructorDecl *Target;
8055
8056  // We ignore the result here since if we don't have a body, Target will be
8057  // null below.
8058  (void)Ctor->getTargetConstructor()->hasBody(FNTarget);
8059  Target
8060= const_cast<CXXConstructorDecl*>(cast_or_null<CXXConstructorDecl>(FNTarget));
8061
8062  CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
8063                     // Avoid dereferencing a null pointer here.
8064                     *TCanonical = Target ? Target->getCanonicalDecl() : 0;
8065
8066  if (!Current.insert(Canonical))
8067    return;
8068
8069  // We know that beyond here, we aren't chaining into a cycle.
8070  if (!Target || !Target->isDelegatingConstructor() ||
8071      Target->isInvalidDecl() || Valid.count(TCanonical)) {
8072    for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
8073      Valid.insert(*CI);
8074    Current.clear();
8075  // We've hit a cycle.
8076  } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
8077             Current.count(TCanonical)) {
8078    // If we haven't diagnosed this cycle yet, do so now.
8079    if (!Invalid.count(TCanonical)) {
8080      S.Diag((*Ctor->init_begin())->getSourceLocation(),
8081             diag::warn_delegating_ctor_cycle)
8082        << Ctor;
8083
8084      // Don't add a note for a function delegating directo to itself.
8085      if (TCanonical != Canonical)
8086        S.Diag(Target->getLocation(), diag::note_it_delegates_to);
8087
8088      CXXConstructorDecl *C = Target;
8089      while (C->getCanonicalDecl() != Canonical) {
8090        (void)C->getTargetConstructor()->hasBody(FNTarget);
8091        assert(FNTarget && "Ctor cycle through bodiless function");
8092
8093        C
8094       = const_cast<CXXConstructorDecl*>(cast<CXXConstructorDecl>(FNTarget));
8095        S.Diag(C->getLocation(), diag::note_which_delegates_to);
8096      }
8097    }
8098
8099    for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
8100      Invalid.insert(*CI);
8101    Current.clear();
8102  } else {
8103    DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
8104  }
8105}
8106
8107
8108void Sema::CheckDelegatingCtorCycles() {
8109  llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
8110
8111  llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
8112                                                   CE = Current.end();
8113
8114  for (llvm::SmallVector<CXXConstructorDecl*, 4>::iterator
8115         I = DelegatingCtorDecls.begin(),
8116         E = DelegatingCtorDecls.end();
8117       I != E; ++I) {
8118   DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
8119  }
8120
8121  for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
8122    (*CI)->setInvalidDecl();
8123}
8124