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