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