SemaDeclCXX.cpp revision ad7ec12ef2edbadb85a3754f0395ef2f06d4256c
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, bool Defaulted) {
967  // FIXME: Do something with this
968  (void) Defaulted;
969
970  const DeclSpec &DS = D.getDeclSpec();
971  DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
972  DeclarationName Name = NameInfo.getName();
973  SourceLocation Loc = NameInfo.getLoc();
974
975  // For anonymous bitfields, the location should point to the type.
976  if (Loc.isInvalid())
977    Loc = D.getSourceRange().getBegin();
978
979  Expr *BitWidth = static_cast<Expr*>(BW);
980  Expr *Init = static_cast<Expr*>(InitExpr);
981
982  assert(isa<CXXRecordDecl>(CurContext));
983  assert(!DS.isFriendSpecified());
984
985  bool isFunc = false;
986  if (D.isFunctionDeclarator())
987    isFunc = true;
988  else if (D.getNumTypeObjects() == 0 &&
989           D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
990    QualType TDType = GetTypeFromParser(DS.getRepAsType());
991    isFunc = TDType->isFunctionType();
992  }
993
994  // C++ 9.2p6: A member shall not be declared to have automatic storage
995  // duration (auto, register) or with the extern storage-class-specifier.
996  // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
997  // data members and cannot be applied to names declared const or static,
998  // and cannot be applied to reference members.
999  switch (DS.getStorageClassSpec()) {
1000    case DeclSpec::SCS_unspecified:
1001    case DeclSpec::SCS_typedef:
1002    case DeclSpec::SCS_static:
1003      // FALL THROUGH.
1004      break;
1005    case DeclSpec::SCS_mutable:
1006      if (isFunc) {
1007        if (DS.getStorageClassSpecLoc().isValid())
1008          Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
1009        else
1010          Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
1011
1012        // FIXME: It would be nicer if the keyword was ignored only for this
1013        // declarator. Otherwise we could get follow-up errors.
1014        D.getMutableDeclSpec().ClearStorageClassSpecs();
1015      }
1016      break;
1017    default:
1018      if (DS.getStorageClassSpecLoc().isValid())
1019        Diag(DS.getStorageClassSpecLoc(),
1020             diag::err_storageclass_invalid_for_member);
1021      else
1022        Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1023      D.getMutableDeclSpec().ClearStorageClassSpecs();
1024  }
1025
1026  bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1027                       DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
1028                      !isFunc);
1029
1030  Decl *Member;
1031  if (isInstField) {
1032    CXXScopeSpec &SS = D.getCXXScopeSpec();
1033
1034
1035    if (SS.isSet() && !SS.isInvalid()) {
1036      // The user provided a superfluous scope specifier inside a class
1037      // definition:
1038      //
1039      // class X {
1040      //   int X::member;
1041      // };
1042      DeclContext *DC = 0;
1043      if ((DC = computeDeclContext(SS, false)) && DC->Equals(CurContext))
1044        Diag(D.getIdentifierLoc(), diag::warn_member_extra_qualification)
1045        << Name << FixItHint::CreateRemoval(SS.getRange());
1046      else
1047        Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1048          << Name << SS.getRange();
1049
1050      SS.clear();
1051    }
1052
1053    // FIXME: Check for template parameters!
1054    // FIXME: Check that the name is an identifier!
1055    Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
1056                         AS);
1057    assert(Member && "HandleField never returns null");
1058  } else {
1059    Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition);
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->isThisDeclarationADefinition())
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
3471  // C++ [class.dtor]p2:
3472  //   A destructor is used to destroy objects of its class type. A
3473  //   destructor takes no parameters, and no return type can be
3474  //   specified for it (not even void). The address of a destructor
3475  //   shall not be taken. A destructor shall not be static. A
3476  //   destructor can be invoked for a const, volatile or const
3477  //   volatile object. A destructor shall not be declared const,
3478  //   volatile or const volatile (9.3.2).
3479  if (SC == SC_Static) {
3480    if (!D.isInvalidType())
3481      Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3482        << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3483        << SourceRange(D.getIdentifierLoc())
3484        << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
3485
3486    SC = SC_None;
3487  }
3488  if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
3489    // Destructors don't have return types, but the parser will
3490    // happily parse something like:
3491    //
3492    //   class X {
3493    //     float ~X();
3494    //   };
3495    //
3496    // The return type will be eliminated later.
3497    Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3498      << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3499      << SourceRange(D.getIdentifierLoc());
3500  }
3501
3502  DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
3503  if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
3504    if (FTI.TypeQuals & Qualifiers::Const)
3505      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3506        << "const" << SourceRange(D.getIdentifierLoc());
3507    if (FTI.TypeQuals & Qualifiers::Volatile)
3508      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3509        << "volatile" << SourceRange(D.getIdentifierLoc());
3510    if (FTI.TypeQuals & Qualifiers::Restrict)
3511      Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3512        << "restrict" << SourceRange(D.getIdentifierLoc());
3513    D.setInvalidType();
3514  }
3515
3516  // C++0x [class.dtor]p2:
3517  //   A destructor shall not be declared with a ref-qualifier.
3518  if (FTI.hasRefQualifier()) {
3519    Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
3520      << FTI.RefQualifierIsLValueRef
3521      << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
3522    D.setInvalidType();
3523  }
3524
3525  // Make sure we don't have any parameters.
3526  if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
3527    Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3528
3529    // Delete the parameters.
3530    FTI.freeArgs();
3531    D.setInvalidType();
3532  }
3533
3534  // Make sure the destructor isn't variadic.
3535  if (FTI.isVariadic) {
3536    Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
3537    D.setInvalidType();
3538  }
3539
3540  // Rebuild the function type "R" without any type qualifiers or
3541  // parameters (in case any of the errors above fired) and with
3542  // "void" as the return type, since destructors don't have return
3543  // types.
3544  if (!D.isInvalidType())
3545    return R;
3546
3547  const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3548  FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
3549  EPI.Variadic = false;
3550  EPI.TypeQuals = 0;
3551  EPI.RefQualifier = RQ_None;
3552  return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
3553}
3554
3555/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3556/// well-formednes of the conversion function declarator @p D with
3557/// type @p R. If there are any errors in the declarator, this routine
3558/// will emit diagnostics and return true. Otherwise, it will return
3559/// false. Either way, the type @p R will be updated to reflect a
3560/// well-formed type for the conversion operator.
3561void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
3562                                     StorageClass& SC) {
3563  // C++ [class.conv.fct]p1:
3564  //   Neither parameter types nor return type can be specified. The
3565  //   type of a conversion function (8.3.5) is "function taking no
3566  //   parameter returning conversion-type-id."
3567  if (SC == SC_Static) {
3568    if (!D.isInvalidType())
3569      Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3570        << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3571        << SourceRange(D.getIdentifierLoc());
3572    D.setInvalidType();
3573    SC = SC_None;
3574  }
3575
3576  QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3577
3578  if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
3579    // Conversion functions don't have return types, but the parser will
3580    // happily parse something like:
3581    //
3582    //   class X {
3583    //     float operator bool();
3584    //   };
3585    //
3586    // The return type will be changed later anyway.
3587    Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3588      << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3589      << SourceRange(D.getIdentifierLoc());
3590    D.setInvalidType();
3591  }
3592
3593  const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3594
3595  // Make sure we don't have any parameters.
3596  if (Proto->getNumArgs() > 0) {
3597    Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3598
3599    // Delete the parameters.
3600    D.getFunctionTypeInfo().freeArgs();
3601    D.setInvalidType();
3602  } else if (Proto->isVariadic()) {
3603    Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
3604    D.setInvalidType();
3605  }
3606
3607  // Diagnose "&operator bool()" and other such nonsense.  This
3608  // is actually a gcc extension which we don't support.
3609  if (Proto->getResultType() != ConvType) {
3610    Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3611      << Proto->getResultType();
3612    D.setInvalidType();
3613    ConvType = Proto->getResultType();
3614  }
3615
3616  // C++ [class.conv.fct]p4:
3617  //   The conversion-type-id shall not represent a function type nor
3618  //   an array type.
3619  if (ConvType->isArrayType()) {
3620    Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3621    ConvType = Context.getPointerType(ConvType);
3622    D.setInvalidType();
3623  } else if (ConvType->isFunctionType()) {
3624    Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3625    ConvType = Context.getPointerType(ConvType);
3626    D.setInvalidType();
3627  }
3628
3629  // Rebuild the function type "R" without any parameters (in case any
3630  // of the errors above fired) and with the conversion type as the
3631  // return type.
3632  if (D.isInvalidType())
3633    R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
3634
3635  // C++0x explicit conversion operators.
3636  if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
3637    Diag(D.getDeclSpec().getExplicitSpecLoc(),
3638         diag::warn_explicit_conversion_functions)
3639      << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
3640}
3641
3642/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3643/// the declaration of the given C++ conversion function. This routine
3644/// is responsible for recording the conversion function in the C++
3645/// class, if possible.
3646Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
3647  assert(Conversion && "Expected to receive a conversion function declaration");
3648
3649  CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
3650
3651  // Make sure we aren't redeclaring the conversion function.
3652  QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
3653
3654  // C++ [class.conv.fct]p1:
3655  //   [...] A conversion function is never used to convert a
3656  //   (possibly cv-qualified) object to the (possibly cv-qualified)
3657  //   same object type (or a reference to it), to a (possibly
3658  //   cv-qualified) base class of that type (or a reference to it),
3659  //   or to (possibly cv-qualified) void.
3660  // FIXME: Suppress this warning if the conversion function ends up being a
3661  // virtual function that overrides a virtual function in a base class.
3662  QualType ClassType
3663    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
3664  if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
3665    ConvType = ConvTypeRef->getPointeeType();
3666  if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
3667      Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
3668    /* Suppress diagnostics for instantiations. */;
3669  else if (ConvType->isRecordType()) {
3670    ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3671    if (ConvType == ClassType)
3672      Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
3673        << ClassType;
3674    else if (IsDerivedFrom(ClassType, ConvType))
3675      Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
3676        <<  ClassType << ConvType;
3677  } else if (ConvType->isVoidType()) {
3678    Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
3679      << ClassType << ConvType;
3680  }
3681
3682  if (FunctionTemplateDecl *ConversionTemplate
3683                                = Conversion->getDescribedFunctionTemplate())
3684    return ConversionTemplate;
3685
3686  return Conversion;
3687}
3688
3689//===----------------------------------------------------------------------===//
3690// Namespace Handling
3691//===----------------------------------------------------------------------===//
3692
3693
3694
3695/// ActOnStartNamespaceDef - This is called at the start of a namespace
3696/// definition.
3697Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3698                                   SourceLocation InlineLoc,
3699                                   SourceLocation NamespaceLoc,
3700                                   SourceLocation IdentLoc,
3701                                   IdentifierInfo *II,
3702                                   SourceLocation LBrace,
3703                                   AttributeList *AttrList) {
3704  SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
3705  // For anonymous namespace, take the location of the left brace.
3706  SourceLocation Loc = II ? IdentLoc : LBrace;
3707  NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
3708                                                 StartLoc, Loc, II);
3709  Namespc->setInline(InlineLoc.isValid());
3710
3711  Scope *DeclRegionScope = NamespcScope->getParent();
3712
3713  ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3714
3715  if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
3716    PushNamespaceVisibilityAttr(Attr);
3717
3718  if (II) {
3719    // C++ [namespace.def]p2:
3720    //   The identifier in an original-namespace-definition shall not
3721    //   have been previously defined in the declarative region in
3722    //   which the original-namespace-definition appears. The
3723    //   identifier in an original-namespace-definition is the name of
3724    //   the namespace. Subsequently in that declarative region, it is
3725    //   treated as an original-namespace-name.
3726    //
3727    // Since namespace names are unique in their scope, and we don't
3728    // look through using directives, just
3729    DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
3730    NamedDecl *PrevDecl = R.first == R.second? 0 : *R.first;
3731
3732    if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3733      // This is an extended namespace definition.
3734      if (Namespc->isInline() != OrigNS->isInline()) {
3735        // inline-ness must match
3736        Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3737          << Namespc->isInline();
3738        Diag(OrigNS->getLocation(), diag::note_previous_definition);
3739        Namespc->setInvalidDecl();
3740        // Recover by ignoring the new namespace's inline status.
3741        Namespc->setInline(OrigNS->isInline());
3742      }
3743
3744      // Attach this namespace decl to the chain of extended namespace
3745      // definitions.
3746      OrigNS->setNextNamespace(Namespc);
3747      Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
3748
3749      // Remove the previous declaration from the scope.
3750      if (DeclRegionScope->isDeclScope(OrigNS)) {
3751        IdResolver.RemoveDecl(OrigNS);
3752        DeclRegionScope->RemoveDecl(OrigNS);
3753      }
3754    } else if (PrevDecl) {
3755      // This is an invalid name redefinition.
3756      Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3757       << Namespc->getDeclName();
3758      Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3759      Namespc->setInvalidDecl();
3760      // Continue on to push Namespc as current DeclContext and return it.
3761    } else if (II->isStr("std") &&
3762               CurContext->getRedeclContext()->isTranslationUnit()) {
3763      // This is the first "real" definition of the namespace "std", so update
3764      // our cache of the "std" namespace to point at this definition.
3765      if (NamespaceDecl *StdNS = getStdNamespace()) {
3766        // We had already defined a dummy namespace "std". Link this new
3767        // namespace definition to the dummy namespace "std".
3768        StdNS->setNextNamespace(Namespc);
3769        StdNS->setLocation(IdentLoc);
3770        Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
3771      }
3772
3773      // Make our StdNamespace cache point at the first real definition of the
3774      // "std" namespace.
3775      StdNamespace = Namespc;
3776    }
3777
3778    PushOnScopeChains(Namespc, DeclRegionScope);
3779  } else {
3780    // Anonymous namespaces.
3781    assert(Namespc->isAnonymousNamespace());
3782
3783    // Link the anonymous namespace into its parent.
3784    NamespaceDecl *PrevDecl;
3785    DeclContext *Parent = CurContext->getRedeclContext();
3786    if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3787      PrevDecl = TU->getAnonymousNamespace();
3788      TU->setAnonymousNamespace(Namespc);
3789    } else {
3790      NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3791      PrevDecl = ND->getAnonymousNamespace();
3792      ND->setAnonymousNamespace(Namespc);
3793    }
3794
3795    // Link the anonymous namespace with its previous declaration.
3796    if (PrevDecl) {
3797      assert(PrevDecl->isAnonymousNamespace());
3798      assert(!PrevDecl->getNextNamespace());
3799      Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3800      PrevDecl->setNextNamespace(Namespc);
3801
3802      if (Namespc->isInline() != PrevDecl->isInline()) {
3803        // inline-ness must match
3804        Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3805          << Namespc->isInline();
3806        Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3807        Namespc->setInvalidDecl();
3808        // Recover by ignoring the new namespace's inline status.
3809        Namespc->setInline(PrevDecl->isInline());
3810      }
3811    }
3812
3813    CurContext->addDecl(Namespc);
3814
3815    // C++ [namespace.unnamed]p1.  An unnamed-namespace-definition
3816    //   behaves as if it were replaced by
3817    //     namespace unique { /* empty body */ }
3818    //     using namespace unique;
3819    //     namespace unique { namespace-body }
3820    //   where all occurrences of 'unique' in a translation unit are
3821    //   replaced by the same identifier and this identifier differs
3822    //   from all other identifiers in the entire program.
3823
3824    // We just create the namespace with an empty name and then add an
3825    // implicit using declaration, just like the standard suggests.
3826    //
3827    // CodeGen enforces the "universally unique" aspect by giving all
3828    // declarations semantically contained within an anonymous
3829    // namespace internal linkage.
3830
3831    if (!PrevDecl) {
3832      UsingDirectiveDecl* UD
3833        = UsingDirectiveDecl::Create(Context, CurContext,
3834                                     /* 'using' */ LBrace,
3835                                     /* 'namespace' */ SourceLocation(),
3836                                     /* qualifier */ NestedNameSpecifierLoc(),
3837                                     /* identifier */ SourceLocation(),
3838                                     Namespc,
3839                                     /* Ancestor */ CurContext);
3840      UD->setImplicit();
3841      CurContext->addDecl(UD);
3842    }
3843  }
3844
3845  // Although we could have an invalid decl (i.e. the namespace name is a
3846  // redefinition), push it as current DeclContext and try to continue parsing.
3847  // FIXME: We should be able to push Namespc here, so that the each DeclContext
3848  // for the namespace has the declarations that showed up in that particular
3849  // namespace definition.
3850  PushDeclContext(NamespcScope, Namespc);
3851  return Namespc;
3852}
3853
3854/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3855/// is a namespace alias, returns the namespace it points to.
3856static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3857  if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3858    return AD->getNamespace();
3859  return dyn_cast_or_null<NamespaceDecl>(D);
3860}
3861
3862/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3863/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
3864void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
3865  NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3866  assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3867  Namespc->setRBraceLoc(RBrace);
3868  PopDeclContext();
3869  if (Namespc->hasAttr<VisibilityAttr>())
3870    PopPragmaVisibility();
3871}
3872
3873CXXRecordDecl *Sema::getStdBadAlloc() const {
3874  return cast_or_null<CXXRecordDecl>(
3875                                  StdBadAlloc.get(Context.getExternalSource()));
3876}
3877
3878NamespaceDecl *Sema::getStdNamespace() const {
3879  return cast_or_null<NamespaceDecl>(
3880                                 StdNamespace.get(Context.getExternalSource()));
3881}
3882
3883/// \brief Retrieve the special "std" namespace, which may require us to
3884/// implicitly define the namespace.
3885NamespaceDecl *Sema::getOrCreateStdNamespace() {
3886  if (!StdNamespace) {
3887    // The "std" namespace has not yet been defined, so build one implicitly.
3888    StdNamespace = NamespaceDecl::Create(Context,
3889                                         Context.getTranslationUnitDecl(),
3890                                         SourceLocation(), SourceLocation(),
3891                                         &PP.getIdentifierTable().get("std"));
3892    getStdNamespace()->setImplicit(true);
3893  }
3894
3895  return getStdNamespace();
3896}
3897
3898/// \brief Determine whether a using statement is in a context where it will be
3899/// apply in all contexts.
3900static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
3901  switch (CurContext->getDeclKind()) {
3902    case Decl::TranslationUnit:
3903      return true;
3904    case Decl::LinkageSpec:
3905      return IsUsingDirectiveInToplevelContext(CurContext->getParent());
3906    default:
3907      return false;
3908  }
3909}
3910
3911Decl *Sema::ActOnUsingDirective(Scope *S,
3912                                          SourceLocation UsingLoc,
3913                                          SourceLocation NamespcLoc,
3914                                          CXXScopeSpec &SS,
3915                                          SourceLocation IdentLoc,
3916                                          IdentifierInfo *NamespcName,
3917                                          AttributeList *AttrList) {
3918  assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3919  assert(NamespcName && "Invalid NamespcName.");
3920  assert(IdentLoc.isValid() && "Invalid NamespceName location.");
3921
3922  // This can only happen along a recovery path.
3923  while (S->getFlags() & Scope::TemplateParamScope)
3924    S = S->getParent();
3925  assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
3926
3927  UsingDirectiveDecl *UDir = 0;
3928  NestedNameSpecifier *Qualifier = 0;
3929  if (SS.isSet())
3930    Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3931
3932  // Lookup namespace name.
3933  LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3934  LookupParsedName(R, S, &SS);
3935  if (R.isAmbiguous())
3936    return 0;
3937
3938  if (R.empty()) {
3939    // Allow "using namespace std;" or "using namespace ::std;" even if
3940    // "std" hasn't been defined yet, for GCC compatibility.
3941    if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3942        NamespcName->isStr("std")) {
3943      Diag(IdentLoc, diag::ext_using_undefined_std);
3944      R.addDecl(getOrCreateStdNamespace());
3945      R.resolveKind();
3946    }
3947    // Otherwise, attempt typo correction.
3948    else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3949                                                       CTC_NoKeywords, 0)) {
3950      if (R.getAsSingle<NamespaceDecl>() ||
3951          R.getAsSingle<NamespaceAliasDecl>()) {
3952        if (DeclContext *DC = computeDeclContext(SS, false))
3953          Diag(IdentLoc, diag::err_using_directive_member_suggest)
3954            << NamespcName << DC << Corrected << SS.getRange()
3955            << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3956        else
3957          Diag(IdentLoc, diag::err_using_directive_suggest)
3958            << NamespcName << Corrected
3959            << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3960        Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3961          << Corrected;
3962
3963        NamespcName = Corrected.getAsIdentifierInfo();
3964      } else {
3965        R.clear();
3966        R.setLookupName(NamespcName);
3967      }
3968    }
3969  }
3970
3971  if (!R.empty()) {
3972    NamedDecl *Named = R.getFoundDecl();
3973    assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3974        && "expected namespace decl");
3975    // C++ [namespace.udir]p1:
3976    //   A using-directive specifies that the names in the nominated
3977    //   namespace can be used in the scope in which the
3978    //   using-directive appears after the using-directive. During
3979    //   unqualified name lookup (3.4.1), the names appear as if they
3980    //   were declared in the nearest enclosing namespace which
3981    //   contains both the using-directive and the nominated
3982    //   namespace. [Note: in this context, "contains" means "contains
3983    //   directly or indirectly". ]
3984
3985    // Find enclosing context containing both using-directive and
3986    // nominated namespace.
3987    NamespaceDecl *NS = getNamespaceDecl(Named);
3988    DeclContext *CommonAncestor = cast<DeclContext>(NS);
3989    while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3990      CommonAncestor = CommonAncestor->getParent();
3991
3992    UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
3993                                      SS.getWithLocInContext(Context),
3994                                      IdentLoc, Named, CommonAncestor);
3995
3996    if (IsUsingDirectiveInToplevelContext(CurContext) &&
3997        !SourceMgr.isFromMainFile(SourceMgr.getInstantiationLoc(IdentLoc))) {
3998      Diag(IdentLoc, diag::warn_using_directive_in_header);
3999    }
4000
4001    PushUsingDirective(S, UDir);
4002  } else {
4003    Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
4004  }
4005
4006  // FIXME: We ignore attributes for now.
4007  return UDir;
4008}
4009
4010void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
4011  // If scope has associated entity, then using directive is at namespace
4012  // or translation unit scope. We add UsingDirectiveDecls, into
4013  // it's lookup structure.
4014  if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
4015    Ctx->addDecl(UDir);
4016  else
4017    // Otherwise it is block-sope. using-directives will affect lookup
4018    // only to the end of scope.
4019    S->PushUsingDirective(UDir);
4020}
4021
4022
4023Decl *Sema::ActOnUsingDeclaration(Scope *S,
4024                                  AccessSpecifier AS,
4025                                  bool HasUsingKeyword,
4026                                  SourceLocation UsingLoc,
4027                                  CXXScopeSpec &SS,
4028                                  UnqualifiedId &Name,
4029                                  AttributeList *AttrList,
4030                                  bool IsTypeName,
4031                                  SourceLocation TypenameLoc) {
4032  assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
4033
4034  switch (Name.getKind()) {
4035  case UnqualifiedId::IK_Identifier:
4036  case UnqualifiedId::IK_OperatorFunctionId:
4037  case UnqualifiedId::IK_LiteralOperatorId:
4038  case UnqualifiedId::IK_ConversionFunctionId:
4039    break;
4040
4041  case UnqualifiedId::IK_ConstructorName:
4042  case UnqualifiedId::IK_ConstructorTemplateId:
4043    // C++0x inherited constructors.
4044    if (getLangOptions().CPlusPlus0x) break;
4045
4046    Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
4047      << SS.getRange();
4048    return 0;
4049
4050  case UnqualifiedId::IK_DestructorName:
4051    Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
4052      << SS.getRange();
4053    return 0;
4054
4055  case UnqualifiedId::IK_TemplateId:
4056    Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
4057      << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
4058    return 0;
4059  }
4060
4061  DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
4062  DeclarationName TargetName = TargetNameInfo.getName();
4063  if (!TargetName)
4064    return 0;
4065
4066  // Warn about using declarations.
4067  // TODO: store that the declaration was written without 'using' and
4068  // talk about access decls instead of using decls in the
4069  // diagnostics.
4070  if (!HasUsingKeyword) {
4071    UsingLoc = Name.getSourceRange().getBegin();
4072
4073    Diag(UsingLoc, diag::warn_access_decl_deprecated)
4074      << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
4075  }
4076
4077  if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
4078      DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
4079    return 0;
4080
4081  NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
4082                                        TargetNameInfo, AttrList,
4083                                        /* IsInstantiation */ false,
4084                                        IsTypeName, TypenameLoc);
4085  if (UD)
4086    PushOnScopeChains(UD, S, /*AddToContext*/ false);
4087
4088  return UD;
4089}
4090
4091/// \brief Determine whether a using declaration considers the given
4092/// declarations as "equivalent", e.g., if they are redeclarations of
4093/// the same entity or are both typedefs of the same type.
4094static bool
4095IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
4096                         bool &SuppressRedeclaration) {
4097  if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
4098    SuppressRedeclaration = false;
4099    return true;
4100  }
4101
4102  if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
4103    if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
4104      SuppressRedeclaration = true;
4105      return Context.hasSameType(TD1->getUnderlyingType(),
4106                                 TD2->getUnderlyingType());
4107    }
4108
4109  return false;
4110}
4111
4112
4113/// Determines whether to create a using shadow decl for a particular
4114/// decl, given the set of decls existing prior to this using lookup.
4115bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
4116                                const LookupResult &Previous) {
4117  // Diagnose finding a decl which is not from a base class of the
4118  // current class.  We do this now because there are cases where this
4119  // function will silently decide not to build a shadow decl, which
4120  // will pre-empt further diagnostics.
4121  //
4122  // We don't need to do this in C++0x because we do the check once on
4123  // the qualifier.
4124  //
4125  // FIXME: diagnose the following if we care enough:
4126  //   struct A { int foo; };
4127  //   struct B : A { using A::foo; };
4128  //   template <class T> struct C : A {};
4129  //   template <class T> struct D : C<T> { using B::foo; } // <---
4130  // This is invalid (during instantiation) in C++03 because B::foo
4131  // resolves to the using decl in B, which is not a base class of D<T>.
4132  // We can't diagnose it immediately because C<T> is an unknown
4133  // specialization.  The UsingShadowDecl in D<T> then points directly
4134  // to A::foo, which will look well-formed when we instantiate.
4135  // The right solution is to not collapse the shadow-decl chain.
4136  if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
4137    DeclContext *OrigDC = Orig->getDeclContext();
4138
4139    // Handle enums and anonymous structs.
4140    if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
4141    CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
4142    while (OrigRec->isAnonymousStructOrUnion())
4143      OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
4144
4145    if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
4146      if (OrigDC == CurContext) {
4147        Diag(Using->getLocation(),
4148             diag::err_using_decl_nested_name_specifier_is_current_class)
4149          << Using->getQualifierLoc().getSourceRange();
4150        Diag(Orig->getLocation(), diag::note_using_decl_target);
4151        return true;
4152      }
4153
4154      Diag(Using->getQualifierLoc().getBeginLoc(),
4155           diag::err_using_decl_nested_name_specifier_is_not_base_class)
4156        << Using->getQualifier()
4157        << cast<CXXRecordDecl>(CurContext)
4158        << Using->getQualifierLoc().getSourceRange();
4159      Diag(Orig->getLocation(), diag::note_using_decl_target);
4160      return true;
4161    }
4162  }
4163
4164  if (Previous.empty()) return false;
4165
4166  NamedDecl *Target = Orig;
4167  if (isa<UsingShadowDecl>(Target))
4168    Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
4169
4170  // If the target happens to be one of the previous declarations, we
4171  // don't have a conflict.
4172  //
4173  // FIXME: but we might be increasing its access, in which case we
4174  // should redeclare it.
4175  NamedDecl *NonTag = 0, *Tag = 0;
4176  for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
4177         I != E; ++I) {
4178    NamedDecl *D = (*I)->getUnderlyingDecl();
4179    bool Result;
4180    if (IsEquivalentForUsingDecl(Context, D, Target, Result))
4181      return Result;
4182
4183    (isa<TagDecl>(D) ? Tag : NonTag) = D;
4184  }
4185
4186  if (Target->isFunctionOrFunctionTemplate()) {
4187    FunctionDecl *FD;
4188    if (isa<FunctionTemplateDecl>(Target))
4189      FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
4190    else
4191      FD = cast<FunctionDecl>(Target);
4192
4193    NamedDecl *OldDecl = 0;
4194    switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
4195    case Ovl_Overload:
4196      return false;
4197
4198    case Ovl_NonFunction:
4199      Diag(Using->getLocation(), diag::err_using_decl_conflict);
4200      break;
4201
4202    // We found a decl with the exact signature.
4203    case Ovl_Match:
4204      // If we're in a record, we want to hide the target, so we
4205      // return true (without a diagnostic) to tell the caller not to
4206      // build a shadow decl.
4207      if (CurContext->isRecord())
4208        return true;
4209
4210      // If we're not in a record, this is an error.
4211      Diag(Using->getLocation(), diag::err_using_decl_conflict);
4212      break;
4213    }
4214
4215    Diag(Target->getLocation(), diag::note_using_decl_target);
4216    Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
4217    return true;
4218  }
4219
4220  // Target is not a function.
4221
4222  if (isa<TagDecl>(Target)) {
4223    // No conflict between a tag and a non-tag.
4224    if (!Tag) return false;
4225
4226    Diag(Using->getLocation(), diag::err_using_decl_conflict);
4227    Diag(Target->getLocation(), diag::note_using_decl_target);
4228    Diag(Tag->getLocation(), diag::note_using_decl_conflict);
4229    return true;
4230  }
4231
4232  // No conflict between a tag and a non-tag.
4233  if (!NonTag) return false;
4234
4235  Diag(Using->getLocation(), diag::err_using_decl_conflict);
4236  Diag(Target->getLocation(), diag::note_using_decl_target);
4237  Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
4238  return true;
4239}
4240
4241/// Builds a shadow declaration corresponding to a 'using' declaration.
4242UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
4243                                            UsingDecl *UD,
4244                                            NamedDecl *Orig) {
4245
4246  // If we resolved to another shadow declaration, just coalesce them.
4247  NamedDecl *Target = Orig;
4248  if (isa<UsingShadowDecl>(Target)) {
4249    Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
4250    assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
4251  }
4252
4253  UsingShadowDecl *Shadow
4254    = UsingShadowDecl::Create(Context, CurContext,
4255                              UD->getLocation(), UD, Target);
4256  UD->addShadowDecl(Shadow);
4257
4258  Shadow->setAccess(UD->getAccess());
4259  if (Orig->isInvalidDecl() || UD->isInvalidDecl())
4260    Shadow->setInvalidDecl();
4261
4262  if (S)
4263    PushOnScopeChains(Shadow, S);
4264  else
4265    CurContext->addDecl(Shadow);
4266
4267
4268  return Shadow;
4269}
4270
4271/// Hides a using shadow declaration.  This is required by the current
4272/// using-decl implementation when a resolvable using declaration in a
4273/// class is followed by a declaration which would hide or override
4274/// one or more of the using decl's targets; for example:
4275///
4276///   struct Base { void foo(int); };
4277///   struct Derived : Base {
4278///     using Base::foo;
4279///     void foo(int);
4280///   };
4281///
4282/// The governing language is C++03 [namespace.udecl]p12:
4283///
4284///   When a using-declaration brings names from a base class into a
4285///   derived class scope, member functions in the derived class
4286///   override and/or hide member functions with the same name and
4287///   parameter types in a base class (rather than conflicting).
4288///
4289/// There are two ways to implement this:
4290///   (1) optimistically create shadow decls when they're not hidden
4291///       by existing declarations, or
4292///   (2) don't create any shadow decls (or at least don't make them
4293///       visible) until we've fully parsed/instantiated the class.
4294/// The problem with (1) is that we might have to retroactively remove
4295/// a shadow decl, which requires several O(n) operations because the
4296/// decl structures are (very reasonably) not designed for removal.
4297/// (2) avoids this but is very fiddly and phase-dependent.
4298void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
4299  if (Shadow->getDeclName().getNameKind() ==
4300        DeclarationName::CXXConversionFunctionName)
4301    cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
4302
4303  // Remove it from the DeclContext...
4304  Shadow->getDeclContext()->removeDecl(Shadow);
4305
4306  // ...and the scope, if applicable...
4307  if (S) {
4308    S->RemoveDecl(Shadow);
4309    IdResolver.RemoveDecl(Shadow);
4310  }
4311
4312  // ...and the using decl.
4313  Shadow->getUsingDecl()->removeShadowDecl(Shadow);
4314
4315  // TODO: complain somehow if Shadow was used.  It shouldn't
4316  // be possible for this to happen, because...?
4317}
4318
4319/// Builds a using declaration.
4320///
4321/// \param IsInstantiation - Whether this call arises from an
4322///   instantiation of an unresolved using declaration.  We treat
4323///   the lookup differently for these declarations.
4324NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
4325                                       SourceLocation UsingLoc,
4326                                       CXXScopeSpec &SS,
4327                                       const DeclarationNameInfo &NameInfo,
4328                                       AttributeList *AttrList,
4329                                       bool IsInstantiation,
4330                                       bool IsTypeName,
4331                                       SourceLocation TypenameLoc) {
4332  assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
4333  SourceLocation IdentLoc = NameInfo.getLoc();
4334  assert(IdentLoc.isValid() && "Invalid TargetName location.");
4335
4336  // FIXME: We ignore attributes for now.
4337
4338  if (SS.isEmpty()) {
4339    Diag(IdentLoc, diag::err_using_requires_qualname);
4340    return 0;
4341  }
4342
4343  // Do the redeclaration lookup in the current scope.
4344  LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
4345                        ForRedeclaration);
4346  Previous.setHideTags(false);
4347  if (S) {
4348    LookupName(Previous, S);
4349
4350    // It is really dumb that we have to do this.
4351    LookupResult::Filter F = Previous.makeFilter();
4352    while (F.hasNext()) {
4353      NamedDecl *D = F.next();
4354      if (!isDeclInScope(D, CurContext, S))
4355        F.erase();
4356    }
4357    F.done();
4358  } else {
4359    assert(IsInstantiation && "no scope in non-instantiation");
4360    assert(CurContext->isRecord() && "scope not record in instantiation");
4361    LookupQualifiedName(Previous, CurContext);
4362  }
4363
4364  // Check for invalid redeclarations.
4365  if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
4366    return 0;
4367
4368  // Check for bad qualifiers.
4369  if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
4370    return 0;
4371
4372  DeclContext *LookupContext = computeDeclContext(SS);
4373  NamedDecl *D;
4374  NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
4375  if (!LookupContext) {
4376    if (IsTypeName) {
4377      // FIXME: not all declaration name kinds are legal here
4378      D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
4379                                              UsingLoc, TypenameLoc,
4380                                              QualifierLoc,
4381                                              IdentLoc, NameInfo.getName());
4382    } else {
4383      D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
4384                                           QualifierLoc, NameInfo);
4385    }
4386  } else {
4387    D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
4388                          NameInfo, IsTypeName);
4389  }
4390  D->setAccess(AS);
4391  CurContext->addDecl(D);
4392
4393  if (!LookupContext) return D;
4394  UsingDecl *UD = cast<UsingDecl>(D);
4395
4396  if (RequireCompleteDeclContext(SS, LookupContext)) {
4397    UD->setInvalidDecl();
4398    return UD;
4399  }
4400
4401  // Constructor inheriting using decls get special treatment.
4402  if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
4403    if (CheckInheritedConstructorUsingDecl(UD))
4404      UD->setInvalidDecl();
4405    return UD;
4406  }
4407
4408  // Otherwise, look up the target name.
4409
4410  LookupResult R(*this, NameInfo, LookupOrdinaryName);
4411
4412  // Unlike most lookups, we don't always want to hide tag
4413  // declarations: tag names are visible through the using declaration
4414  // even if hidden by ordinary names, *except* in a dependent context
4415  // where it's important for the sanity of two-phase lookup.
4416  if (!IsInstantiation)
4417    R.setHideTags(false);
4418
4419  LookupQualifiedName(R, LookupContext);
4420
4421  if (R.empty()) {
4422    Diag(IdentLoc, diag::err_no_member)
4423      << NameInfo.getName() << LookupContext << SS.getRange();
4424    UD->setInvalidDecl();
4425    return UD;
4426  }
4427
4428  if (R.isAmbiguous()) {
4429    UD->setInvalidDecl();
4430    return UD;
4431  }
4432
4433  if (IsTypeName) {
4434    // If we asked for a typename and got a non-type decl, error out.
4435    if (!R.getAsSingle<TypeDecl>()) {
4436      Diag(IdentLoc, diag::err_using_typename_non_type);
4437      for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
4438        Diag((*I)->getUnderlyingDecl()->getLocation(),
4439             diag::note_using_decl_target);
4440      UD->setInvalidDecl();
4441      return UD;
4442    }
4443  } else {
4444    // If we asked for a non-typename and we got a type, error out,
4445    // but only if this is an instantiation of an unresolved using
4446    // decl.  Otherwise just silently find the type name.
4447    if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
4448      Diag(IdentLoc, diag::err_using_dependent_value_is_type);
4449      Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
4450      UD->setInvalidDecl();
4451      return UD;
4452    }
4453  }
4454
4455  // C++0x N2914 [namespace.udecl]p6:
4456  // A using-declaration shall not name a namespace.
4457  if (R.getAsSingle<NamespaceDecl>()) {
4458    Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
4459      << SS.getRange();
4460    UD->setInvalidDecl();
4461    return UD;
4462  }
4463
4464  for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
4465    if (!CheckUsingShadowDecl(UD, *I, Previous))
4466      BuildUsingShadowDecl(S, UD, *I);
4467  }
4468
4469  return UD;
4470}
4471
4472/// Additional checks for a using declaration referring to a constructor name.
4473bool Sema::CheckInheritedConstructorUsingDecl(UsingDecl *UD) {
4474  if (UD->isTypeName()) {
4475    // FIXME: Cannot specify typename when specifying constructor
4476    return true;
4477  }
4478
4479  const Type *SourceType = UD->getQualifier()->getAsType();
4480  assert(SourceType &&
4481         "Using decl naming constructor doesn't have type in scope spec.");
4482  CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
4483
4484  // Check whether the named type is a direct base class.
4485  CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
4486  CXXRecordDecl::base_class_iterator BaseIt, BaseE;
4487  for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
4488       BaseIt != BaseE; ++BaseIt) {
4489    CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
4490    if (CanonicalSourceType == BaseType)
4491      break;
4492  }
4493
4494  if (BaseIt == BaseE) {
4495    // Did not find SourceType in the bases.
4496    Diag(UD->getUsingLocation(),
4497         diag::err_using_decl_constructor_not_in_direct_base)
4498      << UD->getNameInfo().getSourceRange()
4499      << QualType(SourceType, 0) << TargetClass;
4500    return true;
4501  }
4502
4503  BaseIt->setInheritConstructors();
4504
4505  return false;
4506}
4507
4508/// Checks that the given using declaration is not an invalid
4509/// redeclaration.  Note that this is checking only for the using decl
4510/// itself, not for any ill-formedness among the UsingShadowDecls.
4511bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
4512                                       bool isTypeName,
4513                                       const CXXScopeSpec &SS,
4514                                       SourceLocation NameLoc,
4515                                       const LookupResult &Prev) {
4516  // C++03 [namespace.udecl]p8:
4517  // C++0x [namespace.udecl]p10:
4518  //   A using-declaration is a declaration and can therefore be used
4519  //   repeatedly where (and only where) multiple declarations are
4520  //   allowed.
4521  //
4522  // That's in non-member contexts.
4523  if (!CurContext->getRedeclContext()->isRecord())
4524    return false;
4525
4526  NestedNameSpecifier *Qual
4527    = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
4528
4529  for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
4530    NamedDecl *D = *I;
4531
4532    bool DTypename;
4533    NestedNameSpecifier *DQual;
4534    if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
4535      DTypename = UD->isTypeName();
4536      DQual = UD->getQualifier();
4537    } else if (UnresolvedUsingValueDecl *UD
4538                 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
4539      DTypename = false;
4540      DQual = UD->getQualifier();
4541    } else if (UnresolvedUsingTypenameDecl *UD
4542                 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
4543      DTypename = true;
4544      DQual = UD->getQualifier();
4545    } else continue;
4546
4547    // using decls differ if one says 'typename' and the other doesn't.
4548    // FIXME: non-dependent using decls?
4549    if (isTypeName != DTypename) continue;
4550
4551    // using decls differ if they name different scopes (but note that
4552    // template instantiation can cause this check to trigger when it
4553    // didn't before instantiation).
4554    if (Context.getCanonicalNestedNameSpecifier(Qual) !=
4555        Context.getCanonicalNestedNameSpecifier(DQual))
4556      continue;
4557
4558    Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
4559    Diag(D->getLocation(), diag::note_using_decl) << 1;
4560    return true;
4561  }
4562
4563  return false;
4564}
4565
4566
4567/// Checks that the given nested-name qualifier used in a using decl
4568/// in the current context is appropriately related to the current
4569/// scope.  If an error is found, diagnoses it and returns true.
4570bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4571                                   const CXXScopeSpec &SS,
4572                                   SourceLocation NameLoc) {
4573  DeclContext *NamedContext = computeDeclContext(SS);
4574
4575  if (!CurContext->isRecord()) {
4576    // C++03 [namespace.udecl]p3:
4577    // C++0x [namespace.udecl]p8:
4578    //   A using-declaration for a class member shall be a member-declaration.
4579
4580    // If we weren't able to compute a valid scope, it must be a
4581    // dependent class scope.
4582    if (!NamedContext || NamedContext->isRecord()) {
4583      Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4584        << SS.getRange();
4585      return true;
4586    }
4587
4588    // Otherwise, everything is known to be fine.
4589    return false;
4590  }
4591
4592  // The current scope is a record.
4593
4594  // If the named context is dependent, we can't decide much.
4595  if (!NamedContext) {
4596    // FIXME: in C++0x, we can diagnose if we can prove that the
4597    // nested-name-specifier does not refer to a base class, which is
4598    // still possible in some cases.
4599
4600    // Otherwise we have to conservatively report that things might be
4601    // okay.
4602    return false;
4603  }
4604
4605  if (!NamedContext->isRecord()) {
4606    // Ideally this would point at the last name in the specifier,
4607    // but we don't have that level of source info.
4608    Diag(SS.getRange().getBegin(),
4609         diag::err_using_decl_nested_name_specifier_is_not_class)
4610      << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4611    return true;
4612  }
4613
4614  if (!NamedContext->isDependentContext() &&
4615      RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
4616    return true;
4617
4618  if (getLangOptions().CPlusPlus0x) {
4619    // C++0x [namespace.udecl]p3:
4620    //   In a using-declaration used as a member-declaration, the
4621    //   nested-name-specifier shall name a base class of the class
4622    //   being defined.
4623
4624    if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4625                                 cast<CXXRecordDecl>(NamedContext))) {
4626      if (CurContext == NamedContext) {
4627        Diag(NameLoc,
4628             diag::err_using_decl_nested_name_specifier_is_current_class)
4629          << SS.getRange();
4630        return true;
4631      }
4632
4633      Diag(SS.getRange().getBegin(),
4634           diag::err_using_decl_nested_name_specifier_is_not_base_class)
4635        << (NestedNameSpecifier*) SS.getScopeRep()
4636        << cast<CXXRecordDecl>(CurContext)
4637        << SS.getRange();
4638      return true;
4639    }
4640
4641    return false;
4642  }
4643
4644  // C++03 [namespace.udecl]p4:
4645  //   A using-declaration used as a member-declaration shall refer
4646  //   to a member of a base class of the class being defined [etc.].
4647
4648  // Salient point: SS doesn't have to name a base class as long as
4649  // lookup only finds members from base classes.  Therefore we can
4650  // diagnose here only if we can prove that that can't happen,
4651  // i.e. if the class hierarchies provably don't intersect.
4652
4653  // TODO: it would be nice if "definitely valid" results were cached
4654  // in the UsingDecl and UsingShadowDecl so that these checks didn't
4655  // need to be repeated.
4656
4657  struct UserData {
4658    llvm::DenseSet<const CXXRecordDecl*> Bases;
4659
4660    static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4661      UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4662      Data->Bases.insert(Base);
4663      return true;
4664    }
4665
4666    bool hasDependentBases(const CXXRecordDecl *Class) {
4667      return !Class->forallBases(collect, this);
4668    }
4669
4670    /// Returns true if the base is dependent or is one of the
4671    /// accumulated base classes.
4672    static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4673      UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4674      return !Data->Bases.count(Base);
4675    }
4676
4677    bool mightShareBases(const CXXRecordDecl *Class) {
4678      return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4679    }
4680  };
4681
4682  UserData Data;
4683
4684  // Returns false if we find a dependent base.
4685  if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4686    return false;
4687
4688  // Returns false if the class has a dependent base or if it or one
4689  // of its bases is present in the base set of the current context.
4690  if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4691    return false;
4692
4693  Diag(SS.getRange().getBegin(),
4694       diag::err_using_decl_nested_name_specifier_is_not_base_class)
4695    << (NestedNameSpecifier*) SS.getScopeRep()
4696    << cast<CXXRecordDecl>(CurContext)
4697    << SS.getRange();
4698
4699  return true;
4700}
4701
4702Decl *Sema::ActOnAliasDeclaration(Scope *S,
4703                                  AccessSpecifier AS,
4704                                  SourceLocation UsingLoc,
4705                                  UnqualifiedId &Name,
4706                                  TypeResult Type) {
4707  assert((S->getFlags() & Scope::DeclScope) &&
4708         "got alias-declaration outside of declaration scope");
4709
4710  if (Type.isInvalid())
4711    return 0;
4712
4713  bool Invalid = false;
4714  DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
4715  TypeSourceInfo *TInfo = 0;
4716  GetTypeFromParser(Type.get(), &TInfo);
4717
4718  if (DiagnoseClassNameShadow(CurContext, NameInfo))
4719    return 0;
4720
4721  if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
4722                                      UPPC_DeclarationType))
4723    Invalid = true;
4724
4725  LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
4726  LookupName(Previous, S);
4727
4728  // Warn about shadowing the name of a template parameter.
4729  if (Previous.isSingleResult() &&
4730      Previous.getFoundDecl()->isTemplateParameter()) {
4731    if (DiagnoseTemplateParameterShadow(Name.StartLocation,
4732                                        Previous.getFoundDecl()))
4733      Invalid = true;
4734    Previous.clear();
4735  }
4736
4737  assert(Name.Kind == UnqualifiedId::IK_Identifier &&
4738         "name in alias declaration must be an identifier");
4739  TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
4740                                               Name.StartLocation,
4741                                               Name.Identifier, TInfo);
4742
4743  NewTD->setAccess(AS);
4744
4745  if (Invalid)
4746    NewTD->setInvalidDecl();
4747
4748  bool Redeclaration = false;
4749  ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
4750
4751  if (!Redeclaration)
4752    PushOnScopeChains(NewTD, S);
4753
4754  return NewTD;
4755}
4756
4757Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
4758                                             SourceLocation NamespaceLoc,
4759                                             SourceLocation AliasLoc,
4760                                             IdentifierInfo *Alias,
4761                                             CXXScopeSpec &SS,
4762                                             SourceLocation IdentLoc,
4763                                             IdentifierInfo *Ident) {
4764
4765  // Lookup the namespace name.
4766  LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4767  LookupParsedName(R, S, &SS);
4768
4769  // Check if we have a previous declaration with the same name.
4770  NamedDecl *PrevDecl
4771    = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4772                       ForRedeclaration);
4773  if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4774    PrevDecl = 0;
4775
4776  if (PrevDecl) {
4777    if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
4778      // We already have an alias with the same name that points to the same
4779      // namespace, so don't create a new one.
4780      // FIXME: At some point, we'll want to create the (redundant)
4781      // declaration to maintain better source information.
4782      if (!R.isAmbiguous() && !R.empty() &&
4783          AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
4784        return 0;
4785    }
4786
4787    unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4788      diag::err_redefinition_different_kind;
4789    Diag(AliasLoc, DiagID) << Alias;
4790    Diag(PrevDecl->getLocation(), diag::note_previous_definition);
4791    return 0;
4792  }
4793
4794  if (R.isAmbiguous())
4795    return 0;
4796
4797  if (R.empty()) {
4798    if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4799                                                CTC_NoKeywords, 0)) {
4800      if (R.getAsSingle<NamespaceDecl>() ||
4801          R.getAsSingle<NamespaceAliasDecl>()) {
4802        if (DeclContext *DC = computeDeclContext(SS, false))
4803          Diag(IdentLoc, diag::err_using_directive_member_suggest)
4804            << Ident << DC << Corrected << SS.getRange()
4805            << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4806        else
4807          Diag(IdentLoc, diag::err_using_directive_suggest)
4808            << Ident << Corrected
4809            << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4810
4811        Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4812          << Corrected;
4813
4814        Ident = Corrected.getAsIdentifierInfo();
4815      } else {
4816        R.clear();
4817        R.setLookupName(Ident);
4818      }
4819    }
4820
4821    if (R.empty()) {
4822      Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
4823      return 0;
4824    }
4825  }
4826
4827  NamespaceAliasDecl *AliasDecl =
4828    NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4829                               Alias, SS.getWithLocInContext(Context),
4830                               IdentLoc, R.getFoundDecl());
4831
4832  PushOnScopeChains(AliasDecl, S);
4833  return AliasDecl;
4834}
4835
4836namespace {
4837  /// \brief Scoped object used to handle the state changes required in Sema
4838  /// to implicitly define the body of a C++ member function;
4839  class ImplicitlyDefinedFunctionScope {
4840    Sema &S;
4841    Sema::ContextRAII SavedContext;
4842
4843  public:
4844    ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4845      : S(S), SavedContext(S, Method)
4846    {
4847      S.PushFunctionScope();
4848      S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4849    }
4850
4851    ~ImplicitlyDefinedFunctionScope() {
4852      S.PopExpressionEvaluationContext();
4853      S.PopFunctionOrBlockScope();
4854    }
4855  };
4856}
4857
4858static CXXConstructorDecl *getDefaultConstructorUnsafe(Sema &Self,
4859                                                       CXXRecordDecl *D) {
4860  ASTContext &Context = Self.Context;
4861  QualType ClassType = Context.getTypeDeclType(D);
4862  DeclarationName ConstructorName
4863    = Context.DeclarationNames.getCXXConstructorName(
4864                      Context.getCanonicalType(ClassType.getUnqualifiedType()));
4865
4866  DeclContext::lookup_const_iterator Con, ConEnd;
4867  for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
4868       Con != ConEnd; ++Con) {
4869    // FIXME: In C++0x, a constructor template can be a default constructor.
4870    if (isa<FunctionTemplateDecl>(*Con))
4871      continue;
4872
4873    CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
4874    if (Constructor->isDefaultConstructor())
4875      return Constructor;
4876  }
4877  return 0;
4878}
4879
4880CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4881                                                     CXXRecordDecl *ClassDecl) {
4882  // C++ [class.ctor]p5:
4883  //   A default constructor for a class X is a constructor of class X
4884  //   that can be called without an argument. If there is no
4885  //   user-declared constructor for class X, a default constructor is
4886  //   implicitly declared. An implicitly-declared default constructor
4887  //   is an inline public member of its class.
4888  assert(!ClassDecl->hasUserDeclaredConstructor() &&
4889         "Should not build implicit default constructor!");
4890
4891  // C++ [except.spec]p14:
4892  //   An implicitly declared special member function (Clause 12) shall have an
4893  //   exception-specification. [...]
4894  ImplicitExceptionSpecification ExceptSpec(Context);
4895
4896  // Direct base-class constructors.
4897  for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4898                                       BEnd = ClassDecl->bases_end();
4899       B != BEnd; ++B) {
4900    if (B->isVirtual()) // Handled below.
4901      continue;
4902
4903    if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4904      CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4905      if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4906        ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4907      else if (CXXConstructorDecl *Constructor
4908                            = getDefaultConstructorUnsafe(*this, BaseClassDecl))
4909        ExceptSpec.CalledDecl(Constructor);
4910    }
4911  }
4912
4913  // Virtual base-class constructors.
4914  for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4915                                       BEnd = ClassDecl->vbases_end();
4916       B != BEnd; ++B) {
4917    if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4918      CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4919      if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4920        ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4921      else if (CXXConstructorDecl *Constructor
4922                            = getDefaultConstructorUnsafe(*this, BaseClassDecl))
4923        ExceptSpec.CalledDecl(Constructor);
4924    }
4925  }
4926
4927  // Field constructors.
4928  for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4929                               FEnd = ClassDecl->field_end();
4930       F != FEnd; ++F) {
4931    if (const RecordType *RecordTy
4932              = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4933      CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4934      if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4935        ExceptSpec.CalledDecl(
4936                            DeclareImplicitDefaultConstructor(FieldClassDecl));
4937      else if (CXXConstructorDecl *Constructor
4938                           = getDefaultConstructorUnsafe(*this, FieldClassDecl))
4939        ExceptSpec.CalledDecl(Constructor);
4940    }
4941  }
4942
4943  FunctionProtoType::ExtProtoInfo EPI;
4944  EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
4945  EPI.NumExceptions = ExceptSpec.size();
4946  EPI.Exceptions = ExceptSpec.data();
4947
4948  // Create the actual constructor declaration.
4949  CanQualType ClassType
4950    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4951  SourceLocation ClassLoc = ClassDecl->getLocation();
4952  DeclarationName Name
4953    = Context.DeclarationNames.getCXXConstructorName(ClassType);
4954  DeclarationNameInfo NameInfo(Name, ClassLoc);
4955  CXXConstructorDecl *DefaultCon
4956    = CXXConstructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
4957                                 Context.getFunctionType(Context.VoidTy,
4958                                                         0, 0, EPI),
4959                                 /*TInfo=*/0,
4960                                 /*isExplicit=*/false,
4961                                 /*isInline=*/true,
4962                                 /*isImplicitlyDeclared=*/true,
4963                                 /*isExplicitlyDefaulted=*/false);
4964  DefaultCon->setAccess(AS_public);
4965  DefaultCon->setImplicit();
4966  DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
4967
4968  // Note that we have declared this constructor.
4969  ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4970
4971  if (Scope *S = getScopeForContext(ClassDecl))
4972    PushOnScopeChains(DefaultCon, S, false);
4973  ClassDecl->addDecl(DefaultCon);
4974
4975  return DefaultCon;
4976}
4977
4978void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4979                                            CXXConstructorDecl *Constructor) {
4980  assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
4981          !Constructor->isUsed(false)) &&
4982    "DefineImplicitDefaultConstructor - call it for implicit default ctor");
4983
4984  CXXRecordDecl *ClassDecl = Constructor->getParent();
4985  assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
4986
4987  ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
4988  DiagnosticErrorTrap Trap(Diags);
4989  if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4990      Trap.hasErrorOccurred()) {
4991    Diag(CurrentLocation, diag::note_member_synthesized_at)
4992      << CXXConstructor << Context.getTagDeclType(ClassDecl);
4993    Constructor->setInvalidDecl();
4994    return;
4995  }
4996
4997  SourceLocation Loc = Constructor->getLocation();
4998  Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
4999
5000  Constructor->setUsed();
5001  MarkVTableUsed(CurrentLocation, ClassDecl);
5002
5003  if (ASTMutationListener *L = getASTMutationListener()) {
5004    L->CompletedImplicitDefinition(Constructor);
5005  }
5006}
5007
5008void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
5009  // We start with an initial pass over the base classes to collect those that
5010  // inherit constructors from. If there are none, we can forgo all further
5011  // processing.
5012  typedef llvm::SmallVector<const RecordType *, 4> BasesVector;
5013  BasesVector BasesToInheritFrom;
5014  for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
5015                                          BaseE = ClassDecl->bases_end();
5016         BaseIt != BaseE; ++BaseIt) {
5017    if (BaseIt->getInheritConstructors()) {
5018      QualType Base = BaseIt->getType();
5019      if (Base->isDependentType()) {
5020        // If we inherit constructors from anything that is dependent, just
5021        // abort processing altogether. We'll get another chance for the
5022        // instantiations.
5023        return;
5024      }
5025      BasesToInheritFrom.push_back(Base->castAs<RecordType>());
5026    }
5027  }
5028  if (BasesToInheritFrom.empty())
5029    return;
5030
5031  // Now collect the constructors that we already have in the current class.
5032  // Those take precedence over inherited constructors.
5033  // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
5034  //   unless there is a user-declared constructor with the same signature in
5035  //   the class where the using-declaration appears.
5036  llvm::SmallSet<const Type *, 8> ExistingConstructors;
5037  for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
5038                                    CtorE = ClassDecl->ctor_end();
5039       CtorIt != CtorE; ++CtorIt) {
5040    ExistingConstructors.insert(
5041        Context.getCanonicalType(CtorIt->getType()).getTypePtr());
5042  }
5043
5044  Scope *S = getScopeForContext(ClassDecl);
5045  DeclarationName CreatedCtorName =
5046      Context.DeclarationNames.getCXXConstructorName(
5047          ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
5048
5049  // Now comes the true work.
5050  // First, we keep a map from constructor types to the base that introduced
5051  // them. Needed for finding conflicting constructors. We also keep the
5052  // actually inserted declarations in there, for pretty diagnostics.
5053  typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
5054  typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
5055  ConstructorToSourceMap InheritedConstructors;
5056  for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
5057                             BaseE = BasesToInheritFrom.end();
5058       BaseIt != BaseE; ++BaseIt) {
5059    const RecordType *Base = *BaseIt;
5060    CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
5061    CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
5062    for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
5063                                      CtorE = BaseDecl->ctor_end();
5064         CtorIt != CtorE; ++CtorIt) {
5065      // Find the using declaration for inheriting this base's constructors.
5066      DeclarationName Name =
5067          Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
5068      UsingDecl *UD = dyn_cast_or_null<UsingDecl>(
5069          LookupSingleName(S, Name,SourceLocation(), LookupUsingDeclName));
5070      SourceLocation UsingLoc = UD ? UD->getLocation() :
5071                                     ClassDecl->getLocation();
5072
5073      // C++0x [class.inhctor]p1: The candidate set of inherited constructors
5074      //   from the class X named in the using-declaration consists of actual
5075      //   constructors and notional constructors that result from the
5076      //   transformation of defaulted parameters as follows:
5077      //   - all non-template default constructors of X, and
5078      //   - for each non-template constructor of X that has at least one
5079      //     parameter with a default argument, the set of constructors that
5080      //     results from omitting any ellipsis parameter specification and
5081      //     successively omitting parameters with a default argument from the
5082      //     end of the parameter-type-list.
5083      CXXConstructorDecl *BaseCtor = *CtorIt;
5084      bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
5085      const FunctionProtoType *BaseCtorType =
5086          BaseCtor->getType()->getAs<FunctionProtoType>();
5087
5088      for (unsigned params = BaseCtor->getMinRequiredArguments(),
5089                    maxParams = BaseCtor->getNumParams();
5090           params <= maxParams; ++params) {
5091        // Skip default constructors. They're never inherited.
5092        if (params == 0)
5093          continue;
5094        // Skip copy and move constructors for the same reason.
5095        if (CanBeCopyOrMove && params == 1)
5096          continue;
5097
5098        // Build up a function type for this particular constructor.
5099        // FIXME: The working paper does not consider that the exception spec
5100        // for the inheriting constructor might be larger than that of the
5101        // source. This code doesn't yet, either.
5102        const Type *NewCtorType;
5103        if (params == maxParams)
5104          NewCtorType = BaseCtorType;
5105        else {
5106          llvm::SmallVector<QualType, 16> Args;
5107          for (unsigned i = 0; i < params; ++i) {
5108            Args.push_back(BaseCtorType->getArgType(i));
5109          }
5110          FunctionProtoType::ExtProtoInfo ExtInfo =
5111              BaseCtorType->getExtProtoInfo();
5112          ExtInfo.Variadic = false;
5113          NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
5114                                                Args.data(), params, ExtInfo)
5115                       .getTypePtr();
5116        }
5117        const Type *CanonicalNewCtorType =
5118            Context.getCanonicalType(NewCtorType);
5119
5120        // Now that we have the type, first check if the class already has a
5121        // constructor with this signature.
5122        if (ExistingConstructors.count(CanonicalNewCtorType))
5123          continue;
5124
5125        // Then we check if we have already declared an inherited constructor
5126        // with this signature.
5127        std::pair<ConstructorToSourceMap::iterator, bool> result =
5128            InheritedConstructors.insert(std::make_pair(
5129                CanonicalNewCtorType,
5130                std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
5131        if (!result.second) {
5132          // Already in the map. If it came from a different class, that's an
5133          // error. Not if it's from the same.
5134          CanQualType PreviousBase = result.first->second.first;
5135          if (CanonicalBase != PreviousBase) {
5136            const CXXConstructorDecl *PrevCtor = result.first->second.second;
5137            const CXXConstructorDecl *PrevBaseCtor =
5138                PrevCtor->getInheritedConstructor();
5139            assert(PrevBaseCtor && "Conflicting constructor was not inherited");
5140
5141            Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
5142            Diag(BaseCtor->getLocation(),
5143                 diag::note_using_decl_constructor_conflict_current_ctor);
5144            Diag(PrevBaseCtor->getLocation(),
5145                 diag::note_using_decl_constructor_conflict_previous_ctor);
5146            Diag(PrevCtor->getLocation(),
5147                 diag::note_using_decl_constructor_conflict_previous_using);
5148          }
5149          continue;
5150        }
5151
5152        // OK, we're there, now add the constructor.
5153        // C++0x [class.inhctor]p8: [...] that would be performed by a
5154        //   user-writtern inline constructor [...]
5155        DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
5156        CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
5157            Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
5158            /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
5159            /*ImplicitlyDeclared=*/true,
5160            /*isExplicitlyDefaulted*/false);
5161        NewCtor->setAccess(BaseCtor->getAccess());
5162
5163        // Build up the parameter decls and add them.
5164        llvm::SmallVector<ParmVarDecl *, 16> ParamDecls;
5165        for (unsigned i = 0; i < params; ++i) {
5166          ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
5167                                                   UsingLoc, UsingLoc,
5168                                                   /*IdentifierInfo=*/0,
5169                                                   BaseCtorType->getArgType(i),
5170                                                   /*TInfo=*/0, SC_None,
5171                                                   SC_None, /*DefaultArg=*/0));
5172        }
5173        NewCtor->setParams(ParamDecls.data(), ParamDecls.size());
5174        NewCtor->setInheritedConstructor(BaseCtor);
5175
5176        PushOnScopeChains(NewCtor, S, false);
5177        ClassDecl->addDecl(NewCtor);
5178        result.first->second.second = NewCtor;
5179      }
5180    }
5181  }
5182}
5183
5184CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
5185  // C++ [class.dtor]p2:
5186  //   If a class has no user-declared destructor, a destructor is
5187  //   declared implicitly. An implicitly-declared destructor is an
5188  //   inline public member of its class.
5189
5190  // C++ [except.spec]p14:
5191  //   An implicitly declared special member function (Clause 12) shall have
5192  //   an exception-specification.
5193  ImplicitExceptionSpecification ExceptSpec(Context);
5194
5195  // Direct base-class destructors.
5196  for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
5197                                       BEnd = ClassDecl->bases_end();
5198       B != BEnd; ++B) {
5199    if (B->isVirtual()) // Handled below.
5200      continue;
5201
5202    if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
5203      ExceptSpec.CalledDecl(
5204                    LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
5205  }
5206
5207  // Virtual base-class destructors.
5208  for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
5209                                       BEnd = ClassDecl->vbases_end();
5210       B != BEnd; ++B) {
5211    if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
5212      ExceptSpec.CalledDecl(
5213                    LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
5214  }
5215
5216  // Field destructors.
5217  for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
5218                               FEnd = ClassDecl->field_end();
5219       F != FEnd; ++F) {
5220    if (const RecordType *RecordTy
5221        = Context.getBaseElementType(F->getType())->getAs<RecordType>())
5222      ExceptSpec.CalledDecl(
5223                    LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
5224  }
5225
5226  // Create the actual destructor declaration.
5227  FunctionProtoType::ExtProtoInfo EPI;
5228  EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
5229  EPI.NumExceptions = ExceptSpec.size();
5230  EPI.Exceptions = ExceptSpec.data();
5231  QualType Ty = Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
5232
5233  CanQualType ClassType
5234    = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
5235  SourceLocation ClassLoc = ClassDecl->getLocation();
5236  DeclarationName Name
5237    = Context.DeclarationNames.getCXXDestructorName(ClassType);
5238  DeclarationNameInfo NameInfo(Name, ClassLoc);
5239  CXXDestructorDecl *Destructor
5240      = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, Ty, 0,
5241                                  /*isInline=*/true,
5242                                  /*isImplicitlyDeclared=*/true);
5243  Destructor->setAccess(AS_public);
5244  Destructor->setImplicit();
5245  Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
5246
5247  // Note that we have declared this destructor.
5248  ++ASTContext::NumImplicitDestructorsDeclared;
5249
5250  // Introduce this destructor into its scope.
5251  if (Scope *S = getScopeForContext(ClassDecl))
5252    PushOnScopeChains(Destructor, S, false);
5253  ClassDecl->addDecl(Destructor);
5254
5255  // This could be uniqued if it ever proves significant.
5256  Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
5257
5258  AddOverriddenMethods(ClassDecl, Destructor);
5259
5260  return Destructor;
5261}
5262
5263void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
5264                                    CXXDestructorDecl *Destructor) {
5265  assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
5266         "DefineImplicitDestructor - call it for implicit default dtor");
5267  CXXRecordDecl *ClassDecl = Destructor->getParent();
5268  assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
5269
5270  if (Destructor->isInvalidDecl())
5271    return;
5272
5273  ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
5274
5275  DiagnosticErrorTrap Trap(Diags);
5276  MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
5277                                         Destructor->getParent());
5278
5279  if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
5280    Diag(CurrentLocation, diag::note_member_synthesized_at)
5281      << CXXDestructor << Context.getTagDeclType(ClassDecl);
5282
5283    Destructor->setInvalidDecl();
5284    return;
5285  }
5286
5287  SourceLocation Loc = Destructor->getLocation();
5288  Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
5289
5290  Destructor->setUsed();
5291  MarkVTableUsed(CurrentLocation, ClassDecl);
5292
5293  if (ASTMutationListener *L = getASTMutationListener()) {
5294    L->CompletedImplicitDefinition(Destructor);
5295  }
5296}
5297
5298/// \brief Builds a statement that copies the given entity from \p From to
5299/// \c To.
5300///
5301/// This routine is used to copy the members of a class with an
5302/// implicitly-declared copy assignment operator. When the entities being
5303/// copied are arrays, this routine builds for loops to copy them.
5304///
5305/// \param S The Sema object used for type-checking.
5306///
5307/// \param Loc The location where the implicit copy is being generated.
5308///
5309/// \param T The type of the expressions being copied. Both expressions must
5310/// have this type.
5311///
5312/// \param To The expression we are copying to.
5313///
5314/// \param From The expression we are copying from.
5315///
5316/// \param CopyingBaseSubobject Whether we're copying a base subobject.
5317/// Otherwise, it's a non-static member subobject.
5318///
5319/// \param Depth Internal parameter recording the depth of the recursion.
5320///
5321/// \returns A statement or a loop that copies the expressions.
5322static StmtResult
5323BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
5324                      Expr *To, Expr *From,
5325                      bool CopyingBaseSubobject, unsigned Depth = 0) {
5326  // C++0x [class.copy]p30:
5327  //   Each subobject is assigned in the manner appropriate to its type:
5328  //
5329  //     - if the subobject is of class type, the copy assignment operator
5330  //       for the class is used (as if by explicit qualification; that is,
5331  //       ignoring any possible virtual overriding functions in more derived
5332  //       classes);
5333  if (const RecordType *RecordTy = T->getAs<RecordType>()) {
5334    CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
5335
5336    // Look for operator=.
5337    DeclarationName Name
5338      = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5339    LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
5340    S.LookupQualifiedName(OpLookup, ClassDecl, false);
5341
5342    // Filter out any result that isn't a copy-assignment operator.
5343    LookupResult::Filter F = OpLookup.makeFilter();
5344    while (F.hasNext()) {
5345      NamedDecl *D = F.next();
5346      if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
5347        if (Method->isCopyAssignmentOperator())
5348          continue;
5349
5350      F.erase();
5351    }
5352    F.done();
5353
5354    // Suppress the protected check (C++ [class.protected]) for each of the
5355    // assignment operators we found. This strange dance is required when
5356    // we're assigning via a base classes's copy-assignment operator. To
5357    // ensure that we're getting the right base class subobject (without
5358    // ambiguities), we need to cast "this" to that subobject type; to
5359    // ensure that we don't go through the virtual call mechanism, we need
5360    // to qualify the operator= name with the base class (see below). However,
5361    // this means that if the base class has a protected copy assignment
5362    // operator, the protected member access check will fail. So, we
5363    // rewrite "protected" access to "public" access in this case, since we
5364    // know by construction that we're calling from a derived class.
5365    if (CopyingBaseSubobject) {
5366      for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
5367           L != LEnd; ++L) {
5368        if (L.getAccess() == AS_protected)
5369          L.setAccess(AS_public);
5370      }
5371    }
5372
5373    // Create the nested-name-specifier that will be used to qualify the
5374    // reference to operator=; this is required to suppress the virtual
5375    // call mechanism.
5376    CXXScopeSpec SS;
5377    SS.MakeTrivial(S.Context,
5378                   NestedNameSpecifier::Create(S.Context, 0, false,
5379                                               T.getTypePtr()),
5380                   Loc);
5381
5382    // Create the reference to operator=.
5383    ExprResult OpEqualRef
5384      = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
5385                                   /*FirstQualifierInScope=*/0, OpLookup,
5386                                   /*TemplateArgs=*/0,
5387                                   /*SuppressQualifierCheck=*/true);
5388    if (OpEqualRef.isInvalid())
5389      return StmtError();
5390
5391    // Build the call to the assignment operator.
5392
5393    ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
5394                                                  OpEqualRef.takeAs<Expr>(),
5395                                                  Loc, &From, 1, Loc);
5396    if (Call.isInvalid())
5397      return StmtError();
5398
5399    return S.Owned(Call.takeAs<Stmt>());
5400  }
5401
5402  //     - if the subobject is of scalar type, the built-in assignment
5403  //       operator is used.
5404  const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
5405  if (!ArrayTy) {
5406    ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
5407    if (Assignment.isInvalid())
5408      return StmtError();
5409
5410    return S.Owned(Assignment.takeAs<Stmt>());
5411  }
5412
5413  //     - if the subobject is an array, each element is assigned, in the
5414  //       manner appropriate to the element type;
5415
5416  // Construct a loop over the array bounds, e.g.,
5417  //
5418  //   for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
5419  //
5420  // that will copy each of the array elements.
5421  QualType SizeType = S.Context.getSizeType();
5422
5423  // Create the iteration variable.
5424  IdentifierInfo *IterationVarName = 0;
5425  {
5426    llvm::SmallString<8> Str;
5427    llvm::raw_svector_ostream OS(Str);
5428    OS << "__i" << Depth;
5429    IterationVarName = &S.Context.Idents.get(OS.str());
5430  }
5431  VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
5432                                          IterationVarName, SizeType,
5433                            S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
5434                                          SC_None, SC_None);
5435
5436  // Initialize the iteration variable to zero.
5437  llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
5438  IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
5439
5440  // Create a reference to the iteration variable; we'll use this several
5441  // times throughout.
5442  Expr *IterationVarRef
5443    = S.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc).take();
5444  assert(IterationVarRef && "Reference to invented variable cannot fail!");
5445
5446  // Create the DeclStmt that holds the iteration variable.
5447  Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
5448
5449  // Create the comparison against the array bound.
5450  llvm::APInt Upper
5451    = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
5452  Expr *Comparison
5453    = new (S.Context) BinaryOperator(IterationVarRef,
5454                     IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
5455                                     BO_NE, S.Context.BoolTy,
5456                                     VK_RValue, OK_Ordinary, Loc);
5457
5458  // Create the pre-increment of the iteration variable.
5459  Expr *Increment
5460    = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
5461                                    VK_LValue, OK_Ordinary, Loc);
5462
5463  // Subscript the "from" and "to" expressions with the iteration variable.
5464  From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
5465                                                         IterationVarRef, Loc));
5466  To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
5467                                                       IterationVarRef, Loc));
5468
5469  // Build the copy for an individual element of the array.
5470  StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
5471                                          To, From, CopyingBaseSubobject,
5472                                          Depth + 1);
5473  if (Copy.isInvalid())
5474    return StmtError();
5475
5476  // Construct the loop that copies all elements of this array.
5477  return S.ActOnForStmt(Loc, Loc, InitStmt,
5478                        S.MakeFullExpr(Comparison),
5479                        0, S.MakeFullExpr(Increment),
5480                        Loc, Copy.take());
5481}
5482
5483/// \brief Determine whether the given class has a copy assignment operator
5484/// that accepts a const-qualified argument.
5485static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
5486  CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
5487
5488  if (!Class->hasDeclaredCopyAssignment())
5489    S.DeclareImplicitCopyAssignment(Class);
5490
5491  QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
5492  DeclarationName OpName
5493    = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5494
5495  DeclContext::lookup_const_iterator Op, OpEnd;
5496  for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
5497    // C++ [class.copy]p9:
5498    //   A user-declared copy assignment operator is a non-static non-template
5499    //   member function of class X with exactly one parameter of type X, X&,
5500    //   const X&, volatile X& or const volatile X&.
5501    const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
5502    if (!Method)
5503      continue;
5504
5505    if (Method->isStatic())
5506      continue;
5507    if (Method->getPrimaryTemplate())
5508      continue;
5509    const FunctionProtoType *FnType =
5510    Method->getType()->getAs<FunctionProtoType>();
5511    assert(FnType && "Overloaded operator has no prototype.");
5512    // Don't assert on this; an invalid decl might have been left in the AST.
5513    if (FnType->getNumArgs() != 1 || FnType->isVariadic())
5514      continue;
5515    bool AcceptsConst = true;
5516    QualType ArgType = FnType->getArgType(0);
5517    if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
5518      ArgType = Ref->getPointeeType();
5519      // Is it a non-const lvalue reference?
5520      if (!ArgType.isConstQualified())
5521        AcceptsConst = false;
5522    }
5523    if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
5524      continue;
5525
5526    // We have a single argument of type cv X or cv X&, i.e. we've found the
5527    // copy assignment operator. Return whether it accepts const arguments.
5528    return AcceptsConst;
5529  }
5530  assert(Class->isInvalidDecl() &&
5531         "No copy assignment operator declared in valid code.");
5532  return false;
5533}
5534
5535CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
5536  // Note: The following rules are largely analoguous to the copy
5537  // constructor rules. Note that virtual bases are not taken into account
5538  // for determining the argument type of the operator. Note also that
5539  // operators taking an object instead of a reference are allowed.
5540
5541
5542  // C++ [class.copy]p10:
5543  //   If the class definition does not explicitly declare a copy
5544  //   assignment operator, one is declared implicitly.
5545  //   The implicitly-defined copy assignment operator for a class X
5546  //   will have the form
5547  //
5548  //       X& X::operator=(const X&)
5549  //
5550  //   if
5551  bool HasConstCopyAssignment = true;
5552
5553  //       -- each direct base class B of X has a copy assignment operator
5554  //          whose parameter is of type const B&, const volatile B& or B,
5555  //          and
5556  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5557                                       BaseEnd = ClassDecl->bases_end();
5558       HasConstCopyAssignment && Base != BaseEnd; ++Base) {
5559    assert(!Base->getType()->isDependentType() &&
5560           "Cannot generate implicit members for class with dependent bases.");
5561    const CXXRecordDecl *BaseClassDecl
5562      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
5563    HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
5564  }
5565
5566  //       -- for all the nonstatic data members of X that are of a class
5567  //          type M (or array thereof), each such class type has a copy
5568  //          assignment operator whose parameter is of type const M&,
5569  //          const volatile M& or M.
5570  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5571                                  FieldEnd = ClassDecl->field_end();
5572       HasConstCopyAssignment && Field != FieldEnd;
5573       ++Field) {
5574    QualType FieldType = Context.getBaseElementType((*Field)->getType());
5575    if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
5576      const CXXRecordDecl *FieldClassDecl
5577        = cast<CXXRecordDecl>(FieldClassType->getDecl());
5578      HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
5579    }
5580  }
5581
5582  //   Otherwise, the implicitly declared copy assignment operator will
5583  //   have the form
5584  //
5585  //       X& X::operator=(X&)
5586  QualType ArgType = Context.getTypeDeclType(ClassDecl);
5587  QualType RetType = Context.getLValueReferenceType(ArgType);
5588  if (HasConstCopyAssignment)
5589    ArgType = ArgType.withConst();
5590  ArgType = Context.getLValueReferenceType(ArgType);
5591
5592  // C++ [except.spec]p14:
5593  //   An implicitly declared special member function (Clause 12) shall have an
5594  //   exception-specification. [...]
5595  ImplicitExceptionSpecification ExceptSpec(Context);
5596  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5597                                       BaseEnd = ClassDecl->bases_end();
5598       Base != BaseEnd; ++Base) {
5599    CXXRecordDecl *BaseClassDecl
5600      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
5601
5602    if (!BaseClassDecl->hasDeclaredCopyAssignment())
5603      DeclareImplicitCopyAssignment(BaseClassDecl);
5604
5605    if (CXXMethodDecl *CopyAssign
5606           = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
5607      ExceptSpec.CalledDecl(CopyAssign);
5608  }
5609  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5610                                  FieldEnd = ClassDecl->field_end();
5611       Field != FieldEnd;
5612       ++Field) {
5613    QualType FieldType = Context.getBaseElementType((*Field)->getType());
5614    if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
5615      CXXRecordDecl *FieldClassDecl
5616        = cast<CXXRecordDecl>(FieldClassType->getDecl());
5617
5618      if (!FieldClassDecl->hasDeclaredCopyAssignment())
5619        DeclareImplicitCopyAssignment(FieldClassDecl);
5620
5621      if (CXXMethodDecl *CopyAssign
5622            = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
5623        ExceptSpec.CalledDecl(CopyAssign);
5624    }
5625  }
5626
5627  //   An implicitly-declared copy assignment operator is an inline public
5628  //   member of its class.
5629  FunctionProtoType::ExtProtoInfo EPI;
5630  EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
5631  EPI.NumExceptions = ExceptSpec.size();
5632  EPI.Exceptions = ExceptSpec.data();
5633  DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5634  SourceLocation ClassLoc = ClassDecl->getLocation();
5635  DeclarationNameInfo NameInfo(Name, ClassLoc);
5636  CXXMethodDecl *CopyAssignment
5637    = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
5638                            Context.getFunctionType(RetType, &ArgType, 1, EPI),
5639                            /*TInfo=*/0, /*isStatic=*/false,
5640                            /*StorageClassAsWritten=*/SC_None,
5641                            /*isInline=*/true,
5642                            SourceLocation());
5643  CopyAssignment->setAccess(AS_public);
5644  CopyAssignment->setImplicit();
5645  CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
5646
5647  // Add the parameter to the operator.
5648  ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
5649                                               ClassLoc, ClassLoc, /*Id=*/0,
5650                                               ArgType, /*TInfo=*/0,
5651                                               SC_None,
5652                                               SC_None, 0);
5653  CopyAssignment->setParams(&FromParam, 1);
5654
5655  // Note that we have added this copy-assignment operator.
5656  ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
5657
5658  if (Scope *S = getScopeForContext(ClassDecl))
5659    PushOnScopeChains(CopyAssignment, S, false);
5660  ClassDecl->addDecl(CopyAssignment);
5661
5662  AddOverriddenMethods(ClassDecl, CopyAssignment);
5663  return CopyAssignment;
5664}
5665
5666void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
5667                                        CXXMethodDecl *CopyAssignOperator) {
5668  assert((CopyAssignOperator->isImplicit() &&
5669          CopyAssignOperator->isOverloadedOperator() &&
5670          CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
5671          !CopyAssignOperator->isUsed(false)) &&
5672         "DefineImplicitCopyAssignment called for wrong function");
5673
5674  CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
5675
5676  if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
5677    CopyAssignOperator->setInvalidDecl();
5678    return;
5679  }
5680
5681  CopyAssignOperator->setUsed();
5682
5683  ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
5684  DiagnosticErrorTrap Trap(Diags);
5685
5686  // C++0x [class.copy]p30:
5687  //   The implicitly-defined or explicitly-defaulted copy assignment operator
5688  //   for a non-union class X performs memberwise copy assignment of its
5689  //   subobjects. The direct base classes of X are assigned first, in the
5690  //   order of their declaration in the base-specifier-list, and then the
5691  //   immediate non-static data members of X are assigned, in the order in
5692  //   which they were declared in the class definition.
5693
5694  // The statements that form the synthesized function body.
5695  ASTOwningVector<Stmt*> Statements(*this);
5696
5697  // The parameter for the "other" object, which we are copying from.
5698  ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
5699  Qualifiers OtherQuals = Other->getType().getQualifiers();
5700  QualType OtherRefType = Other->getType();
5701  if (const LValueReferenceType *OtherRef
5702                                = OtherRefType->getAs<LValueReferenceType>()) {
5703    OtherRefType = OtherRef->getPointeeType();
5704    OtherQuals = OtherRefType.getQualifiers();
5705  }
5706
5707  // Our location for everything implicitly-generated.
5708  SourceLocation Loc = CopyAssignOperator->getLocation();
5709
5710  // Construct a reference to the "other" object. We'll be using this
5711  // throughout the generated ASTs.
5712  Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
5713  assert(OtherRef && "Reference to parameter cannot fail!");
5714
5715  // Construct the "this" pointer. We'll be using this throughout the generated
5716  // ASTs.
5717  Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
5718  assert(This && "Reference to this cannot fail!");
5719
5720  // Assign base classes.
5721  bool Invalid = false;
5722  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5723       E = ClassDecl->bases_end(); Base != E; ++Base) {
5724    // Form the assignment:
5725    //   static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
5726    QualType BaseType = Base->getType().getUnqualifiedType();
5727    if (!BaseType->isRecordType()) {
5728      Invalid = true;
5729      continue;
5730    }
5731
5732    CXXCastPath BasePath;
5733    BasePath.push_back(Base);
5734
5735    // Construct the "from" expression, which is an implicit cast to the
5736    // appropriately-qualified base type.
5737    Expr *From = OtherRef;
5738    From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
5739                             CK_UncheckedDerivedToBase,
5740                             VK_LValue, &BasePath).take();
5741
5742    // Dereference "this".
5743    ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
5744
5745    // Implicitly cast "this" to the appropriately-qualified base type.
5746    To = ImpCastExprToType(To.take(),
5747                           Context.getCVRQualifiedType(BaseType,
5748                                     CopyAssignOperator->getTypeQualifiers()),
5749                           CK_UncheckedDerivedToBase,
5750                           VK_LValue, &BasePath);
5751
5752    // Build the copy.
5753    StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
5754                                            To.get(), From,
5755                                            /*CopyingBaseSubobject=*/true);
5756    if (Copy.isInvalid()) {
5757      Diag(CurrentLocation, diag::note_member_synthesized_at)
5758        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5759      CopyAssignOperator->setInvalidDecl();
5760      return;
5761    }
5762
5763    // Success! Record the copy.
5764    Statements.push_back(Copy.takeAs<Expr>());
5765  }
5766
5767  // \brief Reference to the __builtin_memcpy function.
5768  Expr *BuiltinMemCpyRef = 0;
5769  // \brief Reference to the __builtin_objc_memmove_collectable function.
5770  Expr *CollectableMemCpyRef = 0;
5771
5772  // Assign non-static members.
5773  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5774                                  FieldEnd = ClassDecl->field_end();
5775       Field != FieldEnd; ++Field) {
5776    // Check for members of reference type; we can't copy those.
5777    if (Field->getType()->isReferenceType()) {
5778      Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5779        << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
5780      Diag(Field->getLocation(), diag::note_declared_at);
5781      Diag(CurrentLocation, diag::note_member_synthesized_at)
5782        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5783      Invalid = true;
5784      continue;
5785    }
5786
5787    // Check for members of const-qualified, non-class type.
5788    QualType BaseType = Context.getBaseElementType(Field->getType());
5789    if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
5790      Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5791        << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
5792      Diag(Field->getLocation(), diag::note_declared_at);
5793      Diag(CurrentLocation, diag::note_member_synthesized_at)
5794        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5795      Invalid = true;
5796      continue;
5797    }
5798
5799    QualType FieldType = Field->getType().getNonReferenceType();
5800    if (FieldType->isIncompleteArrayType()) {
5801      assert(ClassDecl->hasFlexibleArrayMember() &&
5802             "Incomplete array type is not valid");
5803      continue;
5804    }
5805
5806    // Build references to the field in the object we're copying from and to.
5807    CXXScopeSpec SS; // Intentionally empty
5808    LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
5809                              LookupMemberName);
5810    MemberLookup.addDecl(*Field);
5811    MemberLookup.resolveKind();
5812    ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
5813                                               Loc, /*IsArrow=*/false,
5814                                               SS, 0, MemberLookup, 0);
5815    ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
5816                                             Loc, /*IsArrow=*/true,
5817                                             SS, 0, MemberLookup, 0);
5818    assert(!From.isInvalid() && "Implicit field reference cannot fail");
5819    assert(!To.isInvalid() && "Implicit field reference cannot fail");
5820
5821    // If the field should be copied with __builtin_memcpy rather than via
5822    // explicit assignments, do so. This optimization only applies for arrays
5823    // of scalars and arrays of class type with trivial copy-assignment
5824    // operators.
5825    if (FieldType->isArrayType() &&
5826        (!BaseType->isRecordType() ||
5827         cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
5828           ->hasTrivialCopyAssignment())) {
5829      // Compute the size of the memory buffer to be copied.
5830      QualType SizeType = Context.getSizeType();
5831      llvm::APInt Size(Context.getTypeSize(SizeType),
5832                       Context.getTypeSizeInChars(BaseType).getQuantity());
5833      for (const ConstantArrayType *Array
5834              = Context.getAsConstantArrayType(FieldType);
5835           Array;
5836           Array = Context.getAsConstantArrayType(Array->getElementType())) {
5837        llvm::APInt ArraySize
5838          = Array->getSize().zextOrTrunc(Size.getBitWidth());
5839        Size *= ArraySize;
5840      }
5841
5842      // Take the address of the field references for "from" and "to".
5843      From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
5844      To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
5845
5846      bool NeedsCollectableMemCpy =
5847          (BaseType->isRecordType() &&
5848           BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
5849
5850      if (NeedsCollectableMemCpy) {
5851        if (!CollectableMemCpyRef) {
5852          // Create a reference to the __builtin_objc_memmove_collectable function.
5853          LookupResult R(*this,
5854                         &Context.Idents.get("__builtin_objc_memmove_collectable"),
5855                         Loc, LookupOrdinaryName);
5856          LookupName(R, TUScope, true);
5857
5858          FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5859          if (!CollectableMemCpy) {
5860            // Something went horribly wrong earlier, and we will have
5861            // complained about it.
5862            Invalid = true;
5863            continue;
5864          }
5865
5866          CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5867                                                  CollectableMemCpy->getType(),
5868                                                  VK_LValue, Loc, 0).take();
5869          assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5870        }
5871      }
5872      // Create a reference to the __builtin_memcpy builtin function.
5873      else if (!BuiltinMemCpyRef) {
5874        LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5875                       LookupOrdinaryName);
5876        LookupName(R, TUScope, true);
5877
5878        FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5879        if (!BuiltinMemCpy) {
5880          // Something went horribly wrong earlier, and we will have complained
5881          // about it.
5882          Invalid = true;
5883          continue;
5884        }
5885
5886        BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5887                                            BuiltinMemCpy->getType(),
5888                                            VK_LValue, Loc, 0).take();
5889        assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5890      }
5891
5892      ASTOwningVector<Expr*> CallArgs(*this);
5893      CallArgs.push_back(To.takeAs<Expr>());
5894      CallArgs.push_back(From.takeAs<Expr>());
5895      CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
5896      ExprResult Call = ExprError();
5897      if (NeedsCollectableMemCpy)
5898        Call = ActOnCallExpr(/*Scope=*/0,
5899                             CollectableMemCpyRef,
5900                             Loc, move_arg(CallArgs),
5901                             Loc);
5902      else
5903        Call = ActOnCallExpr(/*Scope=*/0,
5904                             BuiltinMemCpyRef,
5905                             Loc, move_arg(CallArgs),
5906                             Loc);
5907
5908      assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5909      Statements.push_back(Call.takeAs<Expr>());
5910      continue;
5911    }
5912
5913    // Build the copy of this field.
5914    StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
5915                                                  To.get(), From.get(),
5916                                              /*CopyingBaseSubobject=*/false);
5917    if (Copy.isInvalid()) {
5918      Diag(CurrentLocation, diag::note_member_synthesized_at)
5919        << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5920      CopyAssignOperator->setInvalidDecl();
5921      return;
5922    }
5923
5924    // Success! Record the copy.
5925    Statements.push_back(Copy.takeAs<Stmt>());
5926  }
5927
5928  if (!Invalid) {
5929    // Add a "return *this;"
5930    ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
5931
5932    StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
5933    if (Return.isInvalid())
5934      Invalid = true;
5935    else {
5936      Statements.push_back(Return.takeAs<Stmt>());
5937
5938      if (Trap.hasErrorOccurred()) {
5939        Diag(CurrentLocation, diag::note_member_synthesized_at)
5940          << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5941        Invalid = true;
5942      }
5943    }
5944  }
5945
5946  if (Invalid) {
5947    CopyAssignOperator->setInvalidDecl();
5948    return;
5949  }
5950
5951  StmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
5952                                            /*isStmtExpr=*/false);
5953  assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5954  CopyAssignOperator->setBody(Body.takeAs<Stmt>());
5955
5956  if (ASTMutationListener *L = getASTMutationListener()) {
5957    L->CompletedImplicitDefinition(CopyAssignOperator);
5958  }
5959}
5960
5961CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5962                                                    CXXRecordDecl *ClassDecl) {
5963  // C++ [class.copy]p4:
5964  //   If the class definition does not explicitly declare a copy
5965  //   constructor, one is declared implicitly.
5966
5967  // C++ [class.copy]p5:
5968  //   The implicitly-declared copy constructor for a class X will
5969  //   have the form
5970  //
5971  //       X::X(const X&)
5972  //
5973  //   if
5974  bool HasConstCopyConstructor = true;
5975
5976  //     -- each direct or virtual base class B of X has a copy
5977  //        constructor whose first parameter is of type const B& or
5978  //        const volatile B&, and
5979  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5980                                       BaseEnd = ClassDecl->bases_end();
5981       HasConstCopyConstructor && Base != BaseEnd;
5982       ++Base) {
5983    // Virtual bases are handled below.
5984    if (Base->isVirtual())
5985      continue;
5986
5987    CXXRecordDecl *BaseClassDecl
5988      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
5989    if (!BaseClassDecl->hasDeclaredCopyConstructor())
5990      DeclareImplicitCopyConstructor(BaseClassDecl);
5991
5992    HasConstCopyConstructor
5993      = BaseClassDecl->hasConstCopyConstructor(Context);
5994  }
5995
5996  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5997                                       BaseEnd = ClassDecl->vbases_end();
5998       HasConstCopyConstructor && Base != BaseEnd;
5999       ++Base) {
6000    CXXRecordDecl *BaseClassDecl
6001      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
6002    if (!BaseClassDecl->hasDeclaredCopyConstructor())
6003      DeclareImplicitCopyConstructor(BaseClassDecl);
6004
6005    HasConstCopyConstructor
6006      = BaseClassDecl->hasConstCopyConstructor(Context);
6007  }
6008
6009  //     -- for all the nonstatic data members of X that are of a
6010  //        class type M (or array thereof), each such class type
6011  //        has a copy constructor whose first parameter is of type
6012  //        const M& or const volatile M&.
6013  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
6014                                  FieldEnd = ClassDecl->field_end();
6015       HasConstCopyConstructor && Field != FieldEnd;
6016       ++Field) {
6017    QualType FieldType = Context.getBaseElementType((*Field)->getType());
6018    if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
6019      CXXRecordDecl *FieldClassDecl
6020        = cast<CXXRecordDecl>(FieldClassType->getDecl());
6021      if (!FieldClassDecl->hasDeclaredCopyConstructor())
6022        DeclareImplicitCopyConstructor(FieldClassDecl);
6023
6024      HasConstCopyConstructor
6025        = FieldClassDecl->hasConstCopyConstructor(Context);
6026    }
6027  }
6028
6029  //   Otherwise, the implicitly declared copy constructor will have
6030  //   the form
6031  //
6032  //       X::X(X&)
6033  QualType ClassType = Context.getTypeDeclType(ClassDecl);
6034  QualType ArgType = ClassType;
6035  if (HasConstCopyConstructor)
6036    ArgType = ArgType.withConst();
6037  ArgType = Context.getLValueReferenceType(ArgType);
6038
6039  // C++ [except.spec]p14:
6040  //   An implicitly declared special member function (Clause 12) shall have an
6041  //   exception-specification. [...]
6042  ImplicitExceptionSpecification ExceptSpec(Context);
6043  unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
6044  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
6045                                       BaseEnd = ClassDecl->bases_end();
6046       Base != BaseEnd;
6047       ++Base) {
6048    // Virtual bases are handled below.
6049    if (Base->isVirtual())
6050      continue;
6051
6052    CXXRecordDecl *BaseClassDecl
6053      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
6054    if (!BaseClassDecl->hasDeclaredCopyConstructor())
6055      DeclareImplicitCopyConstructor(BaseClassDecl);
6056
6057    if (CXXConstructorDecl *CopyConstructor
6058                          = BaseClassDecl->getCopyConstructor(Context, Quals))
6059      ExceptSpec.CalledDecl(CopyConstructor);
6060  }
6061  for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
6062                                       BaseEnd = ClassDecl->vbases_end();
6063       Base != BaseEnd;
6064       ++Base) {
6065    CXXRecordDecl *BaseClassDecl
6066      = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
6067    if (!BaseClassDecl->hasDeclaredCopyConstructor())
6068      DeclareImplicitCopyConstructor(BaseClassDecl);
6069
6070    if (CXXConstructorDecl *CopyConstructor
6071                          = BaseClassDecl->getCopyConstructor(Context, Quals))
6072      ExceptSpec.CalledDecl(CopyConstructor);
6073  }
6074  for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
6075                                  FieldEnd = ClassDecl->field_end();
6076       Field != FieldEnd;
6077       ++Field) {
6078    QualType FieldType = Context.getBaseElementType((*Field)->getType());
6079    if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
6080      CXXRecordDecl *FieldClassDecl
6081        = cast<CXXRecordDecl>(FieldClassType->getDecl());
6082      if (!FieldClassDecl->hasDeclaredCopyConstructor())
6083        DeclareImplicitCopyConstructor(FieldClassDecl);
6084
6085      if (CXXConstructorDecl *CopyConstructor
6086                          = FieldClassDecl->getCopyConstructor(Context, Quals))
6087        ExceptSpec.CalledDecl(CopyConstructor);
6088    }
6089  }
6090
6091  //   An implicitly-declared copy constructor is an inline public
6092  //   member of its class.
6093  FunctionProtoType::ExtProtoInfo EPI;
6094  EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
6095  EPI.NumExceptions = ExceptSpec.size();
6096  EPI.Exceptions = ExceptSpec.data();
6097  DeclarationName Name
6098    = Context.DeclarationNames.getCXXConstructorName(
6099                                           Context.getCanonicalType(ClassType));
6100  SourceLocation ClassLoc = ClassDecl->getLocation();
6101  DeclarationNameInfo NameInfo(Name, ClassLoc);
6102  CXXConstructorDecl *CopyConstructor
6103    = CXXConstructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
6104                                 Context.getFunctionType(Context.VoidTy,
6105                                                         &ArgType, 1, EPI),
6106                                 /*TInfo=*/0,
6107                                 /*isExplicit=*/false,
6108                                 /*isInline=*/true,
6109                                 /*isImplicitlyDeclared=*/true,
6110                                 /*isExplicitlyDefaulted=*/false);
6111  CopyConstructor->setAccess(AS_public);
6112  CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
6113
6114  // Note that we have declared this constructor.
6115  ++ASTContext::NumImplicitCopyConstructorsDeclared;
6116
6117  // Add the parameter to the constructor.
6118  ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
6119                                               ClassLoc, ClassLoc,
6120                                               /*IdentifierInfo=*/0,
6121                                               ArgType, /*TInfo=*/0,
6122                                               SC_None,
6123                                               SC_None, 0);
6124  CopyConstructor->setParams(&FromParam, 1);
6125  if (Scope *S = getScopeForContext(ClassDecl))
6126    PushOnScopeChains(CopyConstructor, S, false);
6127  ClassDecl->addDecl(CopyConstructor);
6128
6129  return CopyConstructor;
6130}
6131
6132void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
6133                                   CXXConstructorDecl *CopyConstructor,
6134                                   unsigned TypeQuals) {
6135  assert((CopyConstructor->isImplicit() &&
6136          CopyConstructor->isCopyConstructor(TypeQuals) &&
6137          !CopyConstructor->isUsed(false)) &&
6138         "DefineImplicitCopyConstructor - call it for implicit copy ctor");
6139
6140  CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
6141  assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
6142
6143  ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
6144  DiagnosticErrorTrap Trap(Diags);
6145
6146  if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
6147      Trap.hasErrorOccurred()) {
6148    Diag(CurrentLocation, diag::note_member_synthesized_at)
6149      << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
6150    CopyConstructor->setInvalidDecl();
6151  }  else {
6152    CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
6153                                               CopyConstructor->getLocation(),
6154                                               MultiStmtArg(*this, 0, 0),
6155                                               /*isStmtExpr=*/false)
6156                                                              .takeAs<Stmt>());
6157  }
6158
6159  CopyConstructor->setUsed();
6160
6161  if (ASTMutationListener *L = getASTMutationListener()) {
6162    L->CompletedImplicitDefinition(CopyConstructor);
6163  }
6164}
6165
6166ExprResult
6167Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
6168                            CXXConstructorDecl *Constructor,
6169                            MultiExprArg ExprArgs,
6170                            bool RequiresZeroInit,
6171                            unsigned ConstructKind,
6172                            SourceRange ParenRange) {
6173  bool Elidable = false;
6174
6175  // C++0x [class.copy]p34:
6176  //   When certain criteria are met, an implementation is allowed to
6177  //   omit the copy/move construction of a class object, even if the
6178  //   copy/move constructor and/or destructor for the object have
6179  //   side effects. [...]
6180  //     - when a temporary class object that has not been bound to a
6181  //       reference (12.2) would be copied/moved to a class object
6182  //       with the same cv-unqualified type, the copy/move operation
6183  //       can be omitted by constructing the temporary object
6184  //       directly into the target of the omitted copy/move
6185  if (ConstructKind == CXXConstructExpr::CK_Complete &&
6186      Constructor->isCopyOrMoveConstructor() && ExprArgs.size() >= 1) {
6187    Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
6188    Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
6189  }
6190
6191  return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
6192                               Elidable, move(ExprArgs), RequiresZeroInit,
6193                               ConstructKind, ParenRange);
6194}
6195
6196/// BuildCXXConstructExpr - Creates a complete call to a constructor,
6197/// including handling of its default argument expressions.
6198ExprResult
6199Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
6200                            CXXConstructorDecl *Constructor, bool Elidable,
6201                            MultiExprArg ExprArgs,
6202                            bool RequiresZeroInit,
6203                            unsigned ConstructKind,
6204                            SourceRange ParenRange) {
6205  unsigned NumExprs = ExprArgs.size();
6206  Expr **Exprs = (Expr **)ExprArgs.release();
6207
6208  for (specific_attr_iterator<NonNullAttr>
6209           i = Constructor->specific_attr_begin<NonNullAttr>(),
6210           e = Constructor->specific_attr_end<NonNullAttr>(); i != e; ++i) {
6211    const NonNullAttr *NonNull = *i;
6212    CheckNonNullArguments(NonNull, ExprArgs.get(), ConstructLoc);
6213  }
6214
6215  MarkDeclarationReferenced(ConstructLoc, Constructor);
6216  return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
6217                                        Constructor, Elidable, Exprs, NumExprs,
6218                                        RequiresZeroInit,
6219              static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
6220                                        ParenRange));
6221}
6222
6223bool Sema::InitializeVarWithConstructor(VarDecl *VD,
6224                                        CXXConstructorDecl *Constructor,
6225                                        MultiExprArg Exprs) {
6226  // FIXME: Provide the correct paren SourceRange when available.
6227  ExprResult TempResult =
6228    BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
6229                          move(Exprs), false, CXXConstructExpr::CK_Complete,
6230                          SourceRange());
6231  if (TempResult.isInvalid())
6232    return true;
6233
6234  Expr *Temp = TempResult.takeAs<Expr>();
6235  CheckImplicitConversions(Temp, VD->getLocation());
6236  MarkDeclarationReferenced(VD->getLocation(), Constructor);
6237  Temp = MaybeCreateExprWithCleanups(Temp);
6238  VD->setInit(Temp);
6239
6240  return false;
6241}
6242
6243void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
6244  if (VD->isInvalidDecl()) return;
6245
6246  CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
6247  if (ClassDecl->isInvalidDecl()) return;
6248  if (ClassDecl->hasTrivialDestructor()) return;
6249  if (ClassDecl->isDependentContext()) return;
6250
6251  CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
6252  MarkDeclarationReferenced(VD->getLocation(), Destructor);
6253  CheckDestructorAccess(VD->getLocation(), Destructor,
6254                        PDiag(diag::err_access_dtor_var)
6255                        << VD->getDeclName()
6256                        << VD->getType());
6257
6258  if (!VD->hasGlobalStorage()) return;
6259
6260  // Emit warning for non-trivial dtor in global scope (a real global,
6261  // class-static, function-static).
6262  Diag(VD->getLocation(), diag::warn_exit_time_destructor);
6263
6264  // TODO: this should be re-enabled for static locals by !CXAAtExit
6265  if (!VD->isStaticLocal())
6266    Diag(VD->getLocation(), diag::warn_global_destructor);
6267}
6268
6269/// AddCXXDirectInitializerToDecl - This action is called immediately after
6270/// ActOnDeclarator, when a C++ direct initializer is present.
6271/// e.g: "int x(1);"
6272void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
6273                                         SourceLocation LParenLoc,
6274                                         MultiExprArg Exprs,
6275                                         SourceLocation RParenLoc,
6276                                         bool TypeMayContainAuto) {
6277  assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
6278
6279  // If there is no declaration, there was an error parsing it.  Just ignore
6280  // the initializer.
6281  if (RealDecl == 0)
6282    return;
6283
6284  VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
6285  if (!VDecl) {
6286    Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
6287    RealDecl->setInvalidDecl();
6288    return;
6289  }
6290
6291  // C++0x [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
6292  if (TypeMayContainAuto && VDecl->getType()->getContainedAutoType()) {
6293    // FIXME: n3225 doesn't actually seem to indicate this is ill-formed
6294    if (Exprs.size() > 1) {
6295      Diag(Exprs.get()[1]->getSourceRange().getBegin(),
6296           diag::err_auto_var_init_multiple_expressions)
6297        << VDecl->getDeclName() << VDecl->getType()
6298        << VDecl->getSourceRange();
6299      RealDecl->setInvalidDecl();
6300      return;
6301    }
6302
6303    Expr *Init = Exprs.get()[0];
6304    TypeSourceInfo *DeducedType = 0;
6305    if (!DeduceAutoType(VDecl->getTypeSourceInfo(), Init, DeducedType))
6306      Diag(VDecl->getLocation(), diag::err_auto_var_deduction_failure)
6307        << VDecl->getDeclName() << VDecl->getType() << Init->getType()
6308        << Init->getSourceRange();
6309    if (!DeducedType) {
6310      RealDecl->setInvalidDecl();
6311      return;
6312    }
6313    VDecl->setTypeSourceInfo(DeducedType);
6314    VDecl->setType(DeducedType->getType());
6315
6316    // If this is a redeclaration, check that the type we just deduced matches
6317    // the previously declared type.
6318    if (VarDecl *Old = VDecl->getPreviousDeclaration())
6319      MergeVarDeclTypes(VDecl, Old);
6320  }
6321
6322  // We will represent direct-initialization similarly to copy-initialization:
6323  //    int x(1);  -as-> int x = 1;
6324  //    ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
6325  //
6326  // Clients that want to distinguish between the two forms, can check for
6327  // direct initializer using VarDecl::hasCXXDirectInitializer().
6328  // A major benefit is that clients that don't particularly care about which
6329  // exactly form was it (like the CodeGen) can handle both cases without
6330  // special case code.
6331
6332  // C++ 8.5p11:
6333  // The form of initialization (using parentheses or '=') is generally
6334  // insignificant, but does matter when the entity being initialized has a
6335  // class type.
6336
6337  if (!VDecl->getType()->isDependentType() &&
6338      RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
6339                          diag::err_typecheck_decl_incomplete_type)) {
6340    VDecl->setInvalidDecl();
6341    return;
6342  }
6343
6344  // The variable can not have an abstract class type.
6345  if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
6346                             diag::err_abstract_type_in_decl,
6347                             AbstractVariableType))
6348    VDecl->setInvalidDecl();
6349
6350  const VarDecl *Def;
6351  if ((Def = VDecl->getDefinition()) && Def != VDecl) {
6352    Diag(VDecl->getLocation(), diag::err_redefinition)
6353    << VDecl->getDeclName();
6354    Diag(Def->getLocation(), diag::note_previous_definition);
6355    VDecl->setInvalidDecl();
6356    return;
6357  }
6358
6359  // C++ [class.static.data]p4
6360  //   If a static data member is of const integral or const
6361  //   enumeration type, its declaration in the class definition can
6362  //   specify a constant-initializer which shall be an integral
6363  //   constant expression (5.19). In that case, the member can appear
6364  //   in integral constant expressions. The member shall still be
6365  //   defined in a namespace scope if it is used in the program and the
6366  //   namespace scope definition shall not contain an initializer.
6367  //
6368  // We already performed a redefinition check above, but for static
6369  // data members we also need to check whether there was an in-class
6370  // declaration with an initializer.
6371  const VarDecl* PrevInit = 0;
6372  if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
6373    Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
6374    Diag(PrevInit->getLocation(), diag::note_previous_definition);
6375    return;
6376  }
6377
6378  bool IsDependent = false;
6379  for (unsigned I = 0, N = Exprs.size(); I != N; ++I) {
6380    if (DiagnoseUnexpandedParameterPack(Exprs.get()[I], UPPC_Expression)) {
6381      VDecl->setInvalidDecl();
6382      return;
6383    }
6384
6385    if (Exprs.get()[I]->isTypeDependent())
6386      IsDependent = true;
6387  }
6388
6389  // If either the declaration has a dependent type or if any of the
6390  // expressions is type-dependent, we represent the initialization
6391  // via a ParenListExpr for later use during template instantiation.
6392  if (VDecl->getType()->isDependentType() || IsDependent) {
6393    // Let clients know that initialization was done with a direct initializer.
6394    VDecl->setCXXDirectInitializer(true);
6395
6396    // Store the initialization expressions as a ParenListExpr.
6397    unsigned NumExprs = Exprs.size();
6398    VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
6399                                               (Expr **)Exprs.release(),
6400                                               NumExprs, RParenLoc));
6401    return;
6402  }
6403
6404  // Capture the variable that is being initialized and the style of
6405  // initialization.
6406  InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
6407
6408  // FIXME: Poor source location information.
6409  InitializationKind Kind
6410    = InitializationKind::CreateDirect(VDecl->getLocation(),
6411                                       LParenLoc, RParenLoc);
6412
6413  InitializationSequence InitSeq(*this, Entity, Kind,
6414                                 Exprs.get(), Exprs.size());
6415  ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
6416  if (Result.isInvalid()) {
6417    VDecl->setInvalidDecl();
6418    return;
6419  }
6420
6421  CheckImplicitConversions(Result.get(), LParenLoc);
6422
6423  Result = MaybeCreateExprWithCleanups(Result);
6424  VDecl->setInit(Result.takeAs<Expr>());
6425  VDecl->setCXXDirectInitializer(true);
6426
6427  CheckCompleteVariableDeclaration(VDecl);
6428}
6429
6430/// \brief Given a constructor and the set of arguments provided for the
6431/// constructor, convert the arguments and add any required default arguments
6432/// to form a proper call to this constructor.
6433///
6434/// \returns true if an error occurred, false otherwise.
6435bool
6436Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
6437                              MultiExprArg ArgsPtr,
6438                              SourceLocation Loc,
6439                              ASTOwningVector<Expr*> &ConvertedArgs) {
6440  // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
6441  unsigned NumArgs = ArgsPtr.size();
6442  Expr **Args = (Expr **)ArgsPtr.get();
6443
6444  const FunctionProtoType *Proto
6445    = Constructor->getType()->getAs<FunctionProtoType>();
6446  assert(Proto && "Constructor without a prototype?");
6447  unsigned NumArgsInProto = Proto->getNumArgs();
6448
6449  // If too few arguments are available, we'll fill in the rest with defaults.
6450  if (NumArgs < NumArgsInProto)
6451    ConvertedArgs.reserve(NumArgsInProto);
6452  else
6453    ConvertedArgs.reserve(NumArgs);
6454
6455  VariadicCallType CallType =
6456    Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
6457  llvm::SmallVector<Expr *, 8> AllArgs;
6458  bool Invalid = GatherArgumentsForCall(Loc, Constructor,
6459                                        Proto, 0, Args, NumArgs, AllArgs,
6460                                        CallType);
6461  for (unsigned i =0, size = AllArgs.size(); i < size; i++)
6462    ConvertedArgs.push_back(AllArgs[i]);
6463  return Invalid;
6464}
6465
6466static inline bool
6467CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
6468                                       const FunctionDecl *FnDecl) {
6469  const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
6470  if (isa<NamespaceDecl>(DC)) {
6471    return SemaRef.Diag(FnDecl->getLocation(),
6472                        diag::err_operator_new_delete_declared_in_namespace)
6473      << FnDecl->getDeclName();
6474  }
6475
6476  if (isa<TranslationUnitDecl>(DC) &&
6477      FnDecl->getStorageClass() == SC_Static) {
6478    return SemaRef.Diag(FnDecl->getLocation(),
6479                        diag::err_operator_new_delete_declared_static)
6480      << FnDecl->getDeclName();
6481  }
6482
6483  return false;
6484}
6485
6486static inline bool
6487CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
6488                            CanQualType ExpectedResultType,
6489                            CanQualType ExpectedFirstParamType,
6490                            unsigned DependentParamTypeDiag,
6491                            unsigned InvalidParamTypeDiag) {
6492  QualType ResultType =
6493    FnDecl->getType()->getAs<FunctionType>()->getResultType();
6494
6495  // Check that the result type is not dependent.
6496  if (ResultType->isDependentType())
6497    return SemaRef.Diag(FnDecl->getLocation(),
6498                        diag::err_operator_new_delete_dependent_result_type)
6499    << FnDecl->getDeclName() << ExpectedResultType;
6500
6501  // Check that the result type is what we expect.
6502  if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
6503    return SemaRef.Diag(FnDecl->getLocation(),
6504                        diag::err_operator_new_delete_invalid_result_type)
6505    << FnDecl->getDeclName() << ExpectedResultType;
6506
6507  // A function template must have at least 2 parameters.
6508  if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
6509    return SemaRef.Diag(FnDecl->getLocation(),
6510                      diag::err_operator_new_delete_template_too_few_parameters)
6511        << FnDecl->getDeclName();
6512
6513  // The function decl must have at least 1 parameter.
6514  if (FnDecl->getNumParams() == 0)
6515    return SemaRef.Diag(FnDecl->getLocation(),
6516                        diag::err_operator_new_delete_too_few_parameters)
6517      << FnDecl->getDeclName();
6518
6519  // Check the the first parameter type is not dependent.
6520  QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
6521  if (FirstParamType->isDependentType())
6522    return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
6523      << FnDecl->getDeclName() << ExpectedFirstParamType;
6524
6525  // Check that the first parameter type is what we expect.
6526  if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
6527      ExpectedFirstParamType)
6528    return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
6529    << FnDecl->getDeclName() << ExpectedFirstParamType;
6530
6531  return false;
6532}
6533
6534static bool
6535CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
6536  // C++ [basic.stc.dynamic.allocation]p1:
6537  //   A program is ill-formed if an allocation function is declared in a
6538  //   namespace scope other than global scope or declared static in global
6539  //   scope.
6540  if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
6541    return true;
6542
6543  CanQualType SizeTy =
6544    SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
6545
6546  // C++ [basic.stc.dynamic.allocation]p1:
6547  //  The return type shall be void*. The first parameter shall have type
6548  //  std::size_t.
6549  if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
6550                                  SizeTy,
6551                                  diag::err_operator_new_dependent_param_type,
6552                                  diag::err_operator_new_param_type))
6553    return true;
6554
6555  // C++ [basic.stc.dynamic.allocation]p1:
6556  //  The first parameter shall not have an associated default argument.
6557  if (FnDecl->getParamDecl(0)->hasDefaultArg())
6558    return SemaRef.Diag(FnDecl->getLocation(),
6559                        diag::err_operator_new_default_arg)
6560      << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
6561
6562  return false;
6563}
6564
6565static bool
6566CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
6567  // C++ [basic.stc.dynamic.deallocation]p1:
6568  //   A program is ill-formed if deallocation functions are declared in a
6569  //   namespace scope other than global scope or declared static in global
6570  //   scope.
6571  if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
6572    return true;
6573
6574  // C++ [basic.stc.dynamic.deallocation]p2:
6575  //   Each deallocation function shall return void and its first parameter
6576  //   shall be void*.
6577  if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
6578                                  SemaRef.Context.VoidPtrTy,
6579                                 diag::err_operator_delete_dependent_param_type,
6580                                 diag::err_operator_delete_param_type))
6581    return true;
6582
6583  return false;
6584}
6585
6586/// CheckOverloadedOperatorDeclaration - Check whether the declaration
6587/// of this overloaded operator is well-formed. If so, returns false;
6588/// otherwise, emits appropriate diagnostics and returns true.
6589bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
6590  assert(FnDecl && FnDecl->isOverloadedOperator() &&
6591         "Expected an overloaded operator declaration");
6592
6593  OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
6594
6595  // C++ [over.oper]p5:
6596  //   The allocation and deallocation functions, operator new,
6597  //   operator new[], operator delete and operator delete[], are
6598  //   described completely in 3.7.3. The attributes and restrictions
6599  //   found in the rest of this subclause do not apply to them unless
6600  //   explicitly stated in 3.7.3.
6601  if (Op == OO_Delete || Op == OO_Array_Delete)
6602    return CheckOperatorDeleteDeclaration(*this, FnDecl);
6603
6604  if (Op == OO_New || Op == OO_Array_New)
6605    return CheckOperatorNewDeclaration(*this, FnDecl);
6606
6607  // C++ [over.oper]p6:
6608  //   An operator function shall either be a non-static member
6609  //   function or be a non-member function and have at least one
6610  //   parameter whose type is a class, a reference to a class, an
6611  //   enumeration, or a reference to an enumeration.
6612  if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
6613    if (MethodDecl->isStatic())
6614      return Diag(FnDecl->getLocation(),
6615                  diag::err_operator_overload_static) << FnDecl->getDeclName();
6616  } else {
6617    bool ClassOrEnumParam = false;
6618    for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
6619                                   ParamEnd = FnDecl->param_end();
6620         Param != ParamEnd; ++Param) {
6621      QualType ParamType = (*Param)->getType().getNonReferenceType();
6622      if (ParamType->isDependentType() || ParamType->isRecordType() ||
6623          ParamType->isEnumeralType()) {
6624        ClassOrEnumParam = true;
6625        break;
6626      }
6627    }
6628
6629    if (!ClassOrEnumParam)
6630      return Diag(FnDecl->getLocation(),
6631                  diag::err_operator_overload_needs_class_or_enum)
6632        << FnDecl->getDeclName();
6633  }
6634
6635  // C++ [over.oper]p8:
6636  //   An operator function cannot have default arguments (8.3.6),
6637  //   except where explicitly stated below.
6638  //
6639  // Only the function-call operator allows default arguments
6640  // (C++ [over.call]p1).
6641  if (Op != OO_Call) {
6642    for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
6643         Param != FnDecl->param_end(); ++Param) {
6644      if ((*Param)->hasDefaultArg())
6645        return Diag((*Param)->getLocation(),
6646                    diag::err_operator_overload_default_arg)
6647          << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
6648    }
6649  }
6650
6651  static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
6652    { false, false, false }
6653#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
6654    , { Unary, Binary, MemberOnly }
6655#include "clang/Basic/OperatorKinds.def"
6656  };
6657
6658  bool CanBeUnaryOperator = OperatorUses[Op][0];
6659  bool CanBeBinaryOperator = OperatorUses[Op][1];
6660  bool MustBeMemberOperator = OperatorUses[Op][2];
6661
6662  // C++ [over.oper]p8:
6663  //   [...] Operator functions cannot have more or fewer parameters
6664  //   than the number required for the corresponding operator, as
6665  //   described in the rest of this subclause.
6666  unsigned NumParams = FnDecl->getNumParams()
6667                     + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
6668  if (Op != OO_Call &&
6669      ((NumParams == 1 && !CanBeUnaryOperator) ||
6670       (NumParams == 2 && !CanBeBinaryOperator) ||
6671       (NumParams < 1) || (NumParams > 2))) {
6672    // We have the wrong number of parameters.
6673    unsigned ErrorKind;
6674    if (CanBeUnaryOperator && CanBeBinaryOperator) {
6675      ErrorKind = 2;  // 2 -> unary or binary.
6676    } else if (CanBeUnaryOperator) {
6677      ErrorKind = 0;  // 0 -> unary
6678    } else {
6679      assert(CanBeBinaryOperator &&
6680             "All non-call overloaded operators are unary or binary!");
6681      ErrorKind = 1;  // 1 -> binary
6682    }
6683
6684    return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
6685      << FnDecl->getDeclName() << NumParams << ErrorKind;
6686  }
6687
6688  // Overloaded operators other than operator() cannot be variadic.
6689  if (Op != OO_Call &&
6690      FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
6691    return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
6692      << FnDecl->getDeclName();
6693  }
6694
6695  // Some operators must be non-static member functions.
6696  if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
6697    return Diag(FnDecl->getLocation(),
6698                diag::err_operator_overload_must_be_member)
6699      << FnDecl->getDeclName();
6700  }
6701
6702  // C++ [over.inc]p1:
6703  //   The user-defined function called operator++ implements the
6704  //   prefix and postfix ++ operator. If this function is a member
6705  //   function with no parameters, or a non-member function with one
6706  //   parameter of class or enumeration type, it defines the prefix
6707  //   increment operator ++ for objects of that type. If the function
6708  //   is a member function with one parameter (which shall be of type
6709  //   int) or a non-member function with two parameters (the second
6710  //   of which shall be of type int), it defines the postfix
6711  //   increment operator ++ for objects of that type.
6712  if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
6713    ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
6714    bool ParamIsInt = false;
6715    if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
6716      ParamIsInt = BT->getKind() == BuiltinType::Int;
6717
6718    if (!ParamIsInt)
6719      return Diag(LastParam->getLocation(),
6720                  diag::err_operator_overload_post_incdec_must_be_int)
6721        << LastParam->getType() << (Op == OO_MinusMinus);
6722  }
6723
6724  return false;
6725}
6726
6727/// CheckLiteralOperatorDeclaration - Check whether the declaration
6728/// of this literal operator function is well-formed. If so, returns
6729/// false; otherwise, emits appropriate diagnostics and returns true.
6730bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
6731  DeclContext *DC = FnDecl->getDeclContext();
6732  Decl::Kind Kind = DC->getDeclKind();
6733  if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
6734      Kind != Decl::LinkageSpec) {
6735    Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
6736      << FnDecl->getDeclName();
6737    return true;
6738  }
6739
6740  bool Valid = false;
6741
6742  // template <char...> type operator "" name() is the only valid template
6743  // signature, and the only valid signature with no parameters.
6744  if (FnDecl->param_size() == 0) {
6745    if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
6746      // Must have only one template parameter
6747      TemplateParameterList *Params = TpDecl->getTemplateParameters();
6748      if (Params->size() == 1) {
6749        NonTypeTemplateParmDecl *PmDecl =
6750          cast<NonTypeTemplateParmDecl>(Params->getParam(0));
6751
6752        // The template parameter must be a char parameter pack.
6753        if (PmDecl && PmDecl->isTemplateParameterPack() &&
6754            Context.hasSameType(PmDecl->getType(), Context.CharTy))
6755          Valid = true;
6756      }
6757    }
6758  } else {
6759    // Check the first parameter
6760    FunctionDecl::param_iterator Param = FnDecl->param_begin();
6761
6762    QualType T = (*Param)->getType();
6763
6764    // unsigned long long int, long double, and any character type are allowed
6765    // as the only parameters.
6766    if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
6767        Context.hasSameType(T, Context.LongDoubleTy) ||
6768        Context.hasSameType(T, Context.CharTy) ||
6769        Context.hasSameType(T, Context.WCharTy) ||
6770        Context.hasSameType(T, Context.Char16Ty) ||
6771        Context.hasSameType(T, Context.Char32Ty)) {
6772      if (++Param == FnDecl->param_end())
6773        Valid = true;
6774      goto FinishedParams;
6775    }
6776
6777    // Otherwise it must be a pointer to const; let's strip those qualifiers.
6778    const PointerType *PT = T->getAs<PointerType>();
6779    if (!PT)
6780      goto FinishedParams;
6781    T = PT->getPointeeType();
6782    if (!T.isConstQualified())
6783      goto FinishedParams;
6784    T = T.getUnqualifiedType();
6785
6786    // Move on to the second parameter;
6787    ++Param;
6788
6789    // If there is no second parameter, the first must be a const char *
6790    if (Param == FnDecl->param_end()) {
6791      if (Context.hasSameType(T, Context.CharTy))
6792        Valid = true;
6793      goto FinishedParams;
6794    }
6795
6796    // const char *, const wchar_t*, const char16_t*, and const char32_t*
6797    // are allowed as the first parameter to a two-parameter function
6798    if (!(Context.hasSameType(T, Context.CharTy) ||
6799          Context.hasSameType(T, Context.WCharTy) ||
6800          Context.hasSameType(T, Context.Char16Ty) ||
6801          Context.hasSameType(T, Context.Char32Ty)))
6802      goto FinishedParams;
6803
6804    // The second and final parameter must be an std::size_t
6805    T = (*Param)->getType().getUnqualifiedType();
6806    if (Context.hasSameType(T, Context.getSizeType()) &&
6807        ++Param == FnDecl->param_end())
6808      Valid = true;
6809  }
6810
6811  // FIXME: This diagnostic is absolutely terrible.
6812FinishedParams:
6813  if (!Valid) {
6814    Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
6815      << FnDecl->getDeclName();
6816    return true;
6817  }
6818
6819  return false;
6820}
6821
6822/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
6823/// linkage specification, including the language and (if present)
6824/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
6825/// the location of the language string literal, which is provided
6826/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
6827/// the '{' brace. Otherwise, this linkage specification does not
6828/// have any braces.
6829Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
6830                                           SourceLocation LangLoc,
6831                                           llvm::StringRef Lang,
6832                                           SourceLocation LBraceLoc) {
6833  LinkageSpecDecl::LanguageIDs Language;
6834  if (Lang == "\"C\"")
6835    Language = LinkageSpecDecl::lang_c;
6836  else if (Lang == "\"C++\"")
6837    Language = LinkageSpecDecl::lang_cxx;
6838  else {
6839    Diag(LangLoc, diag::err_bad_language);
6840    return 0;
6841  }
6842
6843  // FIXME: Add all the various semantics of linkage specifications
6844
6845  LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
6846                                               ExternLoc, LangLoc, Language);
6847  CurContext->addDecl(D);
6848  PushDeclContext(S, D);
6849  return D;
6850}
6851
6852/// ActOnFinishLinkageSpecification - Complete the definition of
6853/// the C++ linkage specification LinkageSpec. If RBraceLoc is
6854/// valid, it's the position of the closing '}' brace in a linkage
6855/// specification that uses braces.
6856Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
6857                                            Decl *LinkageSpec,
6858                                            SourceLocation RBraceLoc) {
6859  if (LinkageSpec) {
6860    if (RBraceLoc.isValid()) {
6861      LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
6862      LSDecl->setRBraceLoc(RBraceLoc);
6863    }
6864    PopDeclContext();
6865  }
6866  return LinkageSpec;
6867}
6868
6869/// \brief Perform semantic analysis for the variable declaration that
6870/// occurs within a C++ catch clause, returning the newly-created
6871/// variable.
6872VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
6873                                         TypeSourceInfo *TInfo,
6874                                         SourceLocation StartLoc,
6875                                         SourceLocation Loc,
6876                                         IdentifierInfo *Name) {
6877  bool Invalid = false;
6878  QualType ExDeclType = TInfo->getType();
6879
6880  // Arrays and functions decay.
6881  if (ExDeclType->isArrayType())
6882    ExDeclType = Context.getArrayDecayedType(ExDeclType);
6883  else if (ExDeclType->isFunctionType())
6884    ExDeclType = Context.getPointerType(ExDeclType);
6885
6886  // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
6887  // The exception-declaration shall not denote a pointer or reference to an
6888  // incomplete type, other than [cv] void*.
6889  // N2844 forbids rvalue references.
6890  if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
6891    Diag(Loc, diag::err_catch_rvalue_ref);
6892    Invalid = true;
6893  }
6894
6895  // GCC allows catching pointers and references to incomplete types
6896  // as an extension; so do we, but we warn by default.
6897
6898  QualType BaseType = ExDeclType;
6899  int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
6900  unsigned DK = diag::err_catch_incomplete;
6901  bool IncompleteCatchIsInvalid = true;
6902  if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
6903    BaseType = Ptr->getPointeeType();
6904    Mode = 1;
6905    DK = diag::ext_catch_incomplete_ptr;
6906    IncompleteCatchIsInvalid = false;
6907  } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
6908    // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
6909    BaseType = Ref->getPointeeType();
6910    Mode = 2;
6911    DK = diag::ext_catch_incomplete_ref;
6912    IncompleteCatchIsInvalid = false;
6913  }
6914  if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
6915      !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
6916      IncompleteCatchIsInvalid)
6917    Invalid = true;
6918
6919  if (!Invalid && !ExDeclType->isDependentType() &&
6920      RequireNonAbstractType(Loc, ExDeclType,
6921                             diag::err_abstract_type_in_decl,
6922                             AbstractVariableType))
6923    Invalid = true;
6924
6925  // Only the non-fragile NeXT runtime currently supports C++ catches
6926  // of ObjC types, and no runtime supports catching ObjC types by value.
6927  if (!Invalid && getLangOptions().ObjC1) {
6928    QualType T = ExDeclType;
6929    if (const ReferenceType *RT = T->getAs<ReferenceType>())
6930      T = RT->getPointeeType();
6931
6932    if (T->isObjCObjectType()) {
6933      Diag(Loc, diag::err_objc_object_catch);
6934      Invalid = true;
6935    } else if (T->isObjCObjectPointerType()) {
6936      if (!getLangOptions().ObjCNonFragileABI) {
6937        Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6938        Invalid = true;
6939      }
6940    }
6941  }
6942
6943  VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
6944                                    ExDeclType, TInfo, SC_None, SC_None);
6945  ExDecl->setExceptionVariable(true);
6946
6947  if (!Invalid) {
6948    if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
6949      // C++ [except.handle]p16:
6950      //   The object declared in an exception-declaration or, if the
6951      //   exception-declaration does not specify a name, a temporary (12.2) is
6952      //   copy-initialized (8.5) from the exception object. [...]
6953      //   The object is destroyed when the handler exits, after the destruction
6954      //   of any automatic objects initialized within the handler.
6955      //
6956      // We just pretend to initialize the object with itself, then make sure
6957      // it can be destroyed later.
6958      QualType initType = ExDeclType;
6959
6960      InitializedEntity entity =
6961        InitializedEntity::InitializeVariable(ExDecl);
6962      InitializationKind initKind =
6963        InitializationKind::CreateCopy(Loc, SourceLocation());
6964
6965      Expr *opaqueValue =
6966        new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
6967      InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
6968      ExprResult result = sequence.Perform(*this, entity, initKind,
6969                                           MultiExprArg(&opaqueValue, 1));
6970      if (result.isInvalid())
6971        Invalid = true;
6972      else {
6973        // If the constructor used was non-trivial, set this as the
6974        // "initializer".
6975        CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
6976        if (!construct->getConstructor()->isTrivial()) {
6977          Expr *init = MaybeCreateExprWithCleanups(construct);
6978          ExDecl->setInit(init);
6979        }
6980
6981        // And make sure it's destructable.
6982        FinalizeVarWithDestructor(ExDecl, recordType);
6983      }
6984    }
6985  }
6986
6987  if (Invalid)
6988    ExDecl->setInvalidDecl();
6989
6990  return ExDecl;
6991}
6992
6993/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6994/// handler.
6995Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
6996  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6997  bool Invalid = D.isInvalidType();
6998
6999  // Check for unexpanded parameter packs.
7000  if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
7001                                               UPPC_ExceptionType)) {
7002    TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
7003                                             D.getIdentifierLoc());
7004    Invalid = true;
7005  }
7006
7007  IdentifierInfo *II = D.getIdentifier();
7008  if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
7009                                             LookupOrdinaryName,
7010                                             ForRedeclaration)) {
7011    // The scope should be freshly made just for us. There is just no way
7012    // it contains any previous declaration.
7013    assert(!S->isDeclScope(PrevDecl));
7014    if (PrevDecl->isTemplateParameter()) {
7015      // Maybe we will complain about the shadowed template parameter.
7016      DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
7017    }
7018  }
7019
7020  if (D.getCXXScopeSpec().isSet() && !Invalid) {
7021    Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
7022      << D.getCXXScopeSpec().getRange();
7023    Invalid = true;
7024  }
7025
7026  VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
7027                                              D.getSourceRange().getBegin(),
7028                                              D.getIdentifierLoc(),
7029                                              D.getIdentifier());
7030  if (Invalid)
7031    ExDecl->setInvalidDecl();
7032
7033  // Add the exception declaration into this scope.
7034  if (II)
7035    PushOnScopeChains(ExDecl, S);
7036  else
7037    CurContext->addDecl(ExDecl);
7038
7039  ProcessDeclAttributes(S, ExDecl, D);
7040  return ExDecl;
7041}
7042
7043Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
7044                                         Expr *AssertExpr,
7045                                         Expr *AssertMessageExpr_,
7046                                         SourceLocation RParenLoc) {
7047  StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
7048
7049  if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
7050    llvm::APSInt Value(32);
7051    if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
7052      Diag(StaticAssertLoc,
7053           diag::err_static_assert_expression_is_not_constant) <<
7054        AssertExpr->getSourceRange();
7055      return 0;
7056    }
7057
7058    if (Value == 0) {
7059      Diag(StaticAssertLoc, diag::err_static_assert_failed)
7060        << AssertMessage->getString() << AssertExpr->getSourceRange();
7061    }
7062  }
7063
7064  if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
7065    return 0;
7066
7067  Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
7068                                        AssertExpr, AssertMessage, RParenLoc);
7069
7070  CurContext->addDecl(Decl);
7071  return Decl;
7072}
7073
7074/// \brief Perform semantic analysis of the given friend type declaration.
7075///
7076/// \returns A friend declaration that.
7077FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
7078                                      TypeSourceInfo *TSInfo) {
7079  assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
7080
7081  QualType T = TSInfo->getType();
7082  SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
7083
7084  if (!getLangOptions().CPlusPlus0x) {
7085    // C++03 [class.friend]p2:
7086    //   An elaborated-type-specifier shall be used in a friend declaration
7087    //   for a class.*
7088    //
7089    //   * The class-key of the elaborated-type-specifier is required.
7090    if (!ActiveTemplateInstantiations.empty()) {
7091      // Do not complain about the form of friend template types during
7092      // template instantiation; we will already have complained when the
7093      // template was declared.
7094    } else if (!T->isElaboratedTypeSpecifier()) {
7095      // If we evaluated the type to a record type, suggest putting
7096      // a tag in front.
7097      if (const RecordType *RT = T->getAs<RecordType>()) {
7098        RecordDecl *RD = RT->getDecl();
7099
7100        std::string InsertionText = std::string(" ") + RD->getKindName();
7101
7102        Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
7103          << (unsigned) RD->getTagKind()
7104          << T
7105          << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
7106                                        InsertionText);
7107      } else {
7108        Diag(FriendLoc, diag::ext_nonclass_type_friend)
7109          << T
7110          << SourceRange(FriendLoc, TypeRange.getEnd());
7111      }
7112    } else if (T->getAs<EnumType>()) {
7113      Diag(FriendLoc, diag::ext_enum_friend)
7114        << T
7115        << SourceRange(FriendLoc, TypeRange.getEnd());
7116    }
7117  }
7118
7119  // C++0x [class.friend]p3:
7120  //   If the type specifier in a friend declaration designates a (possibly
7121  //   cv-qualified) class type, that class is declared as a friend; otherwise,
7122  //   the friend declaration is ignored.
7123
7124  // FIXME: C++0x has some syntactic restrictions on friend type declarations
7125  // in [class.friend]p3 that we do not implement.
7126
7127  return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
7128}
7129
7130/// Handle a friend tag declaration where the scope specifier was
7131/// templated.
7132Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
7133                                    unsigned TagSpec, SourceLocation TagLoc,
7134                                    CXXScopeSpec &SS,
7135                                    IdentifierInfo *Name, SourceLocation NameLoc,
7136                                    AttributeList *Attr,
7137                                    MultiTemplateParamsArg TempParamLists) {
7138  TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
7139
7140  bool isExplicitSpecialization = false;
7141  bool Invalid = false;
7142
7143  if (TemplateParameterList *TemplateParams
7144        = MatchTemplateParametersToScopeSpecifier(TagLoc, SS,
7145                                                  TempParamLists.get(),
7146                                                  TempParamLists.size(),
7147                                                  /*friend*/ true,
7148                                                  isExplicitSpecialization,
7149                                                  Invalid)) {
7150    if (TemplateParams->size() > 0) {
7151      // This is a declaration of a class template.
7152      if (Invalid)
7153        return 0;
7154
7155      return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
7156                                SS, Name, NameLoc, Attr,
7157                                TemplateParams, AS_public,
7158                                TempParamLists.size() - 1,
7159                   (TemplateParameterList**) TempParamLists.release()).take();
7160    } else {
7161      // The "template<>" header is extraneous.
7162      Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
7163        << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
7164      isExplicitSpecialization = true;
7165    }
7166  }
7167
7168  if (Invalid) return 0;
7169
7170  assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
7171
7172  bool isAllExplicitSpecializations = true;
7173  for (unsigned I = TempParamLists.size(); I-- > 0; ) {
7174    if (TempParamLists.get()[I]->size()) {
7175      isAllExplicitSpecializations = false;
7176      break;
7177    }
7178  }
7179
7180  // FIXME: don't ignore attributes.
7181
7182  // If it's explicit specializations all the way down, just forget
7183  // about the template header and build an appropriate non-templated
7184  // friend.  TODO: for source fidelity, remember the headers.
7185  if (isAllExplicitSpecializations) {
7186    NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
7187    ElaboratedTypeKeyword Keyword
7188      = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
7189    QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
7190                                   *Name, NameLoc);
7191    if (T.isNull())
7192      return 0;
7193
7194    TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
7195    if (isa<DependentNameType>(T)) {
7196      DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
7197      TL.setKeywordLoc(TagLoc);
7198      TL.setQualifierLoc(QualifierLoc);
7199      TL.setNameLoc(NameLoc);
7200    } else {
7201      ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
7202      TL.setKeywordLoc(TagLoc);
7203      TL.setQualifierLoc(QualifierLoc);
7204      cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
7205    }
7206
7207    FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
7208                                            TSI, FriendLoc);
7209    Friend->setAccess(AS_public);
7210    CurContext->addDecl(Friend);
7211    return Friend;
7212  }
7213
7214  // Handle the case of a templated-scope friend class.  e.g.
7215  //   template <class T> class A<T>::B;
7216  // FIXME: we don't support these right now.
7217  ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
7218  QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
7219  TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
7220  DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
7221  TL.setKeywordLoc(TagLoc);
7222  TL.setQualifierLoc(SS.getWithLocInContext(Context));
7223  TL.setNameLoc(NameLoc);
7224
7225  FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
7226                                          TSI, FriendLoc);
7227  Friend->setAccess(AS_public);
7228  Friend->setUnsupportedFriend(true);
7229  CurContext->addDecl(Friend);
7230  return Friend;
7231}
7232
7233
7234/// Handle a friend type declaration.  This works in tandem with
7235/// ActOnTag.
7236///
7237/// Notes on friend class templates:
7238///
7239/// We generally treat friend class declarations as if they were
7240/// declaring a class.  So, for example, the elaborated type specifier
7241/// in a friend declaration is required to obey the restrictions of a
7242/// class-head (i.e. no typedefs in the scope chain), template
7243/// parameters are required to match up with simple template-ids, &c.
7244/// However, unlike when declaring a template specialization, it's
7245/// okay to refer to a template specialization without an empty
7246/// template parameter declaration, e.g.
7247///   friend class A<T>::B<unsigned>;
7248/// We permit this as a special case; if there are any template
7249/// parameters present at all, require proper matching, i.e.
7250///   template <> template <class T> friend class A<int>::B;
7251Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
7252                                MultiTemplateParamsArg TempParams) {
7253  SourceLocation Loc = DS.getSourceRange().getBegin();
7254
7255  assert(DS.isFriendSpecified());
7256  assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
7257
7258  // Try to convert the decl specifier to a type.  This works for
7259  // friend templates because ActOnTag never produces a ClassTemplateDecl
7260  // for a TUK_Friend.
7261  Declarator TheDeclarator(DS, Declarator::MemberContext);
7262  TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
7263  QualType T = TSI->getType();
7264  if (TheDeclarator.isInvalidType())
7265    return 0;
7266
7267  if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
7268    return 0;
7269
7270  // This is definitely an error in C++98.  It's probably meant to
7271  // be forbidden in C++0x, too, but the specification is just
7272  // poorly written.
7273  //
7274  // The problem is with declarations like the following:
7275  //   template <T> friend A<T>::foo;
7276  // where deciding whether a class C is a friend or not now hinges
7277  // on whether there exists an instantiation of A that causes
7278  // 'foo' to equal C.  There are restrictions on class-heads
7279  // (which we declare (by fiat) elaborated friend declarations to
7280  // be) that makes this tractable.
7281  //
7282  // FIXME: handle "template <> friend class A<T>;", which
7283  // is possibly well-formed?  Who even knows?
7284  if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
7285    Diag(Loc, diag::err_tagless_friend_type_template)
7286      << DS.getSourceRange();
7287    return 0;
7288  }
7289
7290  // C++98 [class.friend]p1: A friend of a class is a function
7291  //   or class that is not a member of the class . . .
7292  // This is fixed in DR77, which just barely didn't make the C++03
7293  // deadline.  It's also a very silly restriction that seriously
7294  // affects inner classes and which nobody else seems to implement;
7295  // thus we never diagnose it, not even in -pedantic.
7296  //
7297  // But note that we could warn about it: it's always useless to
7298  // friend one of your own members (it's not, however, worthless to
7299  // friend a member of an arbitrary specialization of your template).
7300
7301  Decl *D;
7302  if (unsigned NumTempParamLists = TempParams.size())
7303    D = FriendTemplateDecl::Create(Context, CurContext, Loc,
7304                                   NumTempParamLists,
7305                                   TempParams.release(),
7306                                   TSI,
7307                                   DS.getFriendSpecLoc());
7308  else
7309    D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
7310
7311  if (!D)
7312    return 0;
7313
7314  D->setAccess(AS_public);
7315  CurContext->addDecl(D);
7316
7317  return D;
7318}
7319
7320Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, bool IsDefinition,
7321                                    MultiTemplateParamsArg TemplateParams) {
7322  const DeclSpec &DS = D.getDeclSpec();
7323
7324  assert(DS.isFriendSpecified());
7325  assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
7326
7327  SourceLocation Loc = D.getIdentifierLoc();
7328  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
7329  QualType T = TInfo->getType();
7330
7331  // C++ [class.friend]p1
7332  //   A friend of a class is a function or class....
7333  // Note that this sees through typedefs, which is intended.
7334  // It *doesn't* see through dependent types, which is correct
7335  // according to [temp.arg.type]p3:
7336  //   If a declaration acquires a function type through a
7337  //   type dependent on a template-parameter and this causes
7338  //   a declaration that does not use the syntactic form of a
7339  //   function declarator to have a function type, the program
7340  //   is ill-formed.
7341  if (!T->isFunctionType()) {
7342    Diag(Loc, diag::err_unexpected_friend);
7343
7344    // It might be worthwhile to try to recover by creating an
7345    // appropriate declaration.
7346    return 0;
7347  }
7348
7349  // C++ [namespace.memdef]p3
7350  //  - If a friend declaration in a non-local class first declares a
7351  //    class or function, the friend class or function is a member
7352  //    of the innermost enclosing namespace.
7353  //  - The name of the friend is not found by simple name lookup
7354  //    until a matching declaration is provided in that namespace
7355  //    scope (either before or after the class declaration granting
7356  //    friendship).
7357  //  - If a friend function is called, its name may be found by the
7358  //    name lookup that considers functions from namespaces and
7359  //    classes associated with the types of the function arguments.
7360  //  - When looking for a prior declaration of a class or a function
7361  //    declared as a friend, scopes outside the innermost enclosing
7362  //    namespace scope are not considered.
7363
7364  CXXScopeSpec &SS = D.getCXXScopeSpec();
7365  DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7366  DeclarationName Name = NameInfo.getName();
7367  assert(Name);
7368
7369  // Check for unexpanded parameter packs.
7370  if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
7371      DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
7372      DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
7373    return 0;
7374
7375  // The context we found the declaration in, or in which we should
7376  // create the declaration.
7377  DeclContext *DC;
7378  Scope *DCScope = S;
7379  LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
7380                        ForRedeclaration);
7381
7382  // FIXME: there are different rules in local classes
7383
7384  // There are four cases here.
7385  //   - There's no scope specifier, in which case we just go to the
7386  //     appropriate scope and look for a function or function template
7387  //     there as appropriate.
7388  // Recover from invalid scope qualifiers as if they just weren't there.
7389  if (SS.isInvalid() || !SS.isSet()) {
7390    // C++0x [namespace.memdef]p3:
7391    //   If the name in a friend declaration is neither qualified nor
7392    //   a template-id and the declaration is a function or an
7393    //   elaborated-type-specifier, the lookup to determine whether
7394    //   the entity has been previously declared shall not consider
7395    //   any scopes outside the innermost enclosing namespace.
7396    // C++0x [class.friend]p11:
7397    //   If a friend declaration appears in a local class and the name
7398    //   specified is an unqualified name, a prior declaration is
7399    //   looked up without considering scopes that are outside the
7400    //   innermost enclosing non-class scope. For a friend function
7401    //   declaration, if there is no prior declaration, the program is
7402    //   ill-formed.
7403    bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
7404    bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
7405
7406    // Find the appropriate context according to the above.
7407    DC = CurContext;
7408    while (true) {
7409      // Skip class contexts.  If someone can cite chapter and verse
7410      // for this behavior, that would be nice --- it's what GCC and
7411      // EDG do, and it seems like a reasonable intent, but the spec
7412      // really only says that checks for unqualified existing
7413      // declarations should stop at the nearest enclosing namespace,
7414      // not that they should only consider the nearest enclosing
7415      // namespace.
7416      while (DC->isRecord())
7417        DC = DC->getParent();
7418
7419      LookupQualifiedName(Previous, DC);
7420
7421      // TODO: decide what we think about using declarations.
7422      if (isLocal || !Previous.empty())
7423        break;
7424
7425      if (isTemplateId) {
7426        if (isa<TranslationUnitDecl>(DC)) break;
7427      } else {
7428        if (DC->isFileContext()) break;
7429      }
7430      DC = DC->getParent();
7431    }
7432
7433    // C++ [class.friend]p1: A friend of a class is a function or
7434    //   class that is not a member of the class . . .
7435    // C++0x changes this for both friend types and functions.
7436    // Most C++ 98 compilers do seem to give an error here, so
7437    // we do, too.
7438    if (!Previous.empty() && DC->Equals(CurContext)
7439        && !getLangOptions().CPlusPlus0x)
7440      Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
7441
7442    DCScope = getScopeForDeclContext(S, DC);
7443
7444  //   - There's a non-dependent scope specifier, in which case we
7445  //     compute it and do a previous lookup there for a function
7446  //     or function template.
7447  } else if (!SS.getScopeRep()->isDependent()) {
7448    DC = computeDeclContext(SS);
7449    if (!DC) return 0;
7450
7451    if (RequireCompleteDeclContext(SS, DC)) return 0;
7452
7453    LookupQualifiedName(Previous, DC);
7454
7455    // Ignore things found implicitly in the wrong scope.
7456    // TODO: better diagnostics for this case.  Suggesting the right
7457    // qualified scope would be nice...
7458    LookupResult::Filter F = Previous.makeFilter();
7459    while (F.hasNext()) {
7460      NamedDecl *D = F.next();
7461      if (!DC->InEnclosingNamespaceSetOf(
7462              D->getDeclContext()->getRedeclContext()))
7463        F.erase();
7464    }
7465    F.done();
7466
7467    if (Previous.empty()) {
7468      D.setInvalidType();
7469      Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
7470      return 0;
7471    }
7472
7473    // C++ [class.friend]p1: A friend of a class is a function or
7474    //   class that is not a member of the class . . .
7475    if (DC->Equals(CurContext))
7476      Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
7477
7478  //   - There's a scope specifier that does not match any template
7479  //     parameter lists, in which case we use some arbitrary context,
7480  //     create a method or method template, and wait for instantiation.
7481  //   - There's a scope specifier that does match some template
7482  //     parameter lists, which we don't handle right now.
7483  } else {
7484    DC = CurContext;
7485    assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
7486  }
7487
7488  if (!DC->isRecord()) {
7489    // This implies that it has to be an operator or function.
7490    if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
7491        D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
7492        D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
7493      Diag(Loc, diag::err_introducing_special_friend) <<
7494        (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
7495         D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
7496      return 0;
7497    }
7498  }
7499
7500  bool Redeclaration = false;
7501  NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, T, TInfo, Previous,
7502                                          move(TemplateParams),
7503                                          IsDefinition,
7504                                          Redeclaration);
7505  if (!ND) return 0;
7506
7507  assert(ND->getDeclContext() == DC);
7508  assert(ND->getLexicalDeclContext() == CurContext);
7509
7510  // Add the function declaration to the appropriate lookup tables,
7511  // adjusting the redeclarations list as necessary.  We don't
7512  // want to do this yet if the friending class is dependent.
7513  //
7514  // Also update the scope-based lookup if the target context's
7515  // lookup context is in lexical scope.
7516  if (!CurContext->isDependentContext()) {
7517    DC = DC->getRedeclContext();
7518    DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
7519    if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
7520      PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
7521  }
7522
7523  FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
7524                                       D.getIdentifierLoc(), ND,
7525                                       DS.getFriendSpecLoc());
7526  FrD->setAccess(AS_public);
7527  CurContext->addDecl(FrD);
7528
7529  if (ND->isInvalidDecl())
7530    FrD->setInvalidDecl();
7531  else {
7532    FunctionDecl *FD;
7533    if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
7534      FD = FTD->getTemplatedDecl();
7535    else
7536      FD = cast<FunctionDecl>(ND);
7537
7538    // Mark templated-scope function declarations as unsupported.
7539    if (FD->getNumTemplateParameterLists())
7540      FrD->setUnsupportedFriend(true);
7541  }
7542
7543  return ND;
7544}
7545
7546void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
7547  AdjustDeclIfTemplate(Dcl);
7548
7549  FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
7550  if (!Fn) {
7551    Diag(DelLoc, diag::err_deleted_non_function);
7552    return;
7553  }
7554  if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
7555    Diag(DelLoc, diag::err_deleted_decl_not_first);
7556    Diag(Prev->getLocation(), diag::note_previous_declaration);
7557    // If the declaration wasn't the first, we delete the function anyway for
7558    // recovery.
7559  }
7560  Fn->setDeleted();
7561}
7562
7563static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
7564  for (Stmt::child_range CI = S->children(); CI; ++CI) {
7565    Stmt *SubStmt = *CI;
7566    if (!SubStmt)
7567      continue;
7568    if (isa<ReturnStmt>(SubStmt))
7569      Self.Diag(SubStmt->getSourceRange().getBegin(),
7570           diag::err_return_in_constructor_handler);
7571    if (!isa<Expr>(SubStmt))
7572      SearchForReturnInStmt(Self, SubStmt);
7573  }
7574}
7575
7576void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
7577  for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
7578    CXXCatchStmt *Handler = TryBlock->getHandler(I);
7579    SearchForReturnInStmt(*this, Handler);
7580  }
7581}
7582
7583bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
7584                                             const CXXMethodDecl *Old) {
7585  QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
7586  QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
7587
7588  if (Context.hasSameType(NewTy, OldTy) ||
7589      NewTy->isDependentType() || OldTy->isDependentType())
7590    return false;
7591
7592  // Check if the return types are covariant
7593  QualType NewClassTy, OldClassTy;
7594
7595  /// Both types must be pointers or references to classes.
7596  if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
7597    if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
7598      NewClassTy = NewPT->getPointeeType();
7599      OldClassTy = OldPT->getPointeeType();
7600    }
7601  } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
7602    if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
7603      if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
7604        NewClassTy = NewRT->getPointeeType();
7605        OldClassTy = OldRT->getPointeeType();
7606      }
7607    }
7608  }
7609
7610  // The return types aren't either both pointers or references to a class type.
7611  if (NewClassTy.isNull()) {
7612    Diag(New->getLocation(),
7613         diag::err_different_return_type_for_overriding_virtual_function)
7614      << New->getDeclName() << NewTy << OldTy;
7615    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7616
7617    return true;
7618  }
7619
7620  // C++ [class.virtual]p6:
7621  //   If the return type of D::f differs from the return type of B::f, the
7622  //   class type in the return type of D::f shall be complete at the point of
7623  //   declaration of D::f or shall be the class type D.
7624  if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
7625    if (!RT->isBeingDefined() &&
7626        RequireCompleteType(New->getLocation(), NewClassTy,
7627                            PDiag(diag::err_covariant_return_incomplete)
7628                              << New->getDeclName()))
7629    return true;
7630  }
7631
7632  if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
7633    // Check if the new class derives from the old class.
7634    if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
7635      Diag(New->getLocation(),
7636           diag::err_covariant_return_not_derived)
7637      << New->getDeclName() << NewTy << OldTy;
7638      Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7639      return true;
7640    }
7641
7642    // Check if we the conversion from derived to base is valid.
7643    if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
7644                    diag::err_covariant_return_inaccessible_base,
7645                    diag::err_covariant_return_ambiguous_derived_to_base_conv,
7646                    // FIXME: Should this point to the return type?
7647                    New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
7648      // FIXME: this note won't trigger for delayed access control
7649      // diagnostics, and it's impossible to get an undelayed error
7650      // here from access control during the original parse because
7651      // the ParsingDeclSpec/ParsingDeclarator are still in scope.
7652      Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7653      return true;
7654    }
7655  }
7656
7657  // The qualifiers of the return types must be the same.
7658  if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
7659    Diag(New->getLocation(),
7660         diag::err_covariant_return_type_different_qualifications)
7661    << New->getDeclName() << NewTy << OldTy;
7662    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7663    return true;
7664  };
7665
7666
7667  // The new class type must have the same or less qualifiers as the old type.
7668  if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
7669    Diag(New->getLocation(),
7670         diag::err_covariant_return_type_class_type_more_qualified)
7671    << New->getDeclName() << NewTy << OldTy;
7672    Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7673    return true;
7674  };
7675
7676  return false;
7677}
7678
7679/// \brief Mark the given method pure.
7680///
7681/// \param Method the method to be marked pure.
7682///
7683/// \param InitRange the source range that covers the "0" initializer.
7684bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
7685  SourceLocation EndLoc = InitRange.getEnd();
7686  if (EndLoc.isValid())
7687    Method->setRangeEnd(EndLoc);
7688
7689  if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
7690    Method->setPure();
7691    return false;
7692  }
7693
7694  if (!Method->isInvalidDecl())
7695    Diag(Method->getLocation(), diag::err_non_virtual_pure)
7696      << Method->getDeclName() << InitRange;
7697  return true;
7698}
7699
7700/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
7701/// an initializer for the out-of-line declaration 'Dcl'.  The scope
7702/// is a fresh scope pushed for just this purpose.
7703///
7704/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
7705/// static data member of class X, names should be looked up in the scope of
7706/// class X.
7707void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
7708  // If there is no declaration, there was an error parsing it.
7709  if (D == 0 || D->isInvalidDecl()) return;
7710
7711  // We should only get called for declarations with scope specifiers, like:
7712  //   int foo::bar;
7713  assert(D->isOutOfLine());
7714  EnterDeclaratorContext(S, D->getDeclContext());
7715}
7716
7717/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
7718/// initializer for the out-of-line declaration 'D'.
7719void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
7720  // If there is no declaration, there was an error parsing it.
7721  if (D == 0 || D->isInvalidDecl()) return;
7722
7723  assert(D->isOutOfLine());
7724  ExitDeclaratorContext(S);
7725}
7726
7727/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
7728/// C++ if/switch/while/for statement.
7729/// e.g: "if (int x = f()) {...}"
7730DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
7731  // C++ 6.4p2:
7732  // The declarator shall not specify a function or an array.
7733  // The type-specifier-seq shall not contain typedef and shall not declare a
7734  // new class or enumeration.
7735  assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
7736         "Parser allowed 'typedef' as storage class of condition decl.");
7737
7738  TagDecl *OwnedTag = 0;
7739  TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
7740  QualType Ty = TInfo->getType();
7741
7742  if (Ty->isFunctionType()) { // The declarator shall not specify a function...
7743                              // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
7744                              // would be created and CXXConditionDeclExpr wants a VarDecl.
7745    Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
7746      << D.getSourceRange();
7747    return DeclResult();
7748  } else if (OwnedTag && OwnedTag->isDefinition()) {
7749    // The type-specifier-seq shall not declare a new class or enumeration.
7750    Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
7751  }
7752
7753  Decl *Dcl = ActOnDeclarator(S, D);
7754  if (!Dcl)
7755    return DeclResult();
7756
7757  return Dcl;
7758}
7759
7760void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
7761                          bool DefinitionRequired) {
7762  // Ignore any vtable uses in unevaluated operands or for classes that do
7763  // not have a vtable.
7764  if (!Class->isDynamicClass() || Class->isDependentContext() ||
7765      CurContext->isDependentContext() ||
7766      ExprEvalContexts.back().Context == Unevaluated)
7767    return;
7768
7769  // Try to insert this class into the map.
7770  Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
7771  std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
7772    Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
7773  if (!Pos.second) {
7774    // If we already had an entry, check to see if we are promoting this vtable
7775    // to required a definition. If so, we need to reappend to the VTableUses
7776    // list, since we may have already processed the first entry.
7777    if (DefinitionRequired && !Pos.first->second) {
7778      Pos.first->second = true;
7779    } else {
7780      // Otherwise, we can early exit.
7781      return;
7782    }
7783  }
7784
7785  // Local classes need to have their virtual members marked
7786  // immediately. For all other classes, we mark their virtual members
7787  // at the end of the translation unit.
7788  if (Class->isLocalClass())
7789    MarkVirtualMembersReferenced(Loc, Class);
7790  else
7791    VTableUses.push_back(std::make_pair(Class, Loc));
7792}
7793
7794bool Sema::DefineUsedVTables() {
7795  if (VTableUses.empty())
7796    return false;
7797
7798  // Note: The VTableUses vector could grow as a result of marking
7799  // the members of a class as "used", so we check the size each
7800  // time through the loop and prefer indices (with are stable) to
7801  // iterators (which are not).
7802  bool DefinedAnything = false;
7803  for (unsigned I = 0; I != VTableUses.size(); ++I) {
7804    CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
7805    if (!Class)
7806      continue;
7807
7808    SourceLocation Loc = VTableUses[I].second;
7809
7810    // If this class has a key function, but that key function is
7811    // defined in another translation unit, we don't need to emit the
7812    // vtable even though we're using it.
7813    const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
7814    if (KeyFunction && !KeyFunction->hasBody()) {
7815      switch (KeyFunction->getTemplateSpecializationKind()) {
7816      case TSK_Undeclared:
7817      case TSK_ExplicitSpecialization:
7818      case TSK_ExplicitInstantiationDeclaration:
7819        // The key function is in another translation unit.
7820        continue;
7821
7822      case TSK_ExplicitInstantiationDefinition:
7823      case TSK_ImplicitInstantiation:
7824        // We will be instantiating the key function.
7825        break;
7826      }
7827    } else if (!KeyFunction) {
7828      // If we have a class with no key function that is the subject
7829      // of an explicit instantiation declaration, suppress the
7830      // vtable; it will live with the explicit instantiation
7831      // definition.
7832      bool IsExplicitInstantiationDeclaration
7833        = Class->getTemplateSpecializationKind()
7834                                      == TSK_ExplicitInstantiationDeclaration;
7835      for (TagDecl::redecl_iterator R = Class->redecls_begin(),
7836                                 REnd = Class->redecls_end();
7837           R != REnd; ++R) {
7838        TemplateSpecializationKind TSK
7839          = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
7840        if (TSK == TSK_ExplicitInstantiationDeclaration)
7841          IsExplicitInstantiationDeclaration = true;
7842        else if (TSK == TSK_ExplicitInstantiationDefinition) {
7843          IsExplicitInstantiationDeclaration = false;
7844          break;
7845        }
7846      }
7847
7848      if (IsExplicitInstantiationDeclaration)
7849        continue;
7850    }
7851
7852    // Mark all of the virtual members of this class as referenced, so
7853    // that we can build a vtable. Then, tell the AST consumer that a
7854    // vtable for this class is required.
7855    DefinedAnything = true;
7856    MarkVirtualMembersReferenced(Loc, Class);
7857    CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
7858    Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
7859
7860    // Optionally warn if we're emitting a weak vtable.
7861    if (Class->getLinkage() == ExternalLinkage &&
7862        Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
7863      if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
7864        Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
7865    }
7866  }
7867  VTableUses.clear();
7868
7869  return DefinedAnything;
7870}
7871
7872void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
7873                                        const CXXRecordDecl *RD) {
7874  for (CXXRecordDecl::method_iterator i = RD->method_begin(),
7875       e = RD->method_end(); i != e; ++i) {
7876    CXXMethodDecl *MD = *i;
7877
7878    // C++ [basic.def.odr]p2:
7879    //   [...] A virtual member function is used if it is not pure. [...]
7880    if (MD->isVirtual() && !MD->isPure())
7881      MarkDeclarationReferenced(Loc, MD);
7882  }
7883
7884  // Only classes that have virtual bases need a VTT.
7885  if (RD->getNumVBases() == 0)
7886    return;
7887
7888  for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
7889           e = RD->bases_end(); i != e; ++i) {
7890    const CXXRecordDecl *Base =
7891        cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
7892    if (Base->getNumVBases() == 0)
7893      continue;
7894    MarkVirtualMembersReferenced(Loc, Base);
7895  }
7896}
7897
7898/// SetIvarInitializers - This routine builds initialization ASTs for the
7899/// Objective-C implementation whose ivars need be initialized.
7900void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
7901  if (!getLangOptions().CPlusPlus)
7902    return;
7903  if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
7904    llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
7905    CollectIvarsToConstructOrDestruct(OID, ivars);
7906    if (ivars.empty())
7907      return;
7908    llvm::SmallVector<CXXCtorInitializer*, 32> AllToInit;
7909    for (unsigned i = 0; i < ivars.size(); i++) {
7910      FieldDecl *Field = ivars[i];
7911      if (Field->isInvalidDecl())
7912        continue;
7913
7914      CXXCtorInitializer *Member;
7915      InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
7916      InitializationKind InitKind =
7917        InitializationKind::CreateDefault(ObjCImplementation->getLocation());
7918
7919      InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
7920      ExprResult MemberInit =
7921        InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
7922      MemberInit = MaybeCreateExprWithCleanups(MemberInit);
7923      // Note, MemberInit could actually come back empty if no initialization
7924      // is required (e.g., because it would call a trivial default constructor)
7925      if (!MemberInit.get() || MemberInit.isInvalid())
7926        continue;
7927
7928      Member =
7929        new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
7930                                         SourceLocation(),
7931                                         MemberInit.takeAs<Expr>(),
7932                                         SourceLocation());
7933      AllToInit.push_back(Member);
7934
7935      // Be sure that the destructor is accessible and is marked as referenced.
7936      if (const RecordType *RecordTy
7937                  = Context.getBaseElementType(Field->getType())
7938                                                        ->getAs<RecordType>()) {
7939                    CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
7940        if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
7941          MarkDeclarationReferenced(Field->getLocation(), Destructor);
7942          CheckDestructorAccess(Field->getLocation(), Destructor,
7943                            PDiag(diag::err_access_dtor_ivar)
7944                              << Context.getBaseElementType(Field->getType()));
7945        }
7946      }
7947    }
7948    ObjCImplementation->setIvarInitializers(Context,
7949                                            AllToInit.data(), AllToInit.size());
7950  }
7951}
7952
7953static
7954void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
7955                           llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
7956                           llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
7957                           llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
7958                           Sema &S) {
7959  llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
7960                                                   CE = Current.end();
7961  if (Ctor->isInvalidDecl())
7962    return;
7963
7964  const FunctionDecl *FNTarget = 0;
7965  CXXConstructorDecl *Target;
7966
7967  // We ignore the result here since if we don't have a body, Target will be
7968  // null below.
7969  (void)Ctor->getTargetConstructor()->hasBody(FNTarget);
7970  Target
7971= const_cast<CXXConstructorDecl*>(cast_or_null<CXXConstructorDecl>(FNTarget));
7972
7973  CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
7974                     // Avoid dereferencing a null pointer here.
7975                     *TCanonical = Target ? Target->getCanonicalDecl() : 0;
7976
7977  if (!Current.insert(Canonical))
7978    return;
7979
7980  // We know that beyond here, we aren't chaining into a cycle.
7981  if (!Target || !Target->isDelegatingConstructor() ||
7982      Target->isInvalidDecl() || Valid.count(TCanonical)) {
7983    for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
7984      Valid.insert(*CI);
7985    Current.clear();
7986  // We've hit a cycle.
7987  } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
7988             Current.count(TCanonical)) {
7989    // If we haven't diagnosed this cycle yet, do so now.
7990    if (!Invalid.count(TCanonical)) {
7991      S.Diag((*Ctor->init_begin())->getSourceLocation(),
7992             diag::warn_delegating_ctor_cycle)
7993        << Ctor;
7994
7995      // Don't add a note for a function delegating directo to itself.
7996      if (TCanonical != Canonical)
7997        S.Diag(Target->getLocation(), diag::note_it_delegates_to);
7998
7999      CXXConstructorDecl *C = Target;
8000      while (C->getCanonicalDecl() != Canonical) {
8001        (void)C->getTargetConstructor()->hasBody(FNTarget);
8002        assert(FNTarget && "Ctor cycle through bodiless function");
8003
8004        C
8005       = const_cast<CXXConstructorDecl*>(cast<CXXConstructorDecl>(FNTarget));
8006        S.Diag(C->getLocation(), diag::note_which_delegates_to);
8007      }
8008    }
8009
8010    for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
8011      Invalid.insert(*CI);
8012    Current.clear();
8013  } else {
8014    DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
8015  }
8016}
8017
8018
8019void Sema::CheckDelegatingCtorCycles() {
8020  llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
8021
8022  llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
8023                                                   CE = Current.end();
8024
8025  for (llvm::SmallVector<CXXConstructorDecl*, 4>::iterator
8026         I = DelegatingCtorDecls.begin(),
8027         E = DelegatingCtorDecls.end();
8028       I != E; ++I) {
8029   DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
8030  }
8031
8032  for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
8033    (*CI)->setInvalidDecl();
8034}
8035