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