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