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