SemaDecl.cpp revision 7ad650f88ecbbe659f10f9f6b34a1f29ea9cf8f9
1//===--- SemaDecl.cpp - Semantic Analysis for 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 declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "SemaInit.h"
16#include "Lookup.h"
17#include "clang/AST/APValue.h"
18#include "clang/AST/ASTConsumer.h"
19#include "clang/AST/ASTContext.h"
20#include "clang/AST/CXXInheritance.h"
21#include "clang/AST/DeclTemplate.h"
22#include "clang/AST/ExprCXX.h"
23#include "clang/AST/StmtCXX.h"
24#include "clang/Parse/DeclSpec.h"
25#include "clang/Parse/ParseDiagnostic.h"
26#include "clang/Parse/Template.h"
27#include "clang/Basic/PartialDiagnostic.h"
28#include "clang/Basic/SourceManager.h"
29#include "clang/Basic/TargetInfo.h"
30// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
31#include "clang/Lex/Preprocessor.h"
32#include "clang/Lex/HeaderSearch.h"
33#include "llvm/ADT/Triple.h"
34#include <algorithm>
35#include <cstring>
36#include <functional>
37using namespace clang;
38
39/// getDeclName - Return a pretty name for the specified decl if possible, or
40/// an empty string if not.  This is used for pretty crash reporting.
41std::string Sema::getDeclName(DeclPtrTy d) {
42  Decl *D = d.getAs<Decl>();
43  if (NamedDecl *DN = dyn_cast_or_null<NamedDecl>(D))
44    return DN->getQualifiedNameAsString();
45  return "";
46}
47
48Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(DeclPtrTy Ptr) {
49  return DeclGroupPtrTy::make(DeclGroupRef(Ptr.getAs<Decl>()));
50}
51
52/// \brief If the identifier refers to a type name within this scope,
53/// return the declaration of that type.
54///
55/// This routine performs ordinary name lookup of the identifier II
56/// within the given scope, with optional C++ scope specifier SS, to
57/// determine whether the name refers to a type. If so, returns an
58/// opaque pointer (actually a QualType) corresponding to that
59/// type. Otherwise, returns NULL.
60///
61/// If name lookup results in an ambiguity, this routine will complain
62/// and then return NULL.
63Sema::TypeTy *Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
64                                Scope *S, const CXXScopeSpec *SS,
65                                bool isClassName,
66                                TypeTy *ObjectTypePtr) {
67  // Determine where we will perform name lookup.
68  DeclContext *LookupCtx = 0;
69  if (ObjectTypePtr) {
70    QualType ObjectType = QualType::getFromOpaquePtr(ObjectTypePtr);
71    if (ObjectType->isRecordType())
72      LookupCtx = computeDeclContext(ObjectType);
73  } else if (SS && SS->isSet()) {
74    LookupCtx = computeDeclContext(*SS, false);
75
76    if (!LookupCtx) {
77      if (isDependentScopeSpecifier(*SS)) {
78        // C++ [temp.res]p3:
79        //   A qualified-id that refers to a type and in which the
80        //   nested-name-specifier depends on a template-parameter (14.6.2)
81        //   shall be prefixed by the keyword typename to indicate that the
82        //   qualified-id denotes a type, forming an
83        //   elaborated-type-specifier (7.1.5.3).
84        //
85        // We therefore do not perform any name lookup if the result would
86        // refer to a member of an unknown specialization.
87        if (!isClassName)
88          return 0;
89
90        // We know from the grammar that this name refers to a type, so build a
91        // TypenameType node to describe the type.
92        // FIXME: Record somewhere that this TypenameType node has no "typename"
93        // keyword associated with it.
94        return CheckTypenameType((NestedNameSpecifier *)SS->getScopeRep(),
95                                 II, SS->getRange()).getAsOpaquePtr();
96      }
97
98      return 0;
99    }
100
101    if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(*SS))
102      return 0;
103  }
104
105  // FIXME: LookupNestedNameSpecifierName isn't the right kind of
106  // lookup for class-names.
107  LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName :
108                                      LookupOrdinaryName;
109  LookupResult Result(*this, &II, NameLoc, Kind);
110  if (LookupCtx) {
111    // Perform "qualified" name lookup into the declaration context we
112    // computed, which is either the type of the base of a member access
113    // expression or the declaration context associated with a prior
114    // nested-name-specifier.
115    LookupQualifiedName(Result, LookupCtx);
116
117    if (ObjectTypePtr && Result.empty()) {
118      // C++ [basic.lookup.classref]p3:
119      //   If the unqualified-id is ~type-name, the type-name is looked up
120      //   in the context of the entire postfix-expression. If the type T of
121      //   the object expression is of a class type C, the type-name is also
122      //   looked up in the scope of class C. At least one of the lookups shall
123      //   find a name that refers to (possibly cv-qualified) T.
124      LookupName(Result, S);
125    }
126  } else {
127    // Perform unqualified name lookup.
128    LookupName(Result, S);
129  }
130
131  NamedDecl *IIDecl = 0;
132  switch (Result.getResultKind()) {
133  case LookupResult::NotFound:
134  case LookupResult::NotFoundInCurrentInstantiation:
135  case LookupResult::FoundOverloaded:
136  case LookupResult::FoundUnresolvedValue:
137    Result.suppressDiagnostics();
138    return 0;
139
140  case LookupResult::Ambiguous:
141    // Recover from type-hiding ambiguities by hiding the type.  We'll
142    // do the lookup again when looking for an object, and we can
143    // diagnose the error then.  If we don't do this, then the error
144    // about hiding the type will be immediately followed by an error
145    // that only makes sense if the identifier was treated like a type.
146    if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) {
147      Result.suppressDiagnostics();
148      return 0;
149    }
150
151    // Look to see if we have a type anywhere in the list of results.
152    for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end();
153         Res != ResEnd; ++Res) {
154      if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res)) {
155        if (!IIDecl ||
156            (*Res)->getLocation().getRawEncoding() <
157              IIDecl->getLocation().getRawEncoding())
158          IIDecl = *Res;
159      }
160    }
161
162    if (!IIDecl) {
163      // None of the entities we found is a type, so there is no way
164      // to even assume that the result is a type. In this case, don't
165      // complain about the ambiguity. The parser will either try to
166      // perform this lookup again (e.g., as an object name), which
167      // will produce the ambiguity, or will complain that it expected
168      // a type name.
169      Result.suppressDiagnostics();
170      return 0;
171    }
172
173    // We found a type within the ambiguous lookup; diagnose the
174    // ambiguity and then return that type. This might be the right
175    // answer, or it might not be, but it suppresses any attempt to
176    // perform the name lookup again.
177    break;
178
179  case LookupResult::Found:
180    IIDecl = Result.getFoundDecl();
181    break;
182  }
183
184  assert(IIDecl && "Didn't find decl");
185
186  QualType T;
187  if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
188    DiagnoseUseOfDecl(IIDecl, NameLoc);
189
190    if (T.isNull())
191      T = Context.getTypeDeclType(TD);
192
193    if (SS)
194      T = getQualifiedNameType(*SS, T);
195
196  } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
197    T = Context.getObjCInterfaceType(IDecl);
198  } else if (UnresolvedUsingTypenameDecl *UUDecl =
199               dyn_cast<UnresolvedUsingTypenameDecl>(IIDecl)) {
200    // FIXME: preserve source structure information.
201    T = Context.getTypenameType(UUDecl->getTargetNestedNameSpecifier(), &II);
202  } else {
203    // If it's not plausibly a type, suppress diagnostics.
204    Result.suppressDiagnostics();
205    return 0;
206  }
207
208  return T.getAsOpaquePtr();
209}
210
211/// isTagName() - This method is called *for error recovery purposes only*
212/// to determine if the specified name is a valid tag name ("struct foo").  If
213/// so, this returns the TST for the tag corresponding to it (TST_enum,
214/// TST_union, TST_struct, TST_class).  This is used to diagnose cases in C
215/// where the user forgot to specify the tag.
216DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
217  // Do a tag name lookup in this scope.
218  LookupResult R(*this, &II, SourceLocation(), LookupTagName);
219  LookupName(R, S, false);
220  R.suppressDiagnostics();
221  if (R.getResultKind() == LookupResult::Found)
222    if (const TagDecl *TD = R.getAsSingle<TagDecl>()) {
223      switch (TD->getTagKind()) {
224      case TagDecl::TK_struct: return DeclSpec::TST_struct;
225      case TagDecl::TK_union:  return DeclSpec::TST_union;
226      case TagDecl::TK_class:  return DeclSpec::TST_class;
227      case TagDecl::TK_enum:   return DeclSpec::TST_enum;
228      }
229    }
230
231  return DeclSpec::TST_unspecified;
232}
233
234bool Sema::DiagnoseUnknownTypeName(const IdentifierInfo &II,
235                                   SourceLocation IILoc,
236                                   Scope *S,
237                                   const CXXScopeSpec *SS,
238                                   TypeTy *&SuggestedType) {
239  // We don't have anything to suggest (yet).
240  SuggestedType = 0;
241
242  // There may have been a typo in the name of the type. Look up typo
243  // results, in case we have something that we can suggest.
244  LookupResult Lookup(*this, &II, IILoc, LookupOrdinaryName,
245                      NotForRedeclaration);
246
247  // FIXME: It would be nice if we could correct for typos in built-in
248  // names, such as "itn" for "int".
249
250  if (CorrectTypo(Lookup, S, SS) && Lookup.isSingleResult()) {
251    NamedDecl *Result = Lookup.getAsSingle<NamedDecl>();
252    if ((isa<TypeDecl>(Result) || isa<ObjCInterfaceDecl>(Result)) &&
253        !Result->isInvalidDecl()) {
254      // We found a similarly-named type or interface; suggest that.
255      if (!SS || !SS->isSet())
256        Diag(IILoc, diag::err_unknown_typename_suggest)
257          << &II << Lookup.getLookupName()
258          << CodeModificationHint::CreateReplacement(SourceRange(IILoc),
259                                                     Result->getNameAsString());
260      else if (DeclContext *DC = computeDeclContext(*SS, false))
261        Diag(IILoc, diag::err_unknown_nested_typename_suggest)
262          << &II << DC << Lookup.getLookupName() << SS->getRange()
263          << CodeModificationHint::CreateReplacement(SourceRange(IILoc),
264                                                     Result->getNameAsString());
265      else
266        llvm_unreachable("could not have corrected a typo here");
267
268      Diag(Result->getLocation(), diag::note_previous_decl)
269        << Result->getDeclName();
270
271      SuggestedType = getTypeName(*Result->getIdentifier(), IILoc, S, SS);
272      return true;
273    }
274  }
275
276  // FIXME: Should we move the logic that tries to recover from a missing tag
277  // (struct, union, enum) from Parser::ParseImplicitInt here, instead?
278
279  if (!SS || (!SS->isSet() && !SS->isInvalid()))
280    Diag(IILoc, diag::err_unknown_typename) << &II;
281  else if (DeclContext *DC = computeDeclContext(*SS, false))
282    Diag(IILoc, diag::err_typename_nested_not_found)
283      << &II << DC << SS->getRange();
284  else if (isDependentScopeSpecifier(*SS)) {
285    Diag(SS->getRange().getBegin(), diag::err_typename_missing)
286      << (NestedNameSpecifier *)SS->getScopeRep() << II.getName()
287      << SourceRange(SS->getRange().getBegin(), IILoc)
288      << CodeModificationHint::CreateInsertion(SS->getRange().getBegin(),
289                                               "typename ");
290    SuggestedType = ActOnTypenameType(SourceLocation(), *SS, II, IILoc).get();
291  } else {
292    assert(SS && SS->isInvalid() &&
293           "Invalid scope specifier has already been diagnosed");
294  }
295
296  return true;
297}
298
299// Determines the context to return to after temporarily entering a
300// context.  This depends in an unnecessarily complicated way on the
301// exact ordering of callbacks from the parser.
302DeclContext *Sema::getContainingDC(DeclContext *DC) {
303
304  // Functions defined inline within classes aren't parsed until we've
305  // finished parsing the top-level class, so the top-level class is
306  // the context we'll need to return to.
307  if (isa<FunctionDecl>(DC)) {
308    DC = DC->getLexicalParent();
309
310    // A function not defined within a class will always return to its
311    // lexical context.
312    if (!isa<CXXRecordDecl>(DC))
313      return DC;
314
315    // A C++ inline method/friend is parsed *after* the topmost class
316    // it was declared in is fully parsed ("complete");  the topmost
317    // class is the context we need to return to.
318    while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
319      DC = RD;
320
321    // Return the declaration context of the topmost class the inline method is
322    // declared in.
323    return DC;
324  }
325
326  if (isa<ObjCMethodDecl>(DC))
327    return Context.getTranslationUnitDecl();
328
329  return DC->getLexicalParent();
330}
331
332void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
333  assert(getContainingDC(DC) == CurContext &&
334      "The next DeclContext should be lexically contained in the current one.");
335  CurContext = DC;
336  S->setEntity(DC);
337}
338
339void Sema::PopDeclContext() {
340  assert(CurContext && "DeclContext imbalance!");
341
342  CurContext = getContainingDC(CurContext);
343}
344
345/// EnterDeclaratorContext - Used when we must lookup names in the context
346/// of a declarator's nested name specifier.
347///
348void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
349  // C++0x [basic.lookup.unqual]p13:
350  //   A name used in the definition of a static data member of class
351  //   X (after the qualified-id of the static member) is looked up as
352  //   if the name was used in a member function of X.
353  // C++0x [basic.lookup.unqual]p14:
354  //   If a variable member of a namespace is defined outside of the
355  //   scope of its namespace then any name used in the definition of
356  //   the variable member (after the declarator-id) is looked up as
357  //   if the definition of the variable member occurred in its
358  //   namespace.
359  // Both of these imply that we should push a scope whose context
360  // is the semantic context of the declaration.  We can't use
361  // PushDeclContext here because that context is not necessarily
362  // lexically contained in the current context.  Fortunately,
363  // the containing scope should have the appropriate information.
364
365  assert(!S->getEntity() && "scope already has entity");
366
367#ifndef NDEBUG
368  Scope *Ancestor = S->getParent();
369  while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
370  assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
371#endif
372
373  CurContext = DC;
374  S->setEntity(DC);
375}
376
377void Sema::ExitDeclaratorContext(Scope *S) {
378  assert(S->getEntity() == CurContext && "Context imbalance!");
379
380  // Switch back to the lexical context.  The safety of this is
381  // enforced by an assert in EnterDeclaratorContext.
382  Scope *Ancestor = S->getParent();
383  while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
384  CurContext = (DeclContext*) Ancestor->getEntity();
385
386  // We don't need to do anything with the scope, which is going to
387  // disappear.
388}
389
390/// \brief Determine whether we allow overloading of the function
391/// PrevDecl with another declaration.
392///
393/// This routine determines whether overloading is possible, not
394/// whether some new function is actually an overload. It will return
395/// true in C++ (where we can always provide overloads) or, as an
396/// extension, in C when the previous function is already an
397/// overloaded function declaration or has the "overloadable"
398/// attribute.
399static bool AllowOverloadingOfFunction(LookupResult &Previous,
400                                       ASTContext &Context) {
401  if (Context.getLangOptions().CPlusPlus)
402    return true;
403
404  if (Previous.getResultKind() == LookupResult::FoundOverloaded)
405    return true;
406
407  return (Previous.getResultKind() == LookupResult::Found
408          && Previous.getFoundDecl()->hasAttr<OverloadableAttr>());
409}
410
411/// Add this decl to the scope shadowed decl chains.
412void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) {
413  // Move up the scope chain until we find the nearest enclosing
414  // non-transparent context. The declaration will be introduced into this
415  // scope.
416  while (S->getEntity() &&
417         ((DeclContext *)S->getEntity())->isTransparentContext())
418    S = S->getParent();
419
420  // Add scoped declarations into their context, so that they can be
421  // found later. Declarations without a context won't be inserted
422  // into any context.
423  if (AddToContext)
424    CurContext->addDecl(D);
425
426  // Out-of-line definitions shouldn't be pushed into scope in C++.
427  // Out-of-line variable and function definitions shouldn't even in C.
428  if ((getLangOptions().CPlusPlus || isa<VarDecl>(D) || isa<FunctionDecl>(D)) &&
429      D->isOutOfLine())
430    return;
431
432  // Template instantiations should also not be pushed into scope.
433  if (isa<FunctionDecl>(D) &&
434      cast<FunctionDecl>(D)->isFunctionTemplateSpecialization())
435    return;
436
437  // If this replaces anything in the current scope,
438  IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
439                               IEnd = IdResolver.end();
440  for (; I != IEnd; ++I) {
441    if (S->isDeclScope(DeclPtrTy::make(*I)) && D->declarationReplaces(*I)) {
442      S->RemoveDecl(DeclPtrTy::make(*I));
443      IdResolver.RemoveDecl(*I);
444
445      // Should only need to replace one decl.
446      break;
447    }
448  }
449
450  S->AddDecl(DeclPtrTy::make(D));
451  IdResolver.AddDecl(D);
452}
453
454bool Sema::isDeclInScope(NamedDecl *&D, DeclContext *Ctx, Scope *S) {
455  return IdResolver.isDeclInScope(D, Ctx, Context, S);
456}
457
458static bool isOutOfScopePreviousDeclaration(NamedDecl *,
459                                            DeclContext*,
460                                            ASTContext&);
461
462/// Filters out lookup results that don't fall within the given scope
463/// as determined by isDeclInScope.
464static void FilterLookupForScope(Sema &SemaRef, LookupResult &R,
465                                 DeclContext *Ctx, Scope *S,
466                                 bool ConsiderLinkage) {
467  LookupResult::Filter F = R.makeFilter();
468  while (F.hasNext()) {
469    NamedDecl *D = F.next();
470
471    if (SemaRef.isDeclInScope(D, Ctx, S))
472      continue;
473
474    if (ConsiderLinkage &&
475        isOutOfScopePreviousDeclaration(D, Ctx, SemaRef.Context))
476      continue;
477
478    F.erase();
479  }
480
481  F.done();
482}
483
484static bool isUsingDecl(NamedDecl *D) {
485  return isa<UsingShadowDecl>(D) ||
486         isa<UnresolvedUsingTypenameDecl>(D) ||
487         isa<UnresolvedUsingValueDecl>(D);
488}
489
490/// Removes using shadow declarations from the lookup results.
491static void RemoveUsingDecls(LookupResult &R) {
492  LookupResult::Filter F = R.makeFilter();
493  while (F.hasNext())
494    if (isUsingDecl(F.next()))
495      F.erase();
496
497  F.done();
498}
499
500static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
501  if (D->isInvalidDecl())
502    return false;
503
504  if (D->isUsed() || D->hasAttr<UnusedAttr>())
505    return false;
506
507  // White-list anything that isn't a local variable.
508  if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D) ||
509      !D->getDeclContext()->isFunctionOrMethod())
510    return false;
511
512  // Types of valid local variables should be complete, so this should succeed.
513  if (const ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
514    if (const RecordType *RT = VD->getType()->getAs<RecordType>()) {
515      if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
516        if (!RD->hasTrivialConstructor())
517          return false;
518        if (!RD->hasTrivialDestructor())
519          return false;
520      }
521    }
522  }
523
524  return true;
525}
526
527void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
528  if (S->decl_empty()) return;
529  assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
530         "Scope shouldn't contain decls!");
531
532  for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
533       I != E; ++I) {
534    Decl *TmpD = (*I).getAs<Decl>();
535    assert(TmpD && "This decl didn't get pushed??");
536
537    assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
538    NamedDecl *D = cast<NamedDecl>(TmpD);
539
540    if (!D->getDeclName()) continue;
541
542    // Diagnose unused variables in this scope.
543    if (ShouldDiagnoseUnusedDecl(D) &&
544        S->getNumErrorsAtStart() == getDiagnostics().getNumErrors())
545      Diag(D->getLocation(), diag::warn_unused_variable) << D->getDeclName();
546
547    // Remove this name from our lexical scope.
548    IdResolver.RemoveDecl(D);
549  }
550}
551
552/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
553/// return 0 if one not found.
554///
555/// \param Id the name of the Objective-C class we're looking for. If
556/// typo-correction fixes this name, the Id will be updated
557/// to the fixed name.
558///
559/// \param RecoverLoc if provided, this routine will attempt to
560/// recover from a typo in the name of an existing Objective-C class
561/// and, if successful, will return the lookup that results from
562/// typo-correction.
563ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
564                                              SourceLocation RecoverLoc) {
565  // The third "scope" argument is 0 since we aren't enabling lazy built-in
566  // creation from this context.
567  NamedDecl *IDecl = LookupSingleName(TUScope, Id, LookupOrdinaryName);
568
569  if (!IDecl && !RecoverLoc.isInvalid()) {
570    // Perform typo correction at the given location, but only if we
571    // find an Objective-C class name.
572    LookupResult R(*this, Id, RecoverLoc, LookupOrdinaryName);
573    if (CorrectTypo(R, TUScope, 0) &&
574        (IDecl = R.getAsSingle<ObjCInterfaceDecl>())) {
575      Diag(RecoverLoc, diag::err_undef_interface_suggest)
576        << Id << IDecl->getDeclName()
577        << CodeModificationHint::CreateReplacement(RecoverLoc,
578                                                   IDecl->getNameAsString());
579      Diag(IDecl->getLocation(), diag::note_previous_decl)
580        << IDecl->getDeclName();
581
582      Id = IDecl->getIdentifier();
583    }
584  }
585
586  return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
587}
588
589/// getNonFieldDeclScope - Retrieves the innermost scope, starting
590/// from S, where a non-field would be declared. This routine copes
591/// with the difference between C and C++ scoping rules in structs and
592/// unions. For example, the following code is well-formed in C but
593/// ill-formed in C++:
594/// @code
595/// struct S6 {
596///   enum { BAR } e;
597/// };
598///
599/// void test_S6() {
600///   struct S6 a;
601///   a.e = BAR;
602/// }
603/// @endcode
604/// For the declaration of BAR, this routine will return a different
605/// scope. The scope S will be the scope of the unnamed enumeration
606/// within S6. In C++, this routine will return the scope associated
607/// with S6, because the enumeration's scope is a transparent
608/// context but structures can contain non-field names. In C, this
609/// routine will return the translation unit scope, since the
610/// enumeration's scope is a transparent context and structures cannot
611/// contain non-field names.
612Scope *Sema::getNonFieldDeclScope(Scope *S) {
613  while (((S->getFlags() & Scope::DeclScope) == 0) ||
614         (S->getEntity() &&
615          ((DeclContext *)S->getEntity())->isTransparentContext()) ||
616         (S->isClassScope() && !getLangOptions().CPlusPlus))
617    S = S->getParent();
618  return S;
619}
620
621void Sema::InitBuiltinVaListType() {
622  if (!Context.getBuiltinVaListType().isNull())
623    return;
624
625  IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
626  NamedDecl *VaDecl = LookupSingleName(TUScope, VaIdent, LookupOrdinaryName);
627  TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
628  Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
629}
630
631/// LazilyCreateBuiltin - The specified Builtin-ID was first used at
632/// file scope.  lazily create a decl for it. ForRedeclaration is true
633/// if we're creating this built-in in anticipation of redeclaring the
634/// built-in.
635NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
636                                     Scope *S, bool ForRedeclaration,
637                                     SourceLocation Loc) {
638  Builtin::ID BID = (Builtin::ID)bid;
639
640  if (Context.BuiltinInfo.hasVAListUse(BID))
641    InitBuiltinVaListType();
642
643  ASTContext::GetBuiltinTypeError Error;
644  QualType R = Context.GetBuiltinType(BID, Error);
645  switch (Error) {
646  case ASTContext::GE_None:
647    // Okay
648    break;
649
650  case ASTContext::GE_Missing_stdio:
651    if (ForRedeclaration)
652      Diag(Loc, diag::err_implicit_decl_requires_stdio)
653        << Context.BuiltinInfo.GetName(BID);
654    return 0;
655
656  case ASTContext::GE_Missing_setjmp:
657    if (ForRedeclaration)
658      Diag(Loc, diag::err_implicit_decl_requires_setjmp)
659        << Context.BuiltinInfo.GetName(BID);
660    return 0;
661  }
662
663  if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
664    Diag(Loc, diag::ext_implicit_lib_function_decl)
665      << Context.BuiltinInfo.GetName(BID)
666      << R;
667    if (Context.BuiltinInfo.getHeaderName(BID) &&
668        Diags.getDiagnosticLevel(diag::ext_implicit_lib_function_decl)
669          != Diagnostic::Ignored)
670      Diag(Loc, diag::note_please_include_header)
671        << Context.BuiltinInfo.getHeaderName(BID)
672        << Context.BuiltinInfo.GetName(BID);
673  }
674
675  FunctionDecl *New = FunctionDecl::Create(Context,
676                                           Context.getTranslationUnitDecl(),
677                                           Loc, II, R, /*TInfo=*/0,
678                                           FunctionDecl::Extern, false,
679                                           /*hasPrototype=*/true);
680  New->setImplicit();
681
682  // Create Decl objects for each parameter, adding them to the
683  // FunctionDecl.
684  if (FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
685    llvm::SmallVector<ParmVarDecl*, 16> Params;
686    for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
687      Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
688                                           FT->getArgType(i), /*TInfo=*/0,
689                                           VarDecl::None, 0));
690    New->setParams(Params.data(), Params.size());
691  }
692
693  AddKnownFunctionAttributes(New);
694
695  // TUScope is the translation-unit scope to insert this function into.
696  // FIXME: This is hideous. We need to teach PushOnScopeChains to
697  // relate Scopes to DeclContexts, and probably eliminate CurContext
698  // entirely, but we're not there yet.
699  DeclContext *SavedContext = CurContext;
700  CurContext = Context.getTranslationUnitDecl();
701  PushOnScopeChains(New, TUScope);
702  CurContext = SavedContext;
703  return New;
704}
705
706/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the
707/// same name and scope as a previous declaration 'Old'.  Figure out
708/// how to resolve this situation, merging decls or emitting
709/// diagnostics as appropriate. If there was an error, set New to be invalid.
710///
711void Sema::MergeTypeDefDecl(TypedefDecl *New, LookupResult &OldDecls) {
712  // If the new decl is known invalid already, don't bother doing any
713  // merging checks.
714  if (New->isInvalidDecl()) return;
715
716  // Allow multiple definitions for ObjC built-in typedefs.
717  // FIXME: Verify the underlying types are equivalent!
718  if (getLangOptions().ObjC1) {
719    const IdentifierInfo *TypeID = New->getIdentifier();
720    switch (TypeID->getLength()) {
721    default: break;
722    case 2:
723      if (!TypeID->isStr("id"))
724        break;
725      Context.ObjCIdRedefinitionType = New->getUnderlyingType();
726      // Install the built-in type for 'id', ignoring the current definition.
727      New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
728      return;
729    case 5:
730      if (!TypeID->isStr("Class"))
731        break;
732      Context.ObjCClassRedefinitionType = New->getUnderlyingType();
733      // Install the built-in type for 'Class', ignoring the current definition.
734      New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
735      return;
736    case 3:
737      if (!TypeID->isStr("SEL"))
738        break;
739      Context.ObjCSelRedefinitionType = New->getUnderlyingType();
740      // Install the built-in type for 'SEL', ignoring the current definition.
741      New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
742      return;
743    case 8:
744      if (!TypeID->isStr("Protocol"))
745        break;
746      Context.setObjCProtoType(New->getUnderlyingType());
747      return;
748    }
749    // Fall through - the typedef name was not a builtin type.
750  }
751
752  // Verify the old decl was also a type.
753  TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>();
754  if (!Old) {
755    Diag(New->getLocation(), diag::err_redefinition_different_kind)
756      << New->getDeclName();
757
758    NamedDecl *OldD = OldDecls.getRepresentativeDecl();
759    if (OldD->getLocation().isValid())
760      Diag(OldD->getLocation(), diag::note_previous_definition);
761
762    return New->setInvalidDecl();
763  }
764
765  // If the old declaration is invalid, just give up here.
766  if (Old->isInvalidDecl())
767    return New->setInvalidDecl();
768
769  // Determine the "old" type we'll use for checking and diagnostics.
770  QualType OldType;
771  if (TypedefDecl *OldTypedef = dyn_cast<TypedefDecl>(Old))
772    OldType = OldTypedef->getUnderlyingType();
773  else
774    OldType = Context.getTypeDeclType(Old);
775
776  // If the typedef types are not identical, reject them in all languages and
777  // with any extensions enabled.
778
779  if (OldType != New->getUnderlyingType() &&
780      Context.getCanonicalType(OldType) !=
781      Context.getCanonicalType(New->getUnderlyingType())) {
782    Diag(New->getLocation(), diag::err_redefinition_different_typedef)
783      << New->getUnderlyingType() << OldType;
784    if (Old->getLocation().isValid())
785      Diag(Old->getLocation(), diag::note_previous_definition);
786    return New->setInvalidDecl();
787  }
788
789  // The types match.  Link up the redeclaration chain if the old
790  // declaration was a typedef.
791  // FIXME: this is a potential source of wierdness if the type
792  // spellings don't match exactly.
793  if (isa<TypedefDecl>(Old))
794    New->setPreviousDeclaration(cast<TypedefDecl>(Old));
795
796  if (getLangOptions().Microsoft)
797    return;
798
799  if (getLangOptions().CPlusPlus) {
800    // C++ [dcl.typedef]p2:
801    //   In a given non-class scope, a typedef specifier can be used to
802    //   redefine the name of any type declared in that scope to refer
803    //   to the type to which it already refers.
804    if (!isa<CXXRecordDecl>(CurContext))
805      return;
806
807    // C++0x [dcl.typedef]p4:
808    //   In a given class scope, a typedef specifier can be used to redefine
809    //   any class-name declared in that scope that is not also a typedef-name
810    //   to refer to the type to which it already refers.
811    //
812    // This wording came in via DR424, which was a correction to the
813    // wording in DR56, which accidentally banned code like:
814    //
815    //   struct S {
816    //     typedef struct A { } A;
817    //   };
818    //
819    // in the C++03 standard. We implement the C++0x semantics, which
820    // allow the above but disallow
821    //
822    //   struct S {
823    //     typedef int I;
824    //     typedef int I;
825    //   };
826    //
827    // since that was the intent of DR56.
828    if (!isa<TypedefDecl >(Old))
829      return;
830
831    Diag(New->getLocation(), diag::err_redefinition)
832      << New->getDeclName();
833    Diag(Old->getLocation(), diag::note_previous_definition);
834    return New->setInvalidDecl();
835  }
836
837  // If we have a redefinition of a typedef in C, emit a warning.  This warning
838  // is normally mapped to an error, but can be controlled with
839  // -Wtypedef-redefinition.  If either the original or the redefinition is
840  // in a system header, don't emit this for compatibility with GCC.
841  if (getDiagnostics().getSuppressSystemWarnings() &&
842      (Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
843       Context.getSourceManager().isInSystemHeader(New->getLocation())))
844    return;
845
846  Diag(New->getLocation(), diag::warn_redefinition_of_typedef)
847    << New->getDeclName();
848  Diag(Old->getLocation(), diag::note_previous_definition);
849  return;
850}
851
852/// DeclhasAttr - returns true if decl Declaration already has the target
853/// attribute.
854static bool
855DeclHasAttr(const Decl *decl, const Attr *target) {
856  for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
857    if (attr->getKind() == target->getKind())
858      return true;
859
860  return false;
861}
862
863/// MergeAttributes - append attributes from the Old decl to the New one.
864static void MergeAttributes(Decl *New, Decl *Old, ASTContext &C) {
865  for (const Attr *attr = Old->getAttrs(); attr; attr = attr->getNext()) {
866    if (!DeclHasAttr(New, attr) && attr->isMerged()) {
867      Attr *NewAttr = attr->clone(C);
868      NewAttr->setInherited(true);
869      New->addAttr(NewAttr);
870    }
871  }
872}
873
874/// Used in MergeFunctionDecl to keep track of function parameters in
875/// C.
876struct GNUCompatibleParamWarning {
877  ParmVarDecl *OldParm;
878  ParmVarDecl *NewParm;
879  QualType PromotedType;
880};
881
882
883/// getSpecialMember - get the special member enum for a method.
884static Sema::CXXSpecialMember getSpecialMember(ASTContext &Ctx,
885                                               const CXXMethodDecl *MD) {
886  if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
887    if (Ctor->isDefaultConstructor())
888      return Sema::CXXDefaultConstructor;
889    if (Ctor->isCopyConstructor())
890      return Sema::CXXCopyConstructor;
891  }
892
893  if (isa<CXXDestructorDecl>(MD))
894    return Sema::CXXDestructor;
895
896  assert(MD->isCopyAssignment() && "Must have copy assignment operator");
897  return Sema::CXXCopyAssignment;
898}
899
900/// canREdefineFunction - checks if a function can be redefined. Currently,
901/// only extern inline functions can be redefined, and even then only in
902/// GNU89 mode.
903static bool canRedefineFunction(const FunctionDecl *FD,
904                                const LangOptions& LangOpts) {
905  return (LangOpts.GNUMode && !LangOpts.C99 && !LangOpts.CPlusPlus &&
906          FD->isInlineSpecified() &&
907          FD->getStorageClass() == FunctionDecl::Extern);
908}
909
910/// MergeFunctionDecl - We just parsed a function 'New' from
911/// declarator D which has the same name and scope as a previous
912/// declaration 'Old'.  Figure out how to resolve this situation,
913/// merging decls or emitting diagnostics as appropriate.
914///
915/// In C++, New and Old must be declarations that are not
916/// overloaded. Use IsOverload to determine whether New and Old are
917/// overloaded, and to select the Old declaration that New should be
918/// merged with.
919///
920/// Returns true if there was an error, false otherwise.
921bool Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD) {
922  // Verify the old decl was also a function.
923  FunctionDecl *Old = 0;
924  if (FunctionTemplateDecl *OldFunctionTemplate
925        = dyn_cast<FunctionTemplateDecl>(OldD))
926    Old = OldFunctionTemplate->getTemplatedDecl();
927  else
928    Old = dyn_cast<FunctionDecl>(OldD);
929  if (!Old) {
930    if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) {
931      Diag(New->getLocation(), diag::err_using_decl_conflict_reverse);
932      Diag(Shadow->getTargetDecl()->getLocation(),
933           diag::note_using_decl_target);
934      Diag(Shadow->getUsingDecl()->getLocation(),
935           diag::note_using_decl) << 0;
936      return true;
937    }
938
939    Diag(New->getLocation(), diag::err_redefinition_different_kind)
940      << New->getDeclName();
941    Diag(OldD->getLocation(), diag::note_previous_definition);
942    return true;
943  }
944
945  // Determine whether the previous declaration was a definition,
946  // implicit declaration, or a declaration.
947  diag::kind PrevDiag;
948  if (Old->isThisDeclarationADefinition())
949    PrevDiag = diag::note_previous_definition;
950  else if (Old->isImplicit())
951    PrevDiag = diag::note_previous_implicit_declaration;
952  else
953    PrevDiag = diag::note_previous_declaration;
954
955  QualType OldQType = Context.getCanonicalType(Old->getType());
956  QualType NewQType = Context.getCanonicalType(New->getType());
957
958  // Don't complain about this if we're in GNU89 mode and the old function
959  // is an extern inline function.
960  if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
961      New->getStorageClass() == FunctionDecl::Static &&
962      Old->getStorageClass() != FunctionDecl::Static &&
963      !canRedefineFunction(Old, getLangOptions())) {
964    Diag(New->getLocation(), diag::err_static_non_static)
965      << New;
966    Diag(Old->getLocation(), PrevDiag);
967    return true;
968  }
969
970  // If a function is first declared with a calling convention, but is
971  // later declared or defined without one, the second decl assumes the
972  // calling convention of the first.
973  //
974  // For the new decl, we have to look at the NON-canonical type to tell the
975  // difference between a function that really doesn't have a calling
976  // convention and one that is declared cdecl. That's because in
977  // canonicalization (see ASTContext.cpp), cdecl is canonicalized away
978  // because it is the default calling convention.
979  //
980  // Note also that we DO NOT return at this point, because we still have
981  // other tests to run.
982  const FunctionType *OldType = OldQType->getAs<FunctionType>();
983  const FunctionType *NewType = New->getType()->getAs<FunctionType>();
984  if (OldType->getCallConv() != CC_Default &&
985      NewType->getCallConv() == CC_Default) {
986    NewQType = Context.getCallConvType(NewQType, OldType->getCallConv());
987    New->setType(NewQType);
988    NewQType = Context.getCanonicalType(NewQType);
989  } else if (!Context.isSameCallConv(OldType->getCallConv(),
990                                     NewType->getCallConv())) {
991    // Calling conventions really aren't compatible, so complain.
992    Diag(New->getLocation(), diag::err_cconv_change)
993      << FunctionType::getNameForCallConv(NewType->getCallConv())
994      << (OldType->getCallConv() == CC_Default)
995      << (OldType->getCallConv() == CC_Default ? "" :
996          FunctionType::getNameForCallConv(OldType->getCallConv()));
997    Diag(Old->getLocation(), diag::note_previous_declaration);
998    return true;
999  }
1000
1001  // FIXME: diagnose the other way around?
1002  if (OldType->getNoReturnAttr() && !NewType->getNoReturnAttr()) {
1003    NewQType = Context.getNoReturnType(NewQType);
1004    New->setType(NewQType);
1005    assert(NewQType.isCanonical());
1006  }
1007
1008  if (getLangOptions().CPlusPlus) {
1009    // (C++98 13.1p2):
1010    //   Certain function declarations cannot be overloaded:
1011    //     -- Function declarations that differ only in the return type
1012    //        cannot be overloaded.
1013    QualType OldReturnType
1014      = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
1015    QualType NewReturnType
1016      = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
1017    if (OldReturnType != NewReturnType) {
1018      Diag(New->getLocation(), diag::err_ovl_diff_return_type);
1019      Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
1020      return true;
1021    }
1022
1023    const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
1024    const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
1025    if (OldMethod && NewMethod) {
1026      if (!NewMethod->getFriendObjectKind() &&
1027          NewMethod->getLexicalDeclContext()->isRecord()) {
1028        //    -- Member function declarations with the same name and the
1029        //       same parameter types cannot be overloaded if any of them
1030        //       is a static member function declaration.
1031        if (OldMethod->isStatic() || NewMethod->isStatic()) {
1032          Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
1033          Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
1034          return true;
1035        }
1036
1037        // C++ [class.mem]p1:
1038        //   [...] A member shall not be declared twice in the
1039        //   member-specification, except that a nested class or member
1040        //   class template can be declared and then later defined.
1041        unsigned NewDiag;
1042        if (isa<CXXConstructorDecl>(OldMethod))
1043          NewDiag = diag::err_constructor_redeclared;
1044        else if (isa<CXXDestructorDecl>(NewMethod))
1045          NewDiag = diag::err_destructor_redeclared;
1046        else if (isa<CXXConversionDecl>(NewMethod))
1047          NewDiag = diag::err_conv_function_redeclared;
1048        else
1049          NewDiag = diag::err_member_redeclared;
1050
1051        Diag(New->getLocation(), NewDiag);
1052        Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
1053      } else {
1054        if (OldMethod->isImplicit()) {
1055          Diag(NewMethod->getLocation(),
1056               diag::err_definition_of_implicitly_declared_member)
1057          << New << getSpecialMember(Context, OldMethod);
1058
1059          Diag(OldMethod->getLocation(),
1060               diag::note_previous_implicit_declaration);
1061          return true;
1062        }
1063      }
1064    }
1065
1066    // (C++98 8.3.5p3):
1067    //   All declarations for a function shall agree exactly in both the
1068    //   return type and the parameter-type-list.
1069    // attributes should be ignored when comparing.
1070    if (Context.getNoReturnType(OldQType, false) ==
1071        Context.getNoReturnType(NewQType, false))
1072      return MergeCompatibleFunctionDecls(New, Old);
1073
1074    // Fall through for conflicting redeclarations and redefinitions.
1075  }
1076
1077  // C: Function types need to be compatible, not identical. This handles
1078  // duplicate function decls like "void f(int); void f(enum X);" properly.
1079  if (!getLangOptions().CPlusPlus &&
1080      Context.typesAreCompatible(OldQType, NewQType)) {
1081    const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
1082    const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
1083    const FunctionProtoType *OldProto = 0;
1084    if (isa<FunctionNoProtoType>(NewFuncType) &&
1085        (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
1086      // The old declaration provided a function prototype, but the
1087      // new declaration does not. Merge in the prototype.
1088      assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
1089      llvm::SmallVector<QualType, 16> ParamTypes(OldProto->arg_type_begin(),
1090                                                 OldProto->arg_type_end());
1091      NewQType = Context.getFunctionType(NewFuncType->getResultType(),
1092                                         ParamTypes.data(), ParamTypes.size(),
1093                                         OldProto->isVariadic(),
1094                                         OldProto->getTypeQuals(),
1095                                         false, false, 0, 0,
1096                                         OldProto->getNoReturnAttr(),
1097                                         OldProto->getCallConv());
1098      New->setType(NewQType);
1099      New->setHasInheritedPrototype();
1100
1101      // Synthesize a parameter for each argument type.
1102      llvm::SmallVector<ParmVarDecl*, 16> Params;
1103      for (FunctionProtoType::arg_type_iterator
1104             ParamType = OldProto->arg_type_begin(),
1105             ParamEnd = OldProto->arg_type_end();
1106           ParamType != ParamEnd; ++ParamType) {
1107        ParmVarDecl *Param = ParmVarDecl::Create(Context, New,
1108                                                 SourceLocation(), 0,
1109                                                 *ParamType, /*TInfo=*/0,
1110                                                 VarDecl::None, 0);
1111        Param->setImplicit();
1112        Params.push_back(Param);
1113      }
1114
1115      New->setParams(Params.data(), Params.size());
1116    }
1117
1118    return MergeCompatibleFunctionDecls(New, Old);
1119  }
1120
1121  // GNU C permits a K&R definition to follow a prototype declaration
1122  // if the declared types of the parameters in the K&R definition
1123  // match the types in the prototype declaration, even when the
1124  // promoted types of the parameters from the K&R definition differ
1125  // from the types in the prototype. GCC then keeps the types from
1126  // the prototype.
1127  //
1128  // If a variadic prototype is followed by a non-variadic K&R definition,
1129  // the K&R definition becomes variadic.  This is sort of an edge case, but
1130  // it's legal per the standard depending on how you read C99 6.7.5.3p15 and
1131  // C99 6.9.1p8.
1132  if (!getLangOptions().CPlusPlus &&
1133      Old->hasPrototype() && !New->hasPrototype() &&
1134      New->getType()->getAs<FunctionProtoType>() &&
1135      Old->getNumParams() == New->getNumParams()) {
1136    llvm::SmallVector<QualType, 16> ArgTypes;
1137    llvm::SmallVector<GNUCompatibleParamWarning, 16> Warnings;
1138    const FunctionProtoType *OldProto
1139      = Old->getType()->getAs<FunctionProtoType>();
1140    const FunctionProtoType *NewProto
1141      = New->getType()->getAs<FunctionProtoType>();
1142
1143    // Determine whether this is the GNU C extension.
1144    QualType MergedReturn = Context.mergeTypes(OldProto->getResultType(),
1145                                               NewProto->getResultType());
1146    bool LooseCompatible = !MergedReturn.isNull();
1147    for (unsigned Idx = 0, End = Old->getNumParams();
1148         LooseCompatible && Idx != End; ++Idx) {
1149      ParmVarDecl *OldParm = Old->getParamDecl(Idx);
1150      ParmVarDecl *NewParm = New->getParamDecl(Idx);
1151      if (Context.typesAreCompatible(OldParm->getType(),
1152                                     NewProto->getArgType(Idx))) {
1153        ArgTypes.push_back(NewParm->getType());
1154      } else if (Context.typesAreCompatible(OldParm->getType(),
1155                                            NewParm->getType())) {
1156        GNUCompatibleParamWarning Warn
1157          = { OldParm, NewParm, NewProto->getArgType(Idx) };
1158        Warnings.push_back(Warn);
1159        ArgTypes.push_back(NewParm->getType());
1160      } else
1161        LooseCompatible = false;
1162    }
1163
1164    if (LooseCompatible) {
1165      for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
1166        Diag(Warnings[Warn].NewParm->getLocation(),
1167             diag::ext_param_promoted_not_compatible_with_prototype)
1168          << Warnings[Warn].PromotedType
1169          << Warnings[Warn].OldParm->getType();
1170        Diag(Warnings[Warn].OldParm->getLocation(),
1171             diag::note_previous_declaration);
1172      }
1173
1174      New->setType(Context.getFunctionType(MergedReturn, &ArgTypes[0],
1175                                           ArgTypes.size(),
1176                                           OldProto->isVariadic(), 0,
1177                                           false, false, 0, 0,
1178                                           OldProto->getNoReturnAttr(),
1179                                           OldProto->getCallConv()));
1180      return MergeCompatibleFunctionDecls(New, Old);
1181    }
1182
1183    // Fall through to diagnose conflicting types.
1184  }
1185
1186  // A function that has already been declared has been redeclared or defined
1187  // with a different type- show appropriate diagnostic
1188  if (unsigned BuiltinID = Old->getBuiltinID()) {
1189    // The user has declared a builtin function with an incompatible
1190    // signature.
1191    if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
1192      // The function the user is redeclaring is a library-defined
1193      // function like 'malloc' or 'printf'. Warn about the
1194      // redeclaration, then pretend that we don't know about this
1195      // library built-in.
1196      Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
1197      Diag(Old->getLocation(), diag::note_previous_builtin_declaration)
1198        << Old << Old->getType();
1199      New->getIdentifier()->setBuiltinID(Builtin::NotBuiltin);
1200      Old->setInvalidDecl();
1201      return false;
1202    }
1203
1204    PrevDiag = diag::note_previous_builtin_declaration;
1205  }
1206
1207  Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
1208  Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
1209  return true;
1210}
1211
1212/// \brief Completes the merge of two function declarations that are
1213/// known to be compatible.
1214///
1215/// This routine handles the merging of attributes and other
1216/// properties of function declarations form the old declaration to
1217/// the new declaration, once we know that New is in fact a
1218/// redeclaration of Old.
1219///
1220/// \returns false
1221bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old) {
1222  // Merge the attributes
1223  MergeAttributes(New, Old, Context);
1224
1225  // Merge the storage class.
1226  if (Old->getStorageClass() != FunctionDecl::Extern &&
1227      Old->getStorageClass() != FunctionDecl::None)
1228    New->setStorageClass(Old->getStorageClass());
1229
1230  // Merge "pure" flag.
1231  if (Old->isPure())
1232    New->setPure();
1233
1234  // Merge the "deleted" flag.
1235  if (Old->isDeleted())
1236    New->setDeleted();
1237
1238  if (getLangOptions().CPlusPlus)
1239    return MergeCXXFunctionDecl(New, Old);
1240
1241  return false;
1242}
1243
1244/// MergeVarDecl - We just parsed a variable 'New' which has the same name
1245/// and scope as a previous declaration 'Old'.  Figure out how to resolve this
1246/// situation, merging decls or emitting diagnostics as appropriate.
1247///
1248/// Tentative definition rules (C99 6.9.2p2) are checked by
1249/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
1250/// definitions here, since the initializer hasn't been attached.
1251///
1252void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
1253  // If the new decl is already invalid, don't do any other checking.
1254  if (New->isInvalidDecl())
1255    return;
1256
1257  // Verify the old decl was also a variable.
1258  VarDecl *Old = 0;
1259  if (!Previous.isSingleResult() ||
1260      !(Old = dyn_cast<VarDecl>(Previous.getFoundDecl()))) {
1261    Diag(New->getLocation(), diag::err_redefinition_different_kind)
1262      << New->getDeclName();
1263    Diag(Previous.getRepresentativeDecl()->getLocation(),
1264         diag::note_previous_definition);
1265    return New->setInvalidDecl();
1266  }
1267
1268  MergeAttributes(New, Old, Context);
1269
1270  // Merge the types
1271  QualType MergedT;
1272  if (getLangOptions().CPlusPlus) {
1273    if (Context.hasSameType(New->getType(), Old->getType()))
1274      MergedT = New->getType();
1275    // C++ [basic.link]p10:
1276    //   [...] the types specified by all declarations referring to a given
1277    //   object or function shall be identical, except that declarations for an
1278    //   array object can specify array types that differ by the presence or
1279    //   absence of a major array bound (8.3.4).
1280    else if (Old->getType()->isIncompleteArrayType() &&
1281             New->getType()->isArrayType()) {
1282      CanQual<ArrayType> OldArray
1283        = Context.getCanonicalType(Old->getType())->getAs<ArrayType>();
1284      CanQual<ArrayType> NewArray
1285        = Context.getCanonicalType(New->getType())->getAs<ArrayType>();
1286      if (OldArray->getElementType() == NewArray->getElementType())
1287        MergedT = New->getType();
1288    } else if (Old->getType()->isArrayType() &&
1289             New->getType()->isIncompleteArrayType()) {
1290      CanQual<ArrayType> OldArray
1291        = Context.getCanonicalType(Old->getType())->getAs<ArrayType>();
1292      CanQual<ArrayType> NewArray
1293        = Context.getCanonicalType(New->getType())->getAs<ArrayType>();
1294      if (OldArray->getElementType() == NewArray->getElementType())
1295        MergedT = Old->getType();
1296    }
1297  } else {
1298    MergedT = Context.mergeTypes(New->getType(), Old->getType());
1299  }
1300  if (MergedT.isNull()) {
1301    Diag(New->getLocation(), diag::err_redefinition_different_type)
1302      << New->getDeclName();
1303    Diag(Old->getLocation(), diag::note_previous_definition);
1304    return New->setInvalidDecl();
1305  }
1306  New->setType(MergedT);
1307
1308  // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
1309  if (New->getStorageClass() == VarDecl::Static &&
1310      (Old->getStorageClass() == VarDecl::None || Old->hasExternalStorage())) {
1311    Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
1312    Diag(Old->getLocation(), diag::note_previous_definition);
1313    return New->setInvalidDecl();
1314  }
1315  // C99 6.2.2p4:
1316  //   For an identifier declared with the storage-class specifier
1317  //   extern in a scope in which a prior declaration of that
1318  //   identifier is visible,23) if the prior declaration specifies
1319  //   internal or external linkage, the linkage of the identifier at
1320  //   the later declaration is the same as the linkage specified at
1321  //   the prior declaration. If no prior declaration is visible, or
1322  //   if the prior declaration specifies no linkage, then the
1323  //   identifier has external linkage.
1324  if (New->hasExternalStorage() && Old->hasLinkage())
1325    /* Okay */;
1326  else if (New->getStorageClass() != VarDecl::Static &&
1327           Old->getStorageClass() == VarDecl::Static) {
1328    Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
1329    Diag(Old->getLocation(), diag::note_previous_definition);
1330    return New->setInvalidDecl();
1331  }
1332
1333  // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
1334
1335  // FIXME: The test for external storage here seems wrong? We still
1336  // need to check for mismatches.
1337  if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
1338      // Don't complain about out-of-line definitions of static members.
1339      !(Old->getLexicalDeclContext()->isRecord() &&
1340        !New->getLexicalDeclContext()->isRecord())) {
1341    Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
1342    Diag(Old->getLocation(), diag::note_previous_definition);
1343    return New->setInvalidDecl();
1344  }
1345
1346  if (New->isThreadSpecified() && !Old->isThreadSpecified()) {
1347    Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
1348    Diag(Old->getLocation(), diag::note_previous_definition);
1349  } else if (!New->isThreadSpecified() && Old->isThreadSpecified()) {
1350    Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
1351    Diag(Old->getLocation(), diag::note_previous_definition);
1352  }
1353
1354  // C++ doesn't have tentative definitions, so go right ahead and check here.
1355  const VarDecl *Def;
1356  if (getLangOptions().CPlusPlus &&
1357      New->isThisDeclarationADefinition() == VarDecl::Definition &&
1358      (Def = Old->getDefinition())) {
1359    Diag(New->getLocation(), diag::err_redefinition)
1360      << New->getDeclName();
1361    Diag(Def->getLocation(), diag::note_previous_definition);
1362    New->setInvalidDecl();
1363    return;
1364  }
1365
1366  // Keep a chain of previous declarations.
1367  New->setPreviousDeclaration(Old);
1368
1369  // Inherit access appropriately.
1370  New->setAccess(Old->getAccess());
1371}
1372
1373/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
1374/// no declarator (e.g. "struct foo;") is parsed.
1375Sema::DeclPtrTy Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
1376  // FIXME: Error on auto/register at file scope
1377  // FIXME: Error on inline/virtual/explicit
1378  // FIXME: Warn on useless __thread
1379  // FIXME: Warn on useless const/volatile
1380  // FIXME: Warn on useless static/extern/typedef/private_extern/mutable
1381  // FIXME: Warn on useless attributes
1382  Decl *TagD = 0;
1383  TagDecl *Tag = 0;
1384  if (DS.getTypeSpecType() == DeclSpec::TST_class ||
1385      DS.getTypeSpecType() == DeclSpec::TST_struct ||
1386      DS.getTypeSpecType() == DeclSpec::TST_union ||
1387      DS.getTypeSpecType() == DeclSpec::TST_enum) {
1388    TagD = static_cast<Decl *>(DS.getTypeRep());
1389
1390    if (!TagD) // We probably had an error
1391      return DeclPtrTy();
1392
1393    // Note that the above type specs guarantee that the
1394    // type rep is a Decl, whereas in many of the others
1395    // it's a Type.
1396    Tag = dyn_cast<TagDecl>(TagD);
1397  }
1398
1399  if (unsigned TypeQuals = DS.getTypeQualifiers()) {
1400    // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
1401    // or incomplete types shall not be restrict-qualified."
1402    if (TypeQuals & DeclSpec::TQ_restrict)
1403      Diag(DS.getRestrictSpecLoc(),
1404           diag::err_typecheck_invalid_restrict_not_pointer_noarg)
1405           << DS.getSourceRange();
1406  }
1407
1408  if (DS.isFriendSpecified()) {
1409    // If we're dealing with a class template decl, assume that the
1410    // template routines are handling it.
1411    if (TagD && isa<ClassTemplateDecl>(TagD))
1412      return DeclPtrTy();
1413    return ActOnFriendTypeDecl(S, DS, MultiTemplateParamsArg(*this, 0, 0));
1414  }
1415
1416  if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
1417    // If there are attributes in the DeclSpec, apply them to the record.
1418    if (const AttributeList *AL = DS.getAttributes())
1419      ProcessDeclAttributeList(S, Record, AL);
1420
1421    if (!Record->getDeclName() && Record->isDefinition() &&
1422        DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
1423      if (getLangOptions().CPlusPlus ||
1424          Record->getDeclContext()->isRecord())
1425        return BuildAnonymousStructOrUnion(S, DS, Record);
1426
1427      Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
1428        << DS.getSourceRange();
1429    }
1430
1431    // Microsoft allows unnamed struct/union fields. Don't complain
1432    // about them.
1433    // FIXME: Should we support Microsoft's extensions in this area?
1434    if (Record->getDeclName() && getLangOptions().Microsoft)
1435      return DeclPtrTy::make(Tag);
1436  }
1437
1438  if (!DS.isMissingDeclaratorOk() &&
1439      DS.getTypeSpecType() != DeclSpec::TST_error) {
1440    // Warn about typedefs of enums without names, since this is an
1441    // extension in both Microsoft an GNU.
1442    if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
1443        Tag && isa<EnumDecl>(Tag)) {
1444      Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
1445        << DS.getSourceRange();
1446      return DeclPtrTy::make(Tag);
1447    }
1448
1449    Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
1450      << DS.getSourceRange();
1451    return DeclPtrTy();
1452  }
1453
1454  return DeclPtrTy::make(Tag);
1455}
1456
1457/// We are trying to inject an anonymous member into the given scope;
1458/// check if there's an existing declaration that can't be overloaded.
1459///
1460/// \return true if this is a forbidden redeclaration
1461static bool CheckAnonMemberRedeclaration(Sema &SemaRef,
1462                                         Scope *S,
1463                                         DeclContext *Owner,
1464                                         DeclarationName Name,
1465                                         SourceLocation NameLoc,
1466                                         unsigned diagnostic) {
1467  LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName,
1468                 Sema::ForRedeclaration);
1469  if (!SemaRef.LookupName(R, S)) return false;
1470
1471  if (R.getAsSingle<TagDecl>())
1472    return false;
1473
1474  // Pick a representative declaration.
1475  NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl();
1476  if (PrevDecl && Owner->isRecord()) {
1477    RecordDecl *Record = cast<RecordDecl>(Owner);
1478    if (!SemaRef.isDeclInScope(PrevDecl, Record, S))
1479      return false;
1480  }
1481
1482  SemaRef.Diag(NameLoc, diagnostic) << Name;
1483  SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
1484
1485  return true;
1486}
1487
1488/// InjectAnonymousStructOrUnionMembers - Inject the members of the
1489/// anonymous struct or union AnonRecord into the owning context Owner
1490/// and scope S. This routine will be invoked just after we realize
1491/// that an unnamed union or struct is actually an anonymous union or
1492/// struct, e.g.,
1493///
1494/// @code
1495/// union {
1496///   int i;
1497///   float f;
1498/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
1499///    // f into the surrounding scope.x
1500/// @endcode
1501///
1502/// This routine is recursive, injecting the names of nested anonymous
1503/// structs/unions into the owning context and scope as well.
1504bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
1505                                               RecordDecl *AnonRecord) {
1506  unsigned diagKind
1507    = AnonRecord->isUnion() ? diag::err_anonymous_union_member_redecl
1508                            : diag::err_anonymous_struct_member_redecl;
1509
1510  bool Invalid = false;
1511  for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
1512                               FEnd = AnonRecord->field_end();
1513       F != FEnd; ++F) {
1514    if ((*F)->getDeclName()) {
1515      if (CheckAnonMemberRedeclaration(*this, S, Owner, (*F)->getDeclName(),
1516                                       (*F)->getLocation(), diagKind)) {
1517        // C++ [class.union]p2:
1518        //   The names of the members of an anonymous union shall be
1519        //   distinct from the names of any other entity in the
1520        //   scope in which the anonymous union is declared.
1521        Invalid = true;
1522      } else {
1523        // C++ [class.union]p2:
1524        //   For the purpose of name lookup, after the anonymous union
1525        //   definition, the members of the anonymous union are
1526        //   considered to have been defined in the scope in which the
1527        //   anonymous union is declared.
1528        Owner->makeDeclVisibleInContext(*F);
1529        S->AddDecl(DeclPtrTy::make(*F));
1530        IdResolver.AddDecl(*F);
1531      }
1532    } else if (const RecordType *InnerRecordType
1533                 = (*F)->getType()->getAs<RecordType>()) {
1534      RecordDecl *InnerRecord = InnerRecordType->getDecl();
1535      if (InnerRecord->isAnonymousStructOrUnion())
1536        Invalid = Invalid ||
1537          InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
1538    }
1539  }
1540
1541  return Invalid;
1542}
1543
1544/// ActOnAnonymousStructOrUnion - Handle the declaration of an
1545/// anonymous structure or union. Anonymous unions are a C++ feature
1546/// (C++ [class.union]) and a GNU C extension; anonymous structures
1547/// are a GNU C and GNU C++ extension.
1548Sema::DeclPtrTy Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
1549                                                  RecordDecl *Record) {
1550  DeclContext *Owner = Record->getDeclContext();
1551
1552  // Diagnose whether this anonymous struct/union is an extension.
1553  if (Record->isUnion() && !getLangOptions().CPlusPlus)
1554    Diag(Record->getLocation(), diag::ext_anonymous_union);
1555  else if (!Record->isUnion())
1556    Diag(Record->getLocation(), diag::ext_anonymous_struct);
1557
1558  // C and C++ require different kinds of checks for anonymous
1559  // structs/unions.
1560  bool Invalid = false;
1561  if (getLangOptions().CPlusPlus) {
1562    const char* PrevSpec = 0;
1563    unsigned DiagID;
1564    // C++ [class.union]p3:
1565    //   Anonymous unions declared in a named namespace or in the
1566    //   global namespace shall be declared static.
1567    if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
1568        (isa<TranslationUnitDecl>(Owner) ||
1569         (isa<NamespaceDecl>(Owner) &&
1570          cast<NamespaceDecl>(Owner)->getDeclName()))) {
1571      Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
1572      Invalid = true;
1573
1574      // Recover by adding 'static'.
1575      DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(),
1576                             PrevSpec, DiagID);
1577    }
1578    // C++ [class.union]p3:
1579    //   A storage class is not allowed in a declaration of an
1580    //   anonymous union in a class scope.
1581    else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
1582             isa<RecordDecl>(Owner)) {
1583      Diag(DS.getStorageClassSpecLoc(),
1584           diag::err_anonymous_union_with_storage_spec);
1585      Invalid = true;
1586
1587      // Recover by removing the storage specifier.
1588      DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
1589                             PrevSpec, DiagID);
1590    }
1591
1592    // C++ [class.union]p2:
1593    //   The member-specification of an anonymous union shall only
1594    //   define non-static data members. [Note: nested types and
1595    //   functions cannot be declared within an anonymous union. ]
1596    for (DeclContext::decl_iterator Mem = Record->decls_begin(),
1597                                 MemEnd = Record->decls_end();
1598         Mem != MemEnd; ++Mem) {
1599      if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
1600        // C++ [class.union]p3:
1601        //   An anonymous union shall not have private or protected
1602        //   members (clause 11).
1603        if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
1604          Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
1605            << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
1606          Invalid = true;
1607        }
1608      } else if ((*Mem)->isImplicit()) {
1609        // Any implicit members are fine.
1610      } else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) {
1611        // This is a type that showed up in an
1612        // elaborated-type-specifier inside the anonymous struct or
1613        // union, but which actually declares a type outside of the
1614        // anonymous struct or union. It's okay.
1615      } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
1616        if (!MemRecord->isAnonymousStructOrUnion() &&
1617            MemRecord->getDeclName()) {
1618          // This is a nested type declaration.
1619          Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
1620            << (int)Record->isUnion();
1621          Invalid = true;
1622        }
1623      } else {
1624        // We have something that isn't a non-static data
1625        // member. Complain about it.
1626        unsigned DK = diag::err_anonymous_record_bad_member;
1627        if (isa<TypeDecl>(*Mem))
1628          DK = diag::err_anonymous_record_with_type;
1629        else if (isa<FunctionDecl>(*Mem))
1630          DK = diag::err_anonymous_record_with_function;
1631        else if (isa<VarDecl>(*Mem))
1632          DK = diag::err_anonymous_record_with_static;
1633        Diag((*Mem)->getLocation(), DK)
1634            << (int)Record->isUnion();
1635          Invalid = true;
1636      }
1637    }
1638  }
1639
1640  if (!Record->isUnion() && !Owner->isRecord()) {
1641    Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
1642      << (int)getLangOptions().CPlusPlus;
1643    Invalid = true;
1644  }
1645
1646  // Mock up a declarator.
1647  Declarator Dc(DS, Declarator::TypeNameContext);
1648  TypeSourceInfo *TInfo = 0;
1649  GetTypeForDeclarator(Dc, S, &TInfo);
1650  assert(TInfo && "couldn't build declarator info for anonymous struct/union");
1651
1652  // Create a declaration for this anonymous struct/union.
1653  NamedDecl *Anon = 0;
1654  if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
1655    Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
1656                             /*IdentifierInfo=*/0,
1657                             Context.getTypeDeclType(Record),
1658                             TInfo,
1659                             /*BitWidth=*/0, /*Mutable=*/false);
1660    Anon->setAccess(AS_public);
1661    if (getLangOptions().CPlusPlus)
1662      FieldCollector->Add(cast<FieldDecl>(Anon));
1663  } else {
1664    VarDecl::StorageClass SC;
1665    switch (DS.getStorageClassSpec()) {
1666    default: assert(0 && "Unknown storage class!");
1667    case DeclSpec::SCS_unspecified:    SC = VarDecl::None; break;
1668    case DeclSpec::SCS_extern:         SC = VarDecl::Extern; break;
1669    case DeclSpec::SCS_static:         SC = VarDecl::Static; break;
1670    case DeclSpec::SCS_auto:           SC = VarDecl::Auto; break;
1671    case DeclSpec::SCS_register:       SC = VarDecl::Register; break;
1672    case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1673    case DeclSpec::SCS_mutable:
1674      // mutable can only appear on non-static class members, so it's always
1675      // an error here
1676      Diag(Record->getLocation(), diag::err_mutable_nonmember);
1677      Invalid = true;
1678      SC = VarDecl::None;
1679      break;
1680    }
1681
1682    Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
1683                           /*IdentifierInfo=*/0,
1684                           Context.getTypeDeclType(Record),
1685                           TInfo,
1686                           SC);
1687  }
1688  Anon->setImplicit();
1689
1690  // Add the anonymous struct/union object to the current
1691  // context. We'll be referencing this object when we refer to one of
1692  // its members.
1693  Owner->addDecl(Anon);
1694
1695  // Inject the members of the anonymous struct/union into the owning
1696  // context and into the identifier resolver chain for name lookup
1697  // purposes.
1698  if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
1699    Invalid = true;
1700
1701  // Mark this as an anonymous struct/union type. Note that we do not
1702  // do this until after we have already checked and injected the
1703  // members of this anonymous struct/union type, because otherwise
1704  // the members could be injected twice: once by DeclContext when it
1705  // builds its lookup table, and once by
1706  // InjectAnonymousStructOrUnionMembers.
1707  Record->setAnonymousStructOrUnion(true);
1708
1709  if (Invalid)
1710    Anon->setInvalidDecl();
1711
1712  return DeclPtrTy::make(Anon);
1713}
1714
1715
1716/// GetNameForDeclarator - Determine the full declaration name for the
1717/// given Declarator.
1718DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1719  return GetNameFromUnqualifiedId(D.getName());
1720}
1721
1722/// \brief Retrieves the canonicalized name from a parsed unqualified-id.
1723DeclarationName Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
1724  switch (Name.getKind()) {
1725    case UnqualifiedId::IK_Identifier:
1726      return DeclarationName(Name.Identifier);
1727
1728    case UnqualifiedId::IK_OperatorFunctionId:
1729      return Context.DeclarationNames.getCXXOperatorName(
1730                                              Name.OperatorFunctionId.Operator);
1731
1732    case UnqualifiedId::IK_LiteralOperatorId:
1733      return Context.DeclarationNames.getCXXLiteralOperatorName(
1734                                                               Name.Identifier);
1735
1736    case UnqualifiedId::IK_ConversionFunctionId: {
1737      QualType Ty = GetTypeFromParser(Name.ConversionFunctionId);
1738      if (Ty.isNull())
1739        return DeclarationName();
1740
1741      return Context.DeclarationNames.getCXXConversionFunctionName(
1742                                                  Context.getCanonicalType(Ty));
1743    }
1744
1745    case UnqualifiedId::IK_ConstructorName: {
1746      QualType Ty = GetTypeFromParser(Name.ConstructorName);
1747      if (Ty.isNull())
1748        return DeclarationName();
1749
1750      return Context.DeclarationNames.getCXXConstructorName(
1751                                                  Context.getCanonicalType(Ty));
1752    }
1753
1754    case UnqualifiedId::IK_ConstructorTemplateId: {
1755      // In well-formed code, we can only have a constructor
1756      // template-id that refers to the current context, so go there
1757      // to find the actual type being constructed.
1758      CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext);
1759      if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name)
1760        return DeclarationName();
1761
1762      // Determine the type of the class being constructed.
1763      QualType CurClassType = Context.getTypeDeclType(CurClass);
1764
1765      // FIXME: Check two things: that the template-id names the same type as
1766      // CurClassType, and that the template-id does not occur when the name
1767      // was qualified.
1768
1769      return Context.DeclarationNames.getCXXConstructorName(
1770                                       Context.getCanonicalType(CurClassType));
1771    }
1772
1773    case UnqualifiedId::IK_DestructorName: {
1774      QualType Ty = GetTypeFromParser(Name.DestructorName);
1775      if (Ty.isNull())
1776        return DeclarationName();
1777
1778      return Context.DeclarationNames.getCXXDestructorName(
1779                                                           Context.getCanonicalType(Ty));
1780    }
1781
1782    case UnqualifiedId::IK_TemplateId: {
1783      TemplateName TName
1784        = TemplateName::getFromVoidPointer(Name.TemplateId->Template);
1785      return Context.getNameForTemplate(TName);
1786    }
1787  }
1788
1789  assert(false && "Unknown name kind");
1790  return DeclarationName();
1791}
1792
1793/// isNearlyMatchingFunction - Determine whether the C++ functions
1794/// Declaration and Definition are "nearly" matching. This heuristic
1795/// is used to improve diagnostics in the case where an out-of-line
1796/// function definition doesn't match any declaration within
1797/// the class or namespace.
1798static bool isNearlyMatchingFunction(ASTContext &Context,
1799                                     FunctionDecl *Declaration,
1800                                     FunctionDecl *Definition) {
1801  if (Declaration->param_size() != Definition->param_size())
1802    return false;
1803  for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1804    QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1805    QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1806
1807    if (!Context.hasSameUnqualifiedType(DeclParamTy.getNonReferenceType(),
1808                                        DefParamTy.getNonReferenceType()))
1809      return false;
1810  }
1811
1812  return true;
1813}
1814
1815Sema::DeclPtrTy
1816Sema::HandleDeclarator(Scope *S, Declarator &D,
1817                       MultiTemplateParamsArg TemplateParamLists,
1818                       bool IsFunctionDefinition) {
1819  DeclarationName Name = GetNameForDeclarator(D);
1820
1821  // All of these full declarators require an identifier.  If it doesn't have
1822  // one, the ParsedFreeStandingDeclSpec action should be used.
1823  if (!Name) {
1824    if (!D.isInvalidType())  // Reject this if we think it is valid.
1825      Diag(D.getDeclSpec().getSourceRange().getBegin(),
1826           diag::err_declarator_need_ident)
1827        << D.getDeclSpec().getSourceRange() << D.getSourceRange();
1828    return DeclPtrTy();
1829  }
1830
1831  // The scope passed in may not be a decl scope.  Zip up the scope tree until
1832  // we find one that is.
1833  while ((S->getFlags() & Scope::DeclScope) == 0 ||
1834         (S->getFlags() & Scope::TemplateParamScope) != 0)
1835    S = S->getParent();
1836
1837  // If this is an out-of-line definition of a member of a class template
1838  // or class template partial specialization, we may need to rebuild the
1839  // type specifier in the declarator. See RebuildTypeInCurrentInstantiation()
1840  // for more information.
1841  // FIXME: cope with decltype(expr) and typeof(expr) once the rebuilder can
1842  // handle expressions properly.
1843  DeclSpec &DS = const_cast<DeclSpec&>(D.getDeclSpec());
1844  if (D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid() &&
1845      isDependentScopeSpecifier(D.getCXXScopeSpec()) &&
1846      (DS.getTypeSpecType() == DeclSpec::TST_typename ||
1847       DS.getTypeSpecType() == DeclSpec::TST_typeofType ||
1848       DS.getTypeSpecType() == DeclSpec::TST_typeofExpr ||
1849       DS.getTypeSpecType() == DeclSpec::TST_decltype)) {
1850    if (DeclContext *DC = computeDeclContext(D.getCXXScopeSpec(), true)) {
1851      // FIXME: Preserve type source info.
1852      QualType T = GetTypeFromParser(DS.getTypeRep());
1853
1854      DeclContext *SavedContext = CurContext;
1855      CurContext = DC;
1856      T = RebuildTypeInCurrentInstantiation(T, D.getIdentifierLoc(), Name);
1857      CurContext = SavedContext;
1858
1859      if (T.isNull())
1860        return DeclPtrTy();
1861      DS.UpdateTypeRep(T.getAsOpaquePtr());
1862    }
1863  }
1864
1865  DeclContext *DC;
1866  NamedDecl *New;
1867
1868  TypeSourceInfo *TInfo = 0;
1869  QualType R = GetTypeForDeclarator(D, S, &TInfo);
1870
1871  LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
1872                        ForRedeclaration);
1873
1874  // See if this is a redefinition of a variable in the same scope.
1875  if (D.getCXXScopeSpec().isInvalid()) {
1876    DC = CurContext;
1877    D.setInvalidType();
1878  } else if (!D.getCXXScopeSpec().isSet()) {
1879    bool IsLinkageLookup = false;
1880
1881    // If the declaration we're planning to build will be a function
1882    // or object with linkage, then look for another declaration with
1883    // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
1884    if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1885      /* Do nothing*/;
1886    else if (R->isFunctionType()) {
1887      if (CurContext->isFunctionOrMethod() ||
1888          D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
1889        IsLinkageLookup = true;
1890    } else if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern)
1891      IsLinkageLookup = true;
1892    else if (CurContext->getLookupContext()->isTranslationUnit() &&
1893             D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
1894      IsLinkageLookup = true;
1895
1896    if (IsLinkageLookup)
1897      Previous.clear(LookupRedeclarationWithLinkage);
1898
1899    DC = CurContext;
1900    LookupName(Previous, S, /* CreateBuiltins = */ IsLinkageLookup);
1901  } else { // Something like "int foo::x;"
1902    DC = computeDeclContext(D.getCXXScopeSpec(), true);
1903
1904    if (!DC) {
1905      // If we could not compute the declaration context, it's because the
1906      // declaration context is dependent but does not refer to a class,
1907      // class template, or class template partial specialization. Complain
1908      // and return early, to avoid the coming semantic disaster.
1909      Diag(D.getIdentifierLoc(),
1910           diag::err_template_qualified_declarator_no_match)
1911        << (NestedNameSpecifier*)D.getCXXScopeSpec().getScopeRep()
1912        << D.getCXXScopeSpec().getRange();
1913      return DeclPtrTy();
1914    }
1915
1916    if (!DC->isDependentContext() &&
1917        RequireCompleteDeclContext(D.getCXXScopeSpec()))
1918      return DeclPtrTy();
1919
1920    if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) {
1921      Diag(D.getIdentifierLoc(),
1922           diag::err_member_def_undefined_record)
1923        << Name << DC << D.getCXXScopeSpec().getRange();
1924      D.setInvalidType();
1925    }
1926
1927    LookupQualifiedName(Previous, DC);
1928
1929    // Don't consider using declarations as previous declarations for
1930    // out-of-line members.
1931    RemoveUsingDecls(Previous);
1932
1933    // C++ 7.3.1.2p2:
1934    // Members (including explicit specializations of templates) of a named
1935    // namespace can also be defined outside that namespace by explicit
1936    // qualification of the name being defined, provided that the entity being
1937    // defined was already declared in the namespace and the definition appears
1938    // after the point of declaration in a namespace that encloses the
1939    // declarations namespace.
1940    //
1941    // Note that we only check the context at this point. We don't yet
1942    // have enough information to make sure that PrevDecl is actually
1943    // the declaration we want to match. For example, given:
1944    //
1945    //   class X {
1946    //     void f();
1947    //     void f(float);
1948    //   };
1949    //
1950    //   void X::f(int) { } // ill-formed
1951    //
1952    // In this case, PrevDecl will point to the overload set
1953    // containing the two f's declared in X, but neither of them
1954    // matches.
1955
1956    // First check whether we named the global scope.
1957    if (isa<TranslationUnitDecl>(DC)) {
1958      Diag(D.getIdentifierLoc(), diag::err_invalid_declarator_global_scope)
1959        << Name << D.getCXXScopeSpec().getRange();
1960    } else {
1961      DeclContext *Cur = CurContext;
1962      while (isa<LinkageSpecDecl>(Cur))
1963        Cur = Cur->getParent();
1964      if (!Cur->Encloses(DC)) {
1965        // The qualifying scope doesn't enclose the original declaration.
1966        // Emit diagnostic based on current scope.
1967        SourceLocation L = D.getIdentifierLoc();
1968        SourceRange R = D.getCXXScopeSpec().getRange();
1969        if (isa<FunctionDecl>(Cur))
1970          Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
1971        else
1972          Diag(L, diag::err_invalid_declarator_scope)
1973            << Name << cast<NamedDecl>(DC) << R;
1974        D.setInvalidType();
1975      }
1976    }
1977  }
1978
1979  if (Previous.isSingleResult() &&
1980      Previous.getFoundDecl()->isTemplateParameter()) {
1981    // Maybe we will complain about the shadowed template parameter.
1982    if (!D.isInvalidType())
1983      if (DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
1984                                          Previous.getFoundDecl()))
1985        D.setInvalidType();
1986
1987    // Just pretend that we didn't see the previous declaration.
1988    Previous.clear();
1989  }
1990
1991  // In C++, the previous declaration we find might be a tag type
1992  // (class or enum). In this case, the new declaration will hide the
1993  // tag type. Note that this does does not apply if we're declaring a
1994  // typedef (C++ [dcl.typedef]p4).
1995  if (Previous.isSingleTagDecl() &&
1996      D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
1997    Previous.clear();
1998
1999  bool Redeclaration = false;
2000  if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
2001    if (TemplateParamLists.size()) {
2002      Diag(D.getIdentifierLoc(), diag::err_template_typedef);
2003      return DeclPtrTy();
2004    }
2005
2006    New = ActOnTypedefDeclarator(S, D, DC, R, TInfo, Previous, Redeclaration);
2007  } else if (R->isFunctionType()) {
2008    New = ActOnFunctionDeclarator(S, D, DC, R, TInfo, Previous,
2009                                  move(TemplateParamLists),
2010                                  IsFunctionDefinition, Redeclaration);
2011  } else {
2012    New = ActOnVariableDeclarator(S, D, DC, R, TInfo, Previous,
2013                                  move(TemplateParamLists),
2014                                  Redeclaration);
2015  }
2016
2017  if (New == 0)
2018    return DeclPtrTy();
2019
2020  // If this has an identifier and is not an invalid redeclaration or
2021  // function template specialization, add it to the scope stack.
2022  if (Name && !(Redeclaration && New->isInvalidDecl()))
2023    PushOnScopeChains(New, S);
2024
2025  return DeclPtrTy::make(New);
2026}
2027
2028/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
2029/// types into constant array types in certain situations which would otherwise
2030/// be errors (for GCC compatibility).
2031static QualType TryToFixInvalidVariablyModifiedType(QualType T,
2032                                                    ASTContext &Context,
2033                                                    bool &SizeIsNegative) {
2034  // This method tries to turn a variable array into a constant
2035  // array even when the size isn't an ICE.  This is necessary
2036  // for compatibility with code that depends on gcc's buggy
2037  // constant expression folding, like struct {char x[(int)(char*)2];}
2038  SizeIsNegative = false;
2039
2040  QualifierCollector Qs;
2041  const Type *Ty = Qs.strip(T);
2042
2043  if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
2044    QualType Pointee = PTy->getPointeeType();
2045    QualType FixedType =
2046        TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative);
2047    if (FixedType.isNull()) return FixedType;
2048    FixedType = Context.getPointerType(FixedType);
2049    return Qs.apply(FixedType);
2050  }
2051
2052  const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
2053  if (!VLATy)
2054    return QualType();
2055  // FIXME: We should probably handle this case
2056  if (VLATy->getElementType()->isVariablyModifiedType())
2057    return QualType();
2058
2059  Expr::EvalResult EvalResult;
2060  if (!VLATy->getSizeExpr() ||
2061      !VLATy->getSizeExpr()->Evaluate(EvalResult, Context) ||
2062      !EvalResult.Val.isInt())
2063    return QualType();
2064
2065  llvm::APSInt &Res = EvalResult.Val.getInt();
2066  if (Res >= llvm::APSInt(Res.getBitWidth(), Res.isUnsigned())) {
2067    // TODO: preserve the size expression in declarator info
2068    return Context.getConstantArrayType(VLATy->getElementType(),
2069                                        Res, ArrayType::Normal, 0);
2070  }
2071
2072  SizeIsNegative = true;
2073  return QualType();
2074}
2075
2076/// \brief Register the given locally-scoped external C declaration so
2077/// that it can be found later for redeclarations
2078void
2079Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND,
2080                                       const LookupResult &Previous,
2081                                       Scope *S) {
2082  assert(ND->getLexicalDeclContext()->isFunctionOrMethod() &&
2083         "Decl is not a locally-scoped decl!");
2084  // Note that we have a locally-scoped external with this name.
2085  LocallyScopedExternalDecls[ND->getDeclName()] = ND;
2086
2087  if (!Previous.isSingleResult())
2088    return;
2089
2090  NamedDecl *PrevDecl = Previous.getFoundDecl();
2091
2092  // If there was a previous declaration of this variable, it may be
2093  // in our identifier chain. Update the identifier chain with the new
2094  // declaration.
2095  if (S && IdResolver.ReplaceDecl(PrevDecl, ND)) {
2096    // The previous declaration was found on the identifer resolver
2097    // chain, so remove it from its scope.
2098    while (S && !S->isDeclScope(DeclPtrTy::make(PrevDecl)))
2099      S = S->getParent();
2100
2101    if (S)
2102      S->RemoveDecl(DeclPtrTy::make(PrevDecl));
2103  }
2104}
2105
2106/// \brief Diagnose function specifiers on a declaration of an identifier that
2107/// does not identify a function.
2108void Sema::DiagnoseFunctionSpecifiers(Declarator& D) {
2109  // FIXME: We should probably indicate the identifier in question to avoid
2110  // confusion for constructs like "inline int a(), b;"
2111  if (D.getDeclSpec().isInlineSpecified())
2112    Diag(D.getDeclSpec().getInlineSpecLoc(),
2113         diag::err_inline_non_function);
2114
2115  if (D.getDeclSpec().isVirtualSpecified())
2116    Diag(D.getDeclSpec().getVirtualSpecLoc(),
2117         diag::err_virtual_non_function);
2118
2119  if (D.getDeclSpec().isExplicitSpecified())
2120    Diag(D.getDeclSpec().getExplicitSpecLoc(),
2121         diag::err_explicit_non_function);
2122}
2123
2124NamedDecl*
2125Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
2126                             QualType R,  TypeSourceInfo *TInfo,
2127                             LookupResult &Previous, bool &Redeclaration) {
2128  // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
2129  if (D.getCXXScopeSpec().isSet()) {
2130    Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
2131      << D.getCXXScopeSpec().getRange();
2132    D.setInvalidType();
2133    // Pretend we didn't see the scope specifier.
2134    DC = CurContext;
2135    Previous.clear();
2136  }
2137
2138  if (getLangOptions().CPlusPlus) {
2139    // Check that there are no default arguments (C++ only).
2140    CheckExtraCXXDefaultArguments(D);
2141  }
2142
2143  DiagnoseFunctionSpecifiers(D);
2144
2145  if (D.getDeclSpec().isThreadSpecified())
2146    Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
2147
2148  TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, TInfo);
2149  if (!NewTD) return 0;
2150
2151  // Handle attributes prior to checking for duplicates in MergeVarDecl
2152  ProcessDeclAttributes(S, NewTD, D);
2153
2154  // Merge the decl with the existing one if appropriate. If the decl is
2155  // in an outer scope, it isn't the same thing.
2156  FilterLookupForScope(*this, Previous, DC, S, /*ConsiderLinkage*/ false);
2157  if (!Previous.empty()) {
2158    Redeclaration = true;
2159    MergeTypeDefDecl(NewTD, Previous);
2160  }
2161
2162  // C99 6.7.7p2: If a typedef name specifies a variably modified type
2163  // then it shall have block scope.
2164  QualType T = NewTD->getUnderlyingType();
2165  if (T->isVariablyModifiedType()) {
2166    FunctionNeedsScopeChecking() = true;
2167
2168    if (S->getFnParent() == 0) {
2169      bool SizeIsNegative;
2170      QualType FixedTy =
2171          TryToFixInvalidVariablyModifiedType(T, Context, SizeIsNegative);
2172      if (!FixedTy.isNull()) {
2173        Diag(D.getIdentifierLoc(), diag::warn_illegal_constant_array_size);
2174        NewTD->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(FixedTy));
2175      } else {
2176        if (SizeIsNegative)
2177          Diag(D.getIdentifierLoc(), diag::err_typecheck_negative_array_size);
2178        else if (T->isVariableArrayType())
2179          Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
2180        else
2181          Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
2182        NewTD->setInvalidDecl();
2183      }
2184    }
2185  }
2186
2187  // If this is the C FILE type, notify the AST context.
2188  if (IdentifierInfo *II = NewTD->getIdentifier())
2189    if (!NewTD->isInvalidDecl() &&
2190        NewTD->getDeclContext()->getLookupContext()->isTranslationUnit()) {
2191      if (II->isStr("FILE"))
2192        Context.setFILEDecl(NewTD);
2193      else if (II->isStr("jmp_buf"))
2194        Context.setjmp_bufDecl(NewTD);
2195      else if (II->isStr("sigjmp_buf"))
2196        Context.setsigjmp_bufDecl(NewTD);
2197    }
2198
2199  return NewTD;
2200}
2201
2202/// \brief Determines whether the given declaration is an out-of-scope
2203/// previous declaration.
2204///
2205/// This routine should be invoked when name lookup has found a
2206/// previous declaration (PrevDecl) that is not in the scope where a
2207/// new declaration by the same name is being introduced. If the new
2208/// declaration occurs in a local scope, previous declarations with
2209/// linkage may still be considered previous declarations (C99
2210/// 6.2.2p4-5, C++ [basic.link]p6).
2211///
2212/// \param PrevDecl the previous declaration found by name
2213/// lookup
2214///
2215/// \param DC the context in which the new declaration is being
2216/// declared.
2217///
2218/// \returns true if PrevDecl is an out-of-scope previous declaration
2219/// for a new delcaration with the same name.
2220static bool
2221isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
2222                                ASTContext &Context) {
2223  if (!PrevDecl)
2224    return 0;
2225
2226  if (!PrevDecl->hasLinkage())
2227    return false;
2228
2229  if (Context.getLangOptions().CPlusPlus) {
2230    // C++ [basic.link]p6:
2231    //   If there is a visible declaration of an entity with linkage
2232    //   having the same name and type, ignoring entities declared
2233    //   outside the innermost enclosing namespace scope, the block
2234    //   scope declaration declares that same entity and receives the
2235    //   linkage of the previous declaration.
2236    DeclContext *OuterContext = DC->getLookupContext();
2237    if (!OuterContext->isFunctionOrMethod())
2238      // This rule only applies to block-scope declarations.
2239      return false;
2240    else {
2241      DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
2242      if (PrevOuterContext->isRecord())
2243        // We found a member function: ignore it.
2244        return false;
2245      else {
2246        // Find the innermost enclosing namespace for the new and
2247        // previous declarations.
2248        while (!OuterContext->isFileContext())
2249          OuterContext = OuterContext->getParent();
2250        while (!PrevOuterContext->isFileContext())
2251          PrevOuterContext = PrevOuterContext->getParent();
2252
2253        // The previous declaration is in a different namespace, so it
2254        // isn't the same function.
2255        if (OuterContext->getPrimaryContext() !=
2256            PrevOuterContext->getPrimaryContext())
2257          return false;
2258      }
2259    }
2260  }
2261
2262  return true;
2263}
2264
2265static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) {
2266  CXXScopeSpec &SS = D.getCXXScopeSpec();
2267  if (!SS.isSet()) return;
2268  DD->setQualifierInfo(static_cast<NestedNameSpecifier*>(SS.getScopeRep()),
2269                       SS.getRange());
2270}
2271
2272NamedDecl*
2273Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
2274                              QualType R, TypeSourceInfo *TInfo,
2275                              LookupResult &Previous,
2276                              MultiTemplateParamsArg TemplateParamLists,
2277                              bool &Redeclaration) {
2278  DeclarationName Name = GetNameForDeclarator(D);
2279
2280  // Check that there are no default arguments (C++ only).
2281  if (getLangOptions().CPlusPlus)
2282    CheckExtraCXXDefaultArguments(D);
2283
2284  VarDecl *NewVD;
2285  VarDecl::StorageClass SC;
2286  switch (D.getDeclSpec().getStorageClassSpec()) {
2287  default: assert(0 && "Unknown storage class!");
2288  case DeclSpec::SCS_unspecified:    SC = VarDecl::None; break;
2289  case DeclSpec::SCS_extern:         SC = VarDecl::Extern; break;
2290  case DeclSpec::SCS_static:         SC = VarDecl::Static; break;
2291  case DeclSpec::SCS_auto:           SC = VarDecl::Auto; break;
2292  case DeclSpec::SCS_register:       SC = VarDecl::Register; break;
2293  case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
2294  case DeclSpec::SCS_mutable:
2295    // mutable can only appear on non-static class members, so it's always
2296    // an error here
2297    Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
2298    D.setInvalidType();
2299    SC = VarDecl::None;
2300    break;
2301  }
2302
2303  IdentifierInfo *II = Name.getAsIdentifierInfo();
2304  if (!II) {
2305    Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
2306      << Name.getAsString();
2307    return 0;
2308  }
2309
2310  DiagnoseFunctionSpecifiers(D);
2311
2312  if (!DC->isRecord() && S->getFnParent() == 0) {
2313    // C99 6.9p2: The storage-class specifiers auto and register shall not
2314    // appear in the declaration specifiers in an external declaration.
2315    if (SC == VarDecl::Auto || SC == VarDecl::Register) {
2316
2317      // If this is a register variable with an asm label specified, then this
2318      // is a GNU extension.
2319      if (SC == VarDecl::Register && D.getAsmLabel())
2320        Diag(D.getIdentifierLoc(), diag::err_unsupported_global_register);
2321      else
2322        Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
2323      D.setInvalidType();
2324    }
2325  }
2326  if (DC->isRecord() && !CurContext->isRecord()) {
2327    // This is an out-of-line definition of a static data member.
2328    if (SC == VarDecl::Static) {
2329      Diag(D.getDeclSpec().getStorageClassSpecLoc(),
2330           diag::err_static_out_of_line)
2331        << CodeModificationHint::CreateRemoval(
2332                                      D.getDeclSpec().getStorageClassSpecLoc());
2333    } else if (SC == VarDecl::None)
2334      SC = VarDecl::Static;
2335  }
2336  if (SC == VarDecl::Static) {
2337    if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
2338      if (RD->isLocalClass())
2339        Diag(D.getIdentifierLoc(),
2340             diag::err_static_data_member_not_allowed_in_local_class)
2341          << Name << RD->getDeclName();
2342    }
2343  }
2344
2345  // Match up the template parameter lists with the scope specifier, then
2346  // determine whether we have a template or a template specialization.
2347  bool isExplicitSpecialization = false;
2348  if (TemplateParameterList *TemplateParams
2349        = MatchTemplateParametersToScopeSpecifier(
2350                                  D.getDeclSpec().getSourceRange().getBegin(),
2351                                                  D.getCXXScopeSpec(),
2352                        (TemplateParameterList**)TemplateParamLists.get(),
2353                                                   TemplateParamLists.size(),
2354                                                  isExplicitSpecialization)) {
2355    if (TemplateParams->size() > 0) {
2356      // There is no such thing as a variable template.
2357      Diag(D.getIdentifierLoc(), diag::err_template_variable)
2358        << II
2359        << SourceRange(TemplateParams->getTemplateLoc(),
2360                       TemplateParams->getRAngleLoc());
2361      return 0;
2362    } else {
2363      // There is an extraneous 'template<>' for this variable. Complain
2364      // about it, but allow the declaration of the variable.
2365      Diag(TemplateParams->getTemplateLoc(),
2366           diag::err_template_variable_noparams)
2367        << II
2368        << SourceRange(TemplateParams->getTemplateLoc(),
2369                       TemplateParams->getRAngleLoc());
2370
2371      isExplicitSpecialization = true;
2372    }
2373  }
2374
2375  NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
2376                          II, R, TInfo, SC);
2377
2378  if (D.isInvalidType())
2379    NewVD->setInvalidDecl();
2380
2381  SetNestedNameSpecifier(NewVD, D);
2382
2383  if (D.getDeclSpec().isThreadSpecified()) {
2384    if (NewVD->hasLocalStorage())
2385      Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_thread_non_global);
2386    else if (!Context.Target.isTLSSupported())
2387      Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_thread_unsupported);
2388    else
2389      NewVD->setThreadSpecified(true);
2390  }
2391
2392  // Set the lexical context. If the declarator has a C++ scope specifier, the
2393  // lexical context will be different from the semantic context.
2394  NewVD->setLexicalDeclContext(CurContext);
2395
2396  // Handle attributes prior to checking for duplicates in MergeVarDecl
2397  ProcessDeclAttributes(S, NewVD, D);
2398
2399  // Handle GNU asm-label extension (encoded as an attribute).
2400  if (Expr *E = (Expr*) D.getAsmLabel()) {
2401    // The parser guarantees this is a string.
2402    StringLiteral *SE = cast<StringLiteral>(E);
2403    NewVD->addAttr(::new (Context) AsmLabelAttr(Context, SE->getString()));
2404  }
2405
2406  // Diagnose shadowed variables before filtering for scope.
2407  if (!D.getCXXScopeSpec().isSet())
2408    CheckShadow(S, NewVD, Previous);
2409
2410  // Don't consider existing declarations that are in a different
2411  // scope and are out-of-semantic-context declarations (if the new
2412  // declaration has linkage).
2413  FilterLookupForScope(*this, Previous, DC, S, NewVD->hasLinkage());
2414
2415  // Merge the decl with the existing one if appropriate.
2416  if (!Previous.empty()) {
2417    if (Previous.isSingleResult() &&
2418        isa<FieldDecl>(Previous.getFoundDecl()) &&
2419        D.getCXXScopeSpec().isSet()) {
2420      // The user tried to define a non-static data member
2421      // out-of-line (C++ [dcl.meaning]p1).
2422      Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
2423        << D.getCXXScopeSpec().getRange();
2424      Previous.clear();
2425      NewVD->setInvalidDecl();
2426    }
2427  } else if (D.getCXXScopeSpec().isSet()) {
2428    // No previous declaration in the qualifying scope.
2429    Diag(D.getIdentifierLoc(), diag::err_no_member)
2430      << Name << computeDeclContext(D.getCXXScopeSpec(), true)
2431      << D.getCXXScopeSpec().getRange();
2432    NewVD->setInvalidDecl();
2433  }
2434
2435  CheckVariableDeclaration(NewVD, Previous, Redeclaration);
2436
2437  // This is an explicit specialization of a static data member. Check it.
2438  if (isExplicitSpecialization && !NewVD->isInvalidDecl() &&
2439      CheckMemberSpecialization(NewVD, Previous))
2440    NewVD->setInvalidDecl();
2441
2442  // attributes declared post-definition are currently ignored
2443  if (Previous.isSingleResult()) {
2444    VarDecl *Def = dyn_cast<VarDecl>(Previous.getFoundDecl());
2445    if (Def && (Def = Def->getDefinition()) &&
2446        Def != NewVD && D.hasAttributes()) {
2447      Diag(NewVD->getLocation(), diag::warn_attribute_precede_definition);
2448      Diag(Def->getLocation(), diag::note_previous_definition);
2449    }
2450  }
2451
2452  // If this is a locally-scoped extern C variable, update the map of
2453  // such variables.
2454  if (CurContext->isFunctionOrMethod() && NewVD->isExternC() &&
2455      !NewVD->isInvalidDecl())
2456    RegisterLocallyScopedExternCDecl(NewVD, Previous, S);
2457
2458  return NewVD;
2459}
2460
2461/// \brief Diagnose variable or built-in function shadowing.  Implements
2462/// -Wshadow.
2463///
2464/// This method is called whenever a VarDecl is added to a "useful"
2465/// scope.
2466///
2467/// \param S the scope in which the shadowing name is being declared
2468/// \param R the lookup of the name
2469///
2470void Sema::CheckShadow(Scope *S, VarDecl *D, const LookupResult& R) {
2471  // Return if warning is ignored.
2472  if (Diags.getDiagnosticLevel(diag::warn_decl_shadow) == Diagnostic::Ignored)
2473    return;
2474
2475  // Don't diagnose declarations at file scope.  The scope might not
2476  // have a DeclContext if (e.g.) we're parsing a function prototype.
2477  DeclContext *NewDC = static_cast<DeclContext*>(S->getEntity());
2478  if (NewDC && NewDC->isFileContext())
2479    return;
2480
2481  // Only diagnose if we're shadowing an unambiguous field or variable.
2482  if (R.getResultKind() != LookupResult::Found)
2483    return;
2484
2485  NamedDecl* ShadowedDecl = R.getFoundDecl();
2486  if (!isa<VarDecl>(ShadowedDecl) && !isa<FieldDecl>(ShadowedDecl))
2487    return;
2488
2489  DeclContext *OldDC = ShadowedDecl->getDeclContext();
2490
2491  // Only warn about certain kinds of shadowing for class members.
2492  if (NewDC && NewDC->isRecord()) {
2493    // In particular, don't warn about shadowing non-class members.
2494    if (!OldDC->isRecord())
2495      return;
2496
2497    // TODO: should we warn about static data members shadowing
2498    // static data members from base classes?
2499
2500    // TODO: don't diagnose for inaccessible shadowed members.
2501    // This is hard to do perfectly because we might friend the
2502    // shadowing context, but that's just a false negative.
2503  }
2504
2505  // Determine what kind of declaration we're shadowing.
2506  unsigned Kind;
2507  if (isa<RecordDecl>(OldDC)) {
2508    if (isa<FieldDecl>(ShadowedDecl))
2509      Kind = 3; // field
2510    else
2511      Kind = 2; // static data member
2512  } else if (OldDC->isFileContext())
2513    Kind = 1; // global
2514  else
2515    Kind = 0; // local
2516
2517  DeclarationName Name = R.getLookupName();
2518
2519  // Emit warning and note.
2520  Diag(R.getNameLoc(), diag::warn_decl_shadow) << Name << Kind << OldDC;
2521  Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
2522}
2523
2524/// \brief Check -Wshadow without the advantage of a previous lookup.
2525void Sema::CheckShadow(Scope *S, VarDecl *D) {
2526  LookupResult R(*this, D->getDeclName(), D->getLocation(),
2527                 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
2528  LookupName(R, S);
2529  CheckShadow(S, D, R);
2530}
2531
2532/// \brief Perform semantic checking on a newly-created variable
2533/// declaration.
2534///
2535/// This routine performs all of the type-checking required for a
2536/// variable declaration once it has been built. It is used both to
2537/// check variables after they have been parsed and their declarators
2538/// have been translated into a declaration, and to check variables
2539/// that have been instantiated from a template.
2540///
2541/// Sets NewVD->isInvalidDecl() if an error was encountered.
2542void Sema::CheckVariableDeclaration(VarDecl *NewVD,
2543                                    LookupResult &Previous,
2544                                    bool &Redeclaration) {
2545  // If the decl is already known invalid, don't check it.
2546  if (NewVD->isInvalidDecl())
2547    return;
2548
2549  QualType T = NewVD->getType();
2550
2551  if (T->isObjCInterfaceType()) {
2552    Diag(NewVD->getLocation(), diag::err_statically_allocated_object);
2553    return NewVD->setInvalidDecl();
2554  }
2555
2556  // Emit an error if an address space was applied to decl with local storage.
2557  // This includes arrays of objects with address space qualifiers, but not
2558  // automatic variables that point to other address spaces.
2559  // ISO/IEC TR 18037 S5.1.2
2560  if (NewVD->hasLocalStorage() && (T.getAddressSpace() != 0)) {
2561    Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl);
2562    return NewVD->setInvalidDecl();
2563  }
2564
2565  if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
2566      && !NewVD->hasAttr<BlocksAttr>())
2567    Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
2568
2569  bool isVM = T->isVariablyModifiedType();
2570  if (isVM || NewVD->hasAttr<CleanupAttr>() ||
2571      NewVD->hasAttr<BlocksAttr>() ||
2572      // FIXME: We need to diagnose jumps passed initialized variables in C++.
2573      // However, this turns on the scope checker for everything with a variable
2574      // which may impact compile time.  See if we can find a better solution
2575      // to this, perhaps only checking functions that contain gotos in C++?
2576      (LangOpts.CPlusPlus && NewVD->hasLocalStorage()))
2577    FunctionNeedsScopeChecking() = true;
2578
2579  if ((isVM && NewVD->hasLinkage()) ||
2580      (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
2581    bool SizeIsNegative;
2582    QualType FixedTy =
2583        TryToFixInvalidVariablyModifiedType(T, Context, SizeIsNegative);
2584
2585    if (FixedTy.isNull() && T->isVariableArrayType()) {
2586      const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
2587      // FIXME: This won't give the correct result for
2588      // int a[10][n];
2589      SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
2590
2591      if (NewVD->isFileVarDecl())
2592        Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
2593        << SizeRange;
2594      else if (NewVD->getStorageClass() == VarDecl::Static)
2595        Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
2596        << SizeRange;
2597      else
2598        Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
2599        << SizeRange;
2600      return NewVD->setInvalidDecl();
2601    }
2602
2603    if (FixedTy.isNull()) {
2604      if (NewVD->isFileVarDecl())
2605        Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
2606      else
2607        Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
2608      return NewVD->setInvalidDecl();
2609    }
2610
2611    Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size);
2612    NewVD->setType(FixedTy);
2613  }
2614
2615  if (Previous.empty() && NewVD->isExternC()) {
2616    // Since we did not find anything by this name and we're declaring
2617    // an extern "C" variable, look for a non-visible extern "C"
2618    // declaration with the same name.
2619    llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos
2620      = LocallyScopedExternalDecls.find(NewVD->getDeclName());
2621    if (Pos != LocallyScopedExternalDecls.end())
2622      Previous.addDecl(Pos->second);
2623  }
2624
2625  if (T->isVoidType() && !NewVD->hasExternalStorage()) {
2626    Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
2627      << T;
2628    return NewVD->setInvalidDecl();
2629  }
2630
2631  if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
2632    Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
2633    return NewVD->setInvalidDecl();
2634  }
2635
2636  if (isVM && NewVD->hasAttr<BlocksAttr>()) {
2637    Diag(NewVD->getLocation(), diag::err_block_on_vm);
2638    return NewVD->setInvalidDecl();
2639  }
2640
2641  if (!Previous.empty()) {
2642    Redeclaration = true;
2643    MergeVarDecl(NewVD, Previous);
2644  }
2645}
2646
2647/// \brief Data used with FindOverriddenMethod
2648struct FindOverriddenMethodData {
2649  Sema *S;
2650  CXXMethodDecl *Method;
2651};
2652
2653/// \brief Member lookup function that determines whether a given C++
2654/// method overrides a method in a base class, to be used with
2655/// CXXRecordDecl::lookupInBases().
2656static bool FindOverriddenMethod(const CXXBaseSpecifier *Specifier,
2657                                 CXXBasePath &Path,
2658                                 void *UserData) {
2659  RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
2660
2661  FindOverriddenMethodData *Data
2662    = reinterpret_cast<FindOverriddenMethodData*>(UserData);
2663
2664  DeclarationName Name = Data->Method->getDeclName();
2665
2666  // FIXME: Do we care about other names here too?
2667  if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
2668    // We really want to find the base class constructor here.
2669    QualType T = Data->S->Context.getTypeDeclType(BaseRecord);
2670    CanQualType CT = Data->S->Context.getCanonicalType(T);
2671
2672    Name = Data->S->Context.DeclarationNames.getCXXDestructorName(CT);
2673  }
2674
2675  for (Path.Decls = BaseRecord->lookup(Name);
2676       Path.Decls.first != Path.Decls.second;
2677       ++Path.Decls.first) {
2678    if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*Path.Decls.first)) {
2679      if (MD->isVirtual() && !Data->S->IsOverload(Data->Method, MD))
2680        return true;
2681    }
2682  }
2683
2684  return false;
2685}
2686
2687/// AddOverriddenMethods - See if a method overrides any in the base classes,
2688/// and if so, check that it's a valid override and remember it.
2689void Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
2690  // Look for virtual methods in base classes that this method might override.
2691  CXXBasePaths Paths;
2692  FindOverriddenMethodData Data;
2693  Data.Method = MD;
2694  Data.S = this;
2695  if (DC->lookupInBases(&FindOverriddenMethod, &Data, Paths)) {
2696    for (CXXBasePaths::decl_iterator I = Paths.found_decls_begin(),
2697         E = Paths.found_decls_end(); I != E; ++I) {
2698      if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(*I)) {
2699        if (!CheckOverridingFunctionReturnType(MD, OldMD) &&
2700            !CheckOverridingFunctionExceptionSpec(MD, OldMD) &&
2701            !CheckOverridingFunctionAttributes(MD, OldMD))
2702          MD->addOverriddenMethod(OldMD->getCanonicalDecl());
2703      }
2704    }
2705  }
2706}
2707
2708NamedDecl*
2709Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
2710                              QualType R, TypeSourceInfo *TInfo,
2711                              LookupResult &Previous,
2712                              MultiTemplateParamsArg TemplateParamLists,
2713                              bool IsFunctionDefinition, bool &Redeclaration) {
2714  assert(R.getTypePtr()->isFunctionType());
2715
2716  DeclarationName Name = GetNameForDeclarator(D);
2717  FunctionDecl::StorageClass SC = FunctionDecl::None;
2718  switch (D.getDeclSpec().getStorageClassSpec()) {
2719  default: assert(0 && "Unknown storage class!");
2720  case DeclSpec::SCS_auto:
2721  case DeclSpec::SCS_register:
2722  case DeclSpec::SCS_mutable:
2723    Diag(D.getDeclSpec().getStorageClassSpecLoc(),
2724         diag::err_typecheck_sclass_func);
2725    D.setInvalidType();
2726    break;
2727  case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
2728  case DeclSpec::SCS_extern:      SC = FunctionDecl::Extern; break;
2729  case DeclSpec::SCS_static: {
2730    if (CurContext->getLookupContext()->isFunctionOrMethod()) {
2731      // C99 6.7.1p5:
2732      //   The declaration of an identifier for a function that has
2733      //   block scope shall have no explicit storage-class specifier
2734      //   other than extern
2735      // See also (C++ [dcl.stc]p4).
2736      Diag(D.getDeclSpec().getStorageClassSpecLoc(),
2737           diag::err_static_block_func);
2738      SC = FunctionDecl::None;
2739    } else
2740      SC = FunctionDecl::Static;
2741    break;
2742  }
2743  case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
2744  }
2745
2746  if (D.getDeclSpec().isThreadSpecified())
2747    Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
2748
2749  bool isFriend = D.getDeclSpec().isFriendSpecified();
2750  bool isInline = D.getDeclSpec().isInlineSpecified();
2751  bool isVirtual = D.getDeclSpec().isVirtualSpecified();
2752  bool isExplicit = D.getDeclSpec().isExplicitSpecified();
2753
2754  // Check that the return type is not an abstract class type.
2755  // For record types, this is done by the AbstractClassUsageDiagnoser once
2756  // the class has been completely parsed.
2757  if (!DC->isRecord() &&
2758      RequireNonAbstractType(D.getIdentifierLoc(),
2759                             R->getAs<FunctionType>()->getResultType(),
2760                             diag::err_abstract_type_in_decl,
2761                             AbstractReturnType))
2762    D.setInvalidType();
2763
2764  // Do not allow returning a objc interface by-value.
2765  if (R->getAs<FunctionType>()->getResultType()->isObjCInterfaceType()) {
2766    Diag(D.getIdentifierLoc(),
2767         diag::err_object_cannot_be_passed_returned_by_value) << 0
2768      << R->getAs<FunctionType>()->getResultType();
2769    D.setInvalidType();
2770  }
2771
2772  bool isVirtualOkay = false;
2773  FunctionDecl *NewFD;
2774
2775  if (isFriend) {
2776    // C++ [class.friend]p5
2777    //   A function can be defined in a friend declaration of a
2778    //   class . . . . Such a function is implicitly inline.
2779    isInline |= IsFunctionDefinition;
2780  }
2781
2782  if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
2783    // This is a C++ constructor declaration.
2784    assert(DC->isRecord() &&
2785           "Constructors can only be declared in a member context");
2786
2787    R = CheckConstructorDeclarator(D, R, SC);
2788
2789    // Create the new declaration
2790    NewFD = CXXConstructorDecl::Create(Context,
2791                                       cast<CXXRecordDecl>(DC),
2792                                       D.getIdentifierLoc(), Name, R, TInfo,
2793                                       isExplicit, isInline,
2794                                       /*isImplicitlyDeclared=*/false);
2795  } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
2796    // This is a C++ destructor declaration.
2797    if (DC->isRecord()) {
2798      R = CheckDestructorDeclarator(D, SC);
2799
2800      NewFD = CXXDestructorDecl::Create(Context,
2801                                        cast<CXXRecordDecl>(DC),
2802                                        D.getIdentifierLoc(), Name, R,
2803                                        isInline,
2804                                        /*isImplicitlyDeclared=*/false);
2805      NewFD->setTypeSourceInfo(TInfo);
2806
2807      isVirtualOkay = true;
2808    } else {
2809      Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
2810
2811      // Create a FunctionDecl to satisfy the function definition parsing
2812      // code path.
2813      NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
2814                                   Name, R, TInfo, SC, isInline,
2815                                   /*hasPrototype=*/true);
2816      D.setInvalidType();
2817    }
2818  } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
2819    if (!DC->isRecord()) {
2820      Diag(D.getIdentifierLoc(),
2821           diag::err_conv_function_not_member);
2822      return 0;
2823    }
2824
2825    CheckConversionDeclarator(D, R, SC);
2826    NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
2827                                      D.getIdentifierLoc(), Name, R, TInfo,
2828                                      isInline, isExplicit);
2829
2830    isVirtualOkay = true;
2831  } else if (DC->isRecord()) {
2832    // If the of the function is the same as the name of the record, then this
2833    // must be an invalid constructor that has a return type.
2834    // (The parser checks for a return type and makes the declarator a
2835    // constructor if it has no return type).
2836    // must have an invalid constructor that has a return type
2837    if (Name.getAsIdentifierInfo() &&
2838        Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
2839      Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
2840        << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2841        << SourceRange(D.getIdentifierLoc());
2842      return 0;
2843    }
2844
2845    bool isStatic = SC == FunctionDecl::Static;
2846
2847    // [class.free]p1:
2848    // Any allocation function for a class T is a static member
2849    // (even if not explicitly declared static).
2850    if (Name.getCXXOverloadedOperator() == OO_New ||
2851        Name.getCXXOverloadedOperator() == OO_Array_New)
2852      isStatic = true;
2853
2854    // [class.free]p6 Any deallocation function for a class X is a static member
2855    // (even if not explicitly declared static).
2856    if (Name.getCXXOverloadedOperator() == OO_Delete ||
2857        Name.getCXXOverloadedOperator() == OO_Array_Delete)
2858      isStatic = true;
2859
2860    // This is a C++ method declaration.
2861    NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
2862                                  D.getIdentifierLoc(), Name, R, TInfo,
2863                                  isStatic, isInline);
2864
2865    isVirtualOkay = !isStatic;
2866  } else {
2867    // Determine whether the function was written with a
2868    // prototype. This true when:
2869    //   - we're in C++ (where every function has a prototype),
2870    //   - there is a prototype in the declarator, or
2871    //   - the type R of the function is some kind of typedef or other reference
2872    //     to a type name (which eventually refers to a function type).
2873    bool HasPrototype =
2874       getLangOptions().CPlusPlus ||
2875       (D.getNumTypeObjects() && D.getTypeObject(0).Fun.hasPrototype) ||
2876       (!isa<FunctionType>(R.getTypePtr()) && R->isFunctionProtoType());
2877
2878    NewFD = FunctionDecl::Create(Context, DC,
2879                                 D.getIdentifierLoc(),
2880                                 Name, R, TInfo, SC, isInline, HasPrototype);
2881  }
2882
2883  if (D.isInvalidType())
2884    NewFD->setInvalidDecl();
2885
2886  SetNestedNameSpecifier(NewFD, D);
2887
2888  // Set the lexical context. If the declarator has a C++
2889  // scope specifier, or is the object of a friend declaration, the
2890  // lexical context will be different from the semantic context.
2891  NewFD->setLexicalDeclContext(CurContext);
2892
2893  // Match up the template parameter lists with the scope specifier, then
2894  // determine whether we have a template or a template specialization.
2895  FunctionTemplateDecl *FunctionTemplate = 0;
2896  bool isExplicitSpecialization = false;
2897  bool isFunctionTemplateSpecialization = false;
2898  if (TemplateParameterList *TemplateParams
2899        = MatchTemplateParametersToScopeSpecifier(
2900                                  D.getDeclSpec().getSourceRange().getBegin(),
2901                                  D.getCXXScopeSpec(),
2902                           (TemplateParameterList**)TemplateParamLists.get(),
2903                                                  TemplateParamLists.size(),
2904                                                  isExplicitSpecialization)) {
2905    if (TemplateParams->size() > 0) {
2906      // This is a function template
2907
2908      // Check that we can declare a template here.
2909      if (CheckTemplateDeclScope(S, TemplateParams))
2910        return 0;
2911
2912      FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
2913                                                      NewFD->getLocation(),
2914                                                      Name, TemplateParams,
2915                                                      NewFD);
2916      FunctionTemplate->setLexicalDeclContext(CurContext);
2917      NewFD->setDescribedFunctionTemplate(FunctionTemplate);
2918    } else {
2919      // This is a function template specialization.
2920      isFunctionTemplateSpecialization = true;
2921
2922      // C++0x [temp.expl.spec]p20 forbids "template<> void foo(int);".
2923      if (isFriend && isFunctionTemplateSpecialization) {
2924        SourceRange Range = TemplateParams->getSourceRange();
2925        Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend)
2926          << Name << Range << CodeModificationHint::CreateRemoval(Range);
2927      }
2928    }
2929
2930    // FIXME: Free this memory properly.
2931    TemplateParamLists.release();
2932  }
2933
2934  // C++ [dcl.fct.spec]p5:
2935  //   The virtual specifier shall only be used in declarations of
2936  //   nonstatic class member functions that appear within a
2937  //   member-specification of a class declaration; see 10.3.
2938  //
2939  if (isVirtual && !NewFD->isInvalidDecl()) {
2940    if (!isVirtualOkay) {
2941       Diag(D.getDeclSpec().getVirtualSpecLoc(),
2942           diag::err_virtual_non_function);
2943    } else if (!CurContext->isRecord()) {
2944      // 'virtual' was specified outside of the class.
2945      Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_out_of_class)
2946        << CodeModificationHint::CreateRemoval(
2947                                           D.getDeclSpec().getVirtualSpecLoc());
2948    } else {
2949      // Okay: Add virtual to the method.
2950      CXXRecordDecl *CurClass = cast<CXXRecordDecl>(DC);
2951      CurClass->setMethodAsVirtual(NewFD);
2952    }
2953  }
2954
2955  // C++ [dcl.fct.spec]p6:
2956  //  The explicit specifier shall be used only in the declaration of a
2957  //  constructor or conversion function within its class definition; see 12.3.1
2958  //  and 12.3.2.
2959  if (isExplicit && !NewFD->isInvalidDecl()) {
2960    if (!CurContext->isRecord()) {
2961      // 'explicit' was specified outside of the class.
2962      Diag(D.getDeclSpec().getExplicitSpecLoc(),
2963           diag::err_explicit_out_of_class)
2964        << CodeModificationHint::CreateRemoval(
2965                                          D.getDeclSpec().getExplicitSpecLoc());
2966    } else if (!isa<CXXConstructorDecl>(NewFD) &&
2967               !isa<CXXConversionDecl>(NewFD)) {
2968      // 'explicit' was specified on a function that wasn't a constructor
2969      // or conversion function.
2970      Diag(D.getDeclSpec().getExplicitSpecLoc(),
2971           diag::err_explicit_non_ctor_or_conv_function)
2972        << CodeModificationHint::CreateRemoval(
2973                                          D.getDeclSpec().getExplicitSpecLoc());
2974    }
2975  }
2976
2977  // Filter out previous declarations that don't match the scope.
2978  FilterLookupForScope(*this, Previous, DC, S, NewFD->hasLinkage());
2979
2980  if (isFriend) {
2981    // DC is the namespace in which the function is being declared.
2982    assert((DC->isFileContext() || !Previous.empty()) &&
2983           "previously-undeclared friend function being created "
2984           "in a non-namespace context");
2985
2986    if (FunctionTemplate) {
2987      FunctionTemplate->setObjectOfFriendDecl(
2988                                   /* PreviouslyDeclared= */ !Previous.empty());
2989      FunctionTemplate->setAccess(AS_public);
2990    }
2991    else
2992      NewFD->setObjectOfFriendDecl(/* PreviouslyDeclared= */ !Previous.empty());
2993
2994    NewFD->setAccess(AS_public);
2995  }
2996
2997  if (SC == FunctionDecl::Static && isa<CXXMethodDecl>(NewFD) &&
2998      !CurContext->isRecord()) {
2999    // C++ [class.static]p1:
3000    //   A data or function member of a class may be declared static
3001    //   in a class definition, in which case it is a static member of
3002    //   the class.
3003
3004    // Complain about the 'static' specifier if it's on an out-of-line
3005    // member function definition.
3006    Diag(D.getDeclSpec().getStorageClassSpecLoc(),
3007         diag::err_static_out_of_line)
3008      << CodeModificationHint::CreateRemoval(
3009                                      D.getDeclSpec().getStorageClassSpecLoc());
3010  }
3011
3012  // Handle GNU asm-label extension (encoded as an attribute).
3013  if (Expr *E = (Expr*) D.getAsmLabel()) {
3014    // The parser guarantees this is a string.
3015    StringLiteral *SE = cast<StringLiteral>(E);
3016    NewFD->addAttr(::new (Context) AsmLabelAttr(Context, SE->getString()));
3017  }
3018
3019  // Copy the parameter declarations from the declarator D to the function
3020  // declaration NewFD, if they are available.  First scavenge them into Params.
3021  llvm::SmallVector<ParmVarDecl*, 16> Params;
3022  if (D.getNumTypeObjects() > 0) {
3023    DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
3024
3025    // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
3026    // function that takes no arguments, not a function that takes a
3027    // single void argument.
3028    // We let through "const void" here because Sema::GetTypeForDeclarator
3029    // already checks for that case.
3030    if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3031        FTI.ArgInfo[0].Param &&
3032        FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType()) {
3033      // Empty arg list, don't push any params.
3034      ParmVarDecl *Param = FTI.ArgInfo[0].Param.getAs<ParmVarDecl>();
3035
3036      // In C++, the empty parameter-type-list must be spelled "void"; a
3037      // typedef of void is not permitted.
3038      if (getLangOptions().CPlusPlus &&
3039          Param->getType().getUnqualifiedType() != Context.VoidTy)
3040        Diag(Param->getLocation(), diag::err_param_typedef_of_void);
3041      // FIXME: Leaks decl?
3042    } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
3043      for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
3044        ParmVarDecl *Param = FTI.ArgInfo[i].Param.getAs<ParmVarDecl>();
3045        assert(Param->getDeclContext() != NewFD && "Was set before ?");
3046        Param->setDeclContext(NewFD);
3047        Params.push_back(Param);
3048      }
3049    }
3050
3051  } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
3052    // When we're declaring a function with a typedef, typeof, etc as in the
3053    // following example, we'll need to synthesize (unnamed)
3054    // parameters for use in the declaration.
3055    //
3056    // @code
3057    // typedef void fn(int);
3058    // fn f;
3059    // @endcode
3060
3061    // Synthesize a parameter for each argument type.
3062    for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3063         AE = FT->arg_type_end(); AI != AE; ++AI) {
3064      ParmVarDecl *Param = ParmVarDecl::Create(Context, NewFD,
3065                                               SourceLocation(), 0,
3066                                               *AI, /*TInfo=*/0,
3067                                               VarDecl::None, 0);
3068      Param->setImplicit();
3069      Params.push_back(Param);
3070    }
3071  } else {
3072    assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
3073           "Should not need args for typedef of non-prototype fn");
3074  }
3075  // Finally, we know we have the right number of parameters, install them.
3076  NewFD->setParams(Params.data(), Params.size());
3077
3078  // If the declarator is a template-id, translate the parser's template
3079  // argument list into our AST format.
3080  bool HasExplicitTemplateArgs = false;
3081  TemplateArgumentListInfo TemplateArgs;
3082  if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
3083    TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
3084    TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
3085    TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
3086    ASTTemplateArgsPtr TemplateArgsPtr(*this,
3087                                       TemplateId->getTemplateArgs(),
3088                                       TemplateId->NumArgs);
3089    translateTemplateArguments(TemplateArgsPtr,
3090                               TemplateArgs);
3091    TemplateArgsPtr.release();
3092
3093    HasExplicitTemplateArgs = true;
3094
3095    if (FunctionTemplate) {
3096      // FIXME: Diagnose function template with explicit template
3097      // arguments.
3098      HasExplicitTemplateArgs = false;
3099    } else if (!isFunctionTemplateSpecialization &&
3100               !D.getDeclSpec().isFriendSpecified()) {
3101      // We have encountered something that the user meant to be a
3102      // specialization (because it has explicitly-specified template
3103      // arguments) but that was not introduced with a "template<>" (or had
3104      // too few of them).
3105      Diag(D.getIdentifierLoc(), diag::err_template_spec_needs_header)
3106        << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc)
3107        << CodeModificationHint::CreateInsertion(
3108                                   D.getDeclSpec().getSourceRange().getBegin(),
3109                                                 "template<> ");
3110      isFunctionTemplateSpecialization = true;
3111    } else {
3112      // "friend void foo<>(int);" is an implicit specialization decl.
3113      isFunctionTemplateSpecialization = true;
3114    }
3115  }
3116
3117  if (isFunctionTemplateSpecialization) {
3118      if (CheckFunctionTemplateSpecialization(NewFD,
3119                               (HasExplicitTemplateArgs ? &TemplateArgs : 0),
3120                                              Previous))
3121        NewFD->setInvalidDecl();
3122  } else if (isExplicitSpecialization && isa<CXXMethodDecl>(NewFD) &&
3123             CheckMemberSpecialization(NewFD, Previous))
3124    NewFD->setInvalidDecl();
3125
3126  // Perform semantic checking on the function declaration.
3127  bool OverloadableAttrRequired = false; // FIXME: HACK!
3128  CheckFunctionDeclaration(S, NewFD, Previous, isExplicitSpecialization,
3129                           Redeclaration, /*FIXME:*/OverloadableAttrRequired);
3130
3131  assert((NewFD->isInvalidDecl() || !Redeclaration ||
3132          Previous.getResultKind() != LookupResult::FoundOverloaded) &&
3133         "previous declaration set still overloaded");
3134
3135  // If we have a function template, check the template parameter
3136  // list. This will check and merge default template arguments.
3137  if (FunctionTemplate) {
3138    FunctionTemplateDecl *PrevTemplate = FunctionTemplate->getPreviousDeclaration();
3139    CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
3140                      PrevTemplate? PrevTemplate->getTemplateParameters() : 0,
3141             D.getDeclSpec().isFriendSpecified()? TPC_FriendFunctionTemplate
3142                                                : TPC_FunctionTemplate);
3143  }
3144
3145  if (D.getCXXScopeSpec().isSet() && !NewFD->isInvalidDecl()) {
3146    // Fake up an access specifier if it's supposed to be a class member.
3147    if (!Redeclaration && isa<CXXRecordDecl>(NewFD->getDeclContext()))
3148      NewFD->setAccess(AS_public);
3149
3150    // An out-of-line member function declaration must also be a
3151    // definition (C++ [dcl.meaning]p1).
3152    // Note that this is not the case for explicit specializations of
3153    // function templates or member functions of class templates, per
3154    // C++ [temp.expl.spec]p2.
3155    if (!IsFunctionDefinition && !isFriend &&
3156        !isFunctionTemplateSpecialization && !isExplicitSpecialization) {
3157      Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
3158        << D.getCXXScopeSpec().getRange();
3159      NewFD->setInvalidDecl();
3160    } else if (!Redeclaration &&
3161               !(isFriend && CurContext->isDependentContext())) {
3162      // The user tried to provide an out-of-line definition for a
3163      // function that is a member of a class or namespace, but there
3164      // was no such member function declared (C++ [class.mfct]p2,
3165      // C++ [namespace.memdef]p2). For example:
3166      //
3167      // class X {
3168      //   void f() const;
3169      // };
3170      //
3171      // void X::f() { } // ill-formed
3172      //
3173      // Complain about this problem, and attempt to suggest close
3174      // matches (e.g., those that differ only in cv-qualifiers and
3175      // whether the parameter types are references).
3176      Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
3177        << Name << DC << D.getCXXScopeSpec().getRange();
3178      NewFD->setInvalidDecl();
3179
3180      LookupResult Prev(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
3181                        ForRedeclaration);
3182      LookupQualifiedName(Prev, DC);
3183      assert(!Prev.isAmbiguous() &&
3184             "Cannot have an ambiguity in previous-declaration lookup");
3185      for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
3186           Func != FuncEnd; ++Func) {
3187        if (isa<FunctionDecl>(*Func) &&
3188            isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD))
3189          Diag((*Func)->getLocation(), diag::note_member_def_close_match);
3190      }
3191    }
3192  }
3193
3194  // Handle attributes. We need to have merged decls when handling attributes
3195  // (for example to check for conflicts, etc).
3196  // FIXME: This needs to happen before we merge declarations. Then,
3197  // let attribute merging cope with attribute conflicts.
3198  ProcessDeclAttributes(S, NewFD, D);
3199
3200  // attributes declared post-definition are currently ignored
3201  if (Redeclaration && Previous.isSingleResult()) {
3202    const FunctionDecl *Def;
3203    FunctionDecl *PrevFD = dyn_cast<FunctionDecl>(Previous.getFoundDecl());
3204    if (PrevFD && PrevFD->getBody(Def) && D.hasAttributes()) {
3205      Diag(NewFD->getLocation(), diag::warn_attribute_precede_definition);
3206      Diag(Def->getLocation(), diag::note_previous_definition);
3207    }
3208  }
3209
3210  AddKnownFunctionAttributes(NewFD);
3211
3212  if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) {
3213    // If a function name is overloadable in C, then every function
3214    // with that name must be marked "overloadable".
3215    Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
3216      << Redeclaration << NewFD;
3217    if (!Previous.empty())
3218      Diag(Previous.getRepresentativeDecl()->getLocation(),
3219           diag::note_attribute_overloadable_prev_overload);
3220    NewFD->addAttr(::new (Context) OverloadableAttr());
3221  }
3222
3223  // If this is a locally-scoped extern C function, update the
3224  // map of such names.
3225  if (CurContext->isFunctionOrMethod() && NewFD->isExternC()
3226      && !NewFD->isInvalidDecl())
3227    RegisterLocallyScopedExternCDecl(NewFD, Previous, S);
3228
3229  // Set this FunctionDecl's range up to the right paren.
3230  NewFD->setLocEnd(D.getSourceRange().getEnd());
3231
3232  if (FunctionTemplate && NewFD->isInvalidDecl())
3233    FunctionTemplate->setInvalidDecl();
3234
3235  if (FunctionTemplate)
3236    return FunctionTemplate;
3237
3238
3239  // Keep track of static, non-inlined function definitions that
3240  // have not been used. We will warn later.
3241  // FIXME: Also include static functions declared but not defined.
3242  if (!NewFD->isInvalidDecl() && IsFunctionDefinition
3243      && !NewFD->isInlined() && NewFD->getLinkage() == InternalLinkage
3244      && !NewFD->isUsed() && !NewFD->hasAttr<UnusedAttr>())
3245    UnusedStaticFuncs.push_back(NewFD);
3246
3247  return NewFD;
3248}
3249
3250/// \brief Perform semantic checking of a new function declaration.
3251///
3252/// Performs semantic analysis of the new function declaration
3253/// NewFD. This routine performs all semantic checking that does not
3254/// require the actual declarator involved in the declaration, and is
3255/// used both for the declaration of functions as they are parsed
3256/// (called via ActOnDeclarator) and for the declaration of functions
3257/// that have been instantiated via C++ template instantiation (called
3258/// via InstantiateDecl).
3259///
3260/// \param IsExplicitSpecialiation whether this new function declaration is
3261/// an explicit specialization of the previous declaration.
3262///
3263/// This sets NewFD->isInvalidDecl() to true if there was an error.
3264void Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
3265                                    LookupResult &Previous,
3266                                    bool IsExplicitSpecialization,
3267                                    bool &Redeclaration,
3268                                    bool &OverloadableAttrRequired) {
3269  // If NewFD is already known erroneous, don't do any of this checking.
3270  if (NewFD->isInvalidDecl())
3271    return;
3272
3273  if (NewFD->getResultType()->isVariablyModifiedType()) {
3274    // Functions returning a variably modified type violate C99 6.7.5.2p2
3275    // because all functions have linkage.
3276    Diag(NewFD->getLocation(), diag::err_vm_func_decl);
3277    return NewFD->setInvalidDecl();
3278  }
3279
3280  if (NewFD->isMain())
3281    CheckMain(NewFD);
3282
3283  // Check for a previous declaration of this name.
3284  if (Previous.empty() && NewFD->isExternC()) {
3285    // Since we did not find anything by this name and we're declaring
3286    // an extern "C" function, look for a non-visible extern "C"
3287    // declaration with the same name.
3288    llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos
3289      = LocallyScopedExternalDecls.find(NewFD->getDeclName());
3290    if (Pos != LocallyScopedExternalDecls.end())
3291      Previous.addDecl(Pos->second);
3292  }
3293
3294  // Merge or overload the declaration with an existing declaration of
3295  // the same name, if appropriate.
3296  if (!Previous.empty()) {
3297    // Determine whether NewFD is an overload of PrevDecl or
3298    // a declaration that requires merging. If it's an overload,
3299    // there's no more work to do here; we'll just add the new
3300    // function to the scope.
3301
3302    NamedDecl *OldDecl = 0;
3303    if (!AllowOverloadingOfFunction(Previous, Context)) {
3304      Redeclaration = true;
3305      OldDecl = Previous.getFoundDecl();
3306    } else {
3307      if (!getLangOptions().CPlusPlus) {
3308        OverloadableAttrRequired = true;
3309
3310        // Functions marked "overloadable" must have a prototype (that
3311        // we can't get through declaration merging).
3312        if (!NewFD->getType()->getAs<FunctionProtoType>()) {
3313          Diag(NewFD->getLocation(),
3314               diag::err_attribute_overloadable_no_prototype)
3315            << NewFD;
3316          Redeclaration = true;
3317
3318          // Turn this into a variadic function with no parameters.
3319          QualType R = Context.getFunctionType(
3320                     NewFD->getType()->getAs<FunctionType>()->getResultType(),
3321                     0, 0, true, 0, false, false, 0, 0, false, CC_Default);
3322          NewFD->setType(R);
3323          return NewFD->setInvalidDecl();
3324        }
3325      }
3326
3327      switch (CheckOverload(NewFD, Previous, OldDecl)) {
3328      case Ovl_Match:
3329        Redeclaration = true;
3330        if (isa<UsingShadowDecl>(OldDecl) && CurContext->isRecord()) {
3331          HideUsingShadowDecl(S, cast<UsingShadowDecl>(OldDecl));
3332          Redeclaration = false;
3333        }
3334        break;
3335
3336      case Ovl_NonFunction:
3337        Redeclaration = true;
3338        break;
3339
3340      case Ovl_Overload:
3341        Redeclaration = false;
3342        break;
3343      }
3344    }
3345
3346    if (Redeclaration) {
3347      // NewFD and OldDecl represent declarations that need to be
3348      // merged.
3349      if (MergeFunctionDecl(NewFD, OldDecl))
3350        return NewFD->setInvalidDecl();
3351
3352      Previous.clear();
3353      Previous.addDecl(OldDecl);
3354
3355      if (FunctionTemplateDecl *OldTemplateDecl
3356                                    = dyn_cast<FunctionTemplateDecl>(OldDecl)) {
3357        NewFD->setPreviousDeclaration(OldTemplateDecl->getTemplatedDecl());
3358        FunctionTemplateDecl *NewTemplateDecl
3359          = NewFD->getDescribedFunctionTemplate();
3360        assert(NewTemplateDecl && "Template/non-template mismatch");
3361        if (CXXMethodDecl *Method
3362              = dyn_cast<CXXMethodDecl>(NewTemplateDecl->getTemplatedDecl())) {
3363          Method->setAccess(OldTemplateDecl->getAccess());
3364          NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
3365        }
3366
3367        // If this is an explicit specialization of a member that is a function
3368        // template, mark it as a member specialization.
3369        if (IsExplicitSpecialization &&
3370            NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
3371          NewTemplateDecl->setMemberSpecialization();
3372          assert(OldTemplateDecl->isMemberSpecialization());
3373        }
3374      } else {
3375        if (isa<CXXMethodDecl>(NewFD)) // Set access for out-of-line definitions
3376          NewFD->setAccess(OldDecl->getAccess());
3377        NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
3378      }
3379    }
3380  }
3381
3382  // Semantic checking for this function declaration (in isolation).
3383  if (getLangOptions().CPlusPlus) {
3384    // C++-specific checks.
3385    if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
3386      CheckConstructor(Constructor);
3387    } else if (CXXDestructorDecl *Destructor =
3388                dyn_cast<CXXDestructorDecl>(NewFD)) {
3389      CXXRecordDecl *Record = Destructor->getParent();
3390      QualType ClassType = Context.getTypeDeclType(Record);
3391
3392      // FIXME: Shouldn't we be able to perform thisc heck even when the class
3393      // type is dependent? Both gcc and edg can handle that.
3394      if (!ClassType->isDependentType()) {
3395        DeclarationName Name
3396          = Context.DeclarationNames.getCXXDestructorName(
3397                                        Context.getCanonicalType(ClassType));
3398        if (NewFD->getDeclName() != Name) {
3399          Diag(NewFD->getLocation(), diag::err_destructor_name);
3400          return NewFD->setInvalidDecl();
3401        }
3402      }
3403
3404      Record->setUserDeclaredDestructor(true);
3405      // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
3406      // user-defined destructor.
3407      Record->setPOD(false);
3408
3409      // C++ [class.dtor]p3: A destructor is trivial if it is an implicitly-
3410      // declared destructor.
3411      // FIXME: C++0x: don't do this for "= default" destructors
3412      Record->setHasTrivialDestructor(false);
3413    } else if (CXXConversionDecl *Conversion
3414               = dyn_cast<CXXConversionDecl>(NewFD)) {
3415      ActOnConversionDeclarator(Conversion);
3416    }
3417
3418    // Find any virtual functions that this function overrides.
3419    if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
3420      if (!Method->isFunctionTemplateSpecialization() &&
3421          !Method->getDescribedFunctionTemplate())
3422        AddOverriddenMethods(Method->getParent(), Method);
3423    }
3424
3425    // Additional checks for the destructor; make sure we do this after we
3426    // figure out whether the destructor is virtual.
3427    if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(NewFD))
3428      if (!Destructor->getParent()->isDependentType())
3429        CheckDestructor(Destructor);
3430
3431    // Extra checking for C++ overloaded operators (C++ [over.oper]).
3432    if (NewFD->isOverloadedOperator() &&
3433        CheckOverloadedOperatorDeclaration(NewFD))
3434      return NewFD->setInvalidDecl();
3435
3436    // Extra checking for C++0x literal operators (C++0x [over.literal]).
3437    if (NewFD->getLiteralIdentifier() &&
3438        CheckLiteralOperatorDeclaration(NewFD))
3439      return NewFD->setInvalidDecl();
3440
3441    // In C++, check default arguments now that we have merged decls. Unless
3442    // the lexical context is the class, because in this case this is done
3443    // during delayed parsing anyway.
3444    if (!CurContext->isRecord())
3445      CheckCXXDefaultArguments(NewFD);
3446  }
3447}
3448
3449void Sema::CheckMain(FunctionDecl* FD) {
3450  // C++ [basic.start.main]p3:  A program that declares main to be inline
3451  //   or static is ill-formed.
3452  // C99 6.7.4p4:  In a hosted environment, the inline function specifier
3453  //   shall not appear in a declaration of main.
3454  // static main is not an error under C99, but we should warn about it.
3455  bool isInline = FD->isInlineSpecified();
3456  bool isStatic = FD->getStorageClass() == FunctionDecl::Static;
3457  if (isInline || isStatic) {
3458    unsigned diagID = diag::warn_unusual_main_decl;
3459    if (isInline || getLangOptions().CPlusPlus)
3460      diagID = diag::err_unusual_main_decl;
3461
3462    int which = isStatic + (isInline << 1) - 1;
3463    Diag(FD->getLocation(), diagID) << which;
3464  }
3465
3466  QualType T = FD->getType();
3467  assert(T->isFunctionType() && "function decl is not of function type");
3468  const FunctionType* FT = T->getAs<FunctionType>();
3469
3470  if (!Context.hasSameUnqualifiedType(FT->getResultType(), Context.IntTy)) {
3471    // TODO: add a replacement fixit to turn the return type into 'int'.
3472    Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint);
3473    FD->setInvalidDecl(true);
3474  }
3475
3476  // Treat protoless main() as nullary.
3477  if (isa<FunctionNoProtoType>(FT)) return;
3478
3479  const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
3480  unsigned nparams = FTP->getNumArgs();
3481  assert(FD->getNumParams() == nparams);
3482
3483  bool HasExtraParameters = (nparams > 3);
3484
3485  // Darwin passes an undocumented fourth argument of type char**.  If
3486  // other platforms start sprouting these, the logic below will start
3487  // getting shifty.
3488  if (nparams == 4 &&
3489      Context.Target.getTriple().getOS() == llvm::Triple::Darwin)
3490    HasExtraParameters = false;
3491
3492  if (HasExtraParameters) {
3493    Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
3494    FD->setInvalidDecl(true);
3495    nparams = 3;
3496  }
3497
3498  // FIXME: a lot of the following diagnostics would be improved
3499  // if we had some location information about types.
3500
3501  QualType CharPP =
3502    Context.getPointerType(Context.getPointerType(Context.CharTy));
3503  QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
3504
3505  for (unsigned i = 0; i < nparams; ++i) {
3506    QualType AT = FTP->getArgType(i);
3507
3508    bool mismatch = true;
3509
3510    if (Context.hasSameUnqualifiedType(AT, Expected[i]))
3511      mismatch = false;
3512    else if (Expected[i] == CharPP) {
3513      // As an extension, the following forms are okay:
3514      //   char const **
3515      //   char const * const *
3516      //   char * const *
3517
3518      QualifierCollector qs;
3519      const PointerType* PT;
3520      if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
3521          (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
3522          (QualType(qs.strip(PT->getPointeeType()), 0) == Context.CharTy)) {
3523        qs.removeConst();
3524        mismatch = !qs.empty();
3525      }
3526    }
3527
3528    if (mismatch) {
3529      Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
3530      // TODO: suggest replacing given type with expected type
3531      FD->setInvalidDecl(true);
3532    }
3533  }
3534
3535  if (nparams == 1 && !FD->isInvalidDecl()) {
3536    Diag(FD->getLocation(), diag::warn_main_one_arg);
3537  }
3538}
3539
3540bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
3541  // FIXME: Need strict checking.  In C89, we need to check for
3542  // any assignment, increment, decrement, function-calls, or
3543  // commas outside of a sizeof.  In C99, it's the same list,
3544  // except that the aforementioned are allowed in unevaluated
3545  // expressions.  Everything else falls under the
3546  // "may accept other forms of constant expressions" exception.
3547  // (We never end up here for C++, so the constant expression
3548  // rules there don't matter.)
3549  if (Init->isConstantInitializer(Context))
3550    return false;
3551  Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
3552    << Init->getSourceRange();
3553  return true;
3554}
3555
3556void Sema::AddInitializerToDecl(DeclPtrTy dcl, ExprArg init) {
3557  AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
3558}
3559
3560/// AddInitializerToDecl - Adds the initializer Init to the
3561/// declaration dcl. If DirectInit is true, this is C++ direct
3562/// initialization rather than copy initialization.
3563void Sema::AddInitializerToDecl(DeclPtrTy dcl, ExprArg init, bool DirectInit) {
3564  Decl *RealDecl = dcl.getAs<Decl>();
3565  // If there is no declaration, there was an error parsing it.  Just ignore
3566  // the initializer.
3567  if (RealDecl == 0)
3568    return;
3569
3570  if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
3571    // With declarators parsed the way they are, the parser cannot
3572    // distinguish between a normal initializer and a pure-specifier.
3573    // Thus this grotesque test.
3574    IntegerLiteral *IL;
3575    Expr *Init = static_cast<Expr *>(init.get());
3576    if ((IL = dyn_cast<IntegerLiteral>(Init)) && IL->getValue() == 0 &&
3577        Context.getCanonicalType(IL->getType()) == Context.IntTy)
3578      CheckPureMethod(Method, Init->getSourceRange());
3579    else {
3580      Diag(Method->getLocation(), diag::err_member_function_initialization)
3581        << Method->getDeclName() << Init->getSourceRange();
3582      Method->setInvalidDecl();
3583    }
3584    return;
3585  }
3586
3587  VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
3588  if (!VDecl) {
3589    if (getLangOptions().CPlusPlus &&
3590        RealDecl->getLexicalDeclContext()->isRecord() &&
3591        isa<NamedDecl>(RealDecl))
3592      Diag(RealDecl->getLocation(), diag::err_member_initialization)
3593        << cast<NamedDecl>(RealDecl)->getDeclName();
3594    else
3595      Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
3596    RealDecl->setInvalidDecl();
3597    return;
3598  }
3599
3600  // A definition must end up with a complete type, which means it must be
3601  // complete with the restriction that an array type might be completed by the
3602  // initializer; note that later code assumes this restriction.
3603  QualType BaseDeclType = VDecl->getType();
3604  if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
3605    BaseDeclType = Array->getElementType();
3606  if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
3607                          diag::err_typecheck_decl_incomplete_type)) {
3608    RealDecl->setInvalidDecl();
3609    return;
3610  }
3611
3612  // The variable can not have an abstract class type.
3613  if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
3614                             diag::err_abstract_type_in_decl,
3615                             AbstractVariableType))
3616    VDecl->setInvalidDecl();
3617
3618  const VarDecl *Def;
3619  if ((Def = VDecl->getDefinition()) && Def != VDecl) {
3620    Diag(VDecl->getLocation(), diag::err_redefinition)
3621      << VDecl->getDeclName();
3622    Diag(Def->getLocation(), diag::note_previous_definition);
3623    VDecl->setInvalidDecl();
3624    return;
3625  }
3626
3627  // Take ownership of the expression, now that we're sure we have somewhere
3628  // to put it.
3629  Expr *Init = init.takeAs<Expr>();
3630  assert(Init && "missing initializer");
3631
3632  // Capture the variable that is being initialized and the style of
3633  // initialization.
3634  InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
3635
3636  // FIXME: Poor source location information.
3637  InitializationKind Kind
3638    = DirectInit? InitializationKind::CreateDirect(VDecl->getLocation(),
3639                                                   Init->getLocStart(),
3640                                                   Init->getLocEnd())
3641                : InitializationKind::CreateCopy(VDecl->getLocation(),
3642                                                 Init->getLocStart());
3643
3644  // Get the decls type and save a reference for later, since
3645  // CheckInitializerTypes may change it.
3646  QualType DclT = VDecl->getType(), SavT = DclT;
3647  if (VDecl->isBlockVarDecl()) {
3648    if (VDecl->hasExternalStorage()) { // C99 6.7.8p5
3649      Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
3650      VDecl->setInvalidDecl();
3651    } else if (!VDecl->isInvalidDecl()) {
3652      InitializationSequence InitSeq(*this, Entity, Kind, &Init, 1);
3653      OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
3654                                          MultiExprArg(*this, (void**)&Init, 1),
3655                                                &DclT);
3656      if (Result.isInvalid()) {
3657        VDecl->setInvalidDecl();
3658        return;
3659      }
3660
3661      Init = Result.takeAs<Expr>();
3662
3663      // C++ 3.6.2p2, allow dynamic initialization of static initializers.
3664      // Don't check invalid declarations to avoid emitting useless diagnostics.
3665      if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
3666        if (VDecl->getStorageClass() == VarDecl::Static) // C99 6.7.8p4.
3667          CheckForConstantInitializer(Init, DclT);
3668      }
3669    }
3670  } else if (VDecl->isStaticDataMember() &&
3671             VDecl->getLexicalDeclContext()->isRecord()) {
3672    // This is an in-class initialization for a static data member, e.g.,
3673    //
3674    // struct S {
3675    //   static const int value = 17;
3676    // };
3677
3678    // Attach the initializer
3679    VDecl->setInit(Init);
3680
3681    // C++ [class.mem]p4:
3682    //   A member-declarator can contain a constant-initializer only
3683    //   if it declares a static member (9.4) of const integral or
3684    //   const enumeration type, see 9.4.2.
3685    QualType T = VDecl->getType();
3686    if (!T->isDependentType() &&
3687        (!Context.getCanonicalType(T).isConstQualified() ||
3688         !T->isIntegralType())) {
3689      Diag(VDecl->getLocation(), diag::err_member_initialization)
3690        << VDecl->getDeclName() << Init->getSourceRange();
3691      VDecl->setInvalidDecl();
3692    } else {
3693      // C++ [class.static.data]p4:
3694      //   If a static data member is of const integral or const
3695      //   enumeration type, its declaration in the class definition
3696      //   can specify a constant-initializer which shall be an
3697      //   integral constant expression (5.19).
3698      if (!Init->isTypeDependent() &&
3699          !Init->getType()->isIntegralType()) {
3700        // We have a non-dependent, non-integral or enumeration type.
3701        Diag(Init->getSourceRange().getBegin(),
3702             diag::err_in_class_initializer_non_integral_type)
3703          << Init->getType() << Init->getSourceRange();
3704        VDecl->setInvalidDecl();
3705      } else if (!Init->isTypeDependent() && !Init->isValueDependent()) {
3706        // Check whether the expression is a constant expression.
3707        llvm::APSInt Value;
3708        SourceLocation Loc;
3709        if (!Init->isIntegerConstantExpr(Value, Context, &Loc)) {
3710          Diag(Loc, diag::err_in_class_initializer_non_constant)
3711            << Init->getSourceRange();
3712          VDecl->setInvalidDecl();
3713        } else if (!VDecl->getType()->isDependentType())
3714          ImpCastExprToType(Init, VDecl->getType(), CastExpr::CK_IntegralCast);
3715      }
3716    }
3717  } else if (VDecl->isFileVarDecl()) {
3718    if (VDecl->getStorageClass() == VarDecl::Extern)
3719      Diag(VDecl->getLocation(), diag::warn_extern_init);
3720    if (!VDecl->isInvalidDecl()) {
3721      InitializationSequence InitSeq(*this, Entity, Kind, &Init, 1);
3722      OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
3723                                          MultiExprArg(*this, (void**)&Init, 1),
3724                                                &DclT);
3725      if (Result.isInvalid()) {
3726        VDecl->setInvalidDecl();
3727        return;
3728      }
3729
3730      Init = Result.takeAs<Expr>();
3731    }
3732
3733    // C++ 3.6.2p2, allow dynamic initialization of static initializers.
3734    // Don't check invalid declarations to avoid emitting useless diagnostics.
3735    if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
3736      // C99 6.7.8p4. All file scoped initializers need to be constant.
3737      CheckForConstantInitializer(Init, DclT);
3738    }
3739  }
3740  // If the type changed, it means we had an incomplete type that was
3741  // completed by the initializer. For example:
3742  //   int ary[] = { 1, 3, 5 };
3743  // "ary" transitions from a VariableArrayType to a ConstantArrayType.
3744  if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
3745    VDecl->setType(DclT);
3746    Init->setType(DclT);
3747  }
3748
3749  Init = MaybeCreateCXXExprWithTemporaries(Init);
3750  // Attach the initializer to the decl.
3751  VDecl->setInit(Init);
3752
3753  if (getLangOptions().CPlusPlus) {
3754    // Make sure we mark the destructor as used if necessary.
3755    QualType InitType = VDecl->getType();
3756    while (const ArrayType *Array = Context.getAsArrayType(InitType))
3757      InitType = Context.getBaseElementType(Array);
3758    if (const RecordType *Record = InitType->getAs<RecordType>())
3759      FinalizeVarWithDestructor(VDecl, Record);
3760  }
3761
3762  return;
3763}
3764
3765void Sema::ActOnUninitializedDecl(DeclPtrTy dcl,
3766                                  bool TypeContainsUndeducedAuto) {
3767  Decl *RealDecl = dcl.getAs<Decl>();
3768
3769  // If there is no declaration, there was an error parsing it. Just ignore it.
3770  if (RealDecl == 0)
3771    return;
3772
3773  if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
3774    QualType Type = Var->getType();
3775
3776    // C++0x [dcl.spec.auto]p3
3777    if (TypeContainsUndeducedAuto) {
3778      Diag(Var->getLocation(), diag::err_auto_var_requires_init)
3779        << Var->getDeclName() << Type;
3780      Var->setInvalidDecl();
3781      return;
3782    }
3783
3784    switch (Var->isThisDeclarationADefinition()) {
3785    case VarDecl::Definition:
3786      if (!Var->isStaticDataMember() || !Var->getAnyInitializer())
3787        break;
3788
3789      // We have an out-of-line definition of a static data member
3790      // that has an in-class initializer, so we type-check this like
3791      // a declaration.
3792      //
3793      // Fall through
3794
3795    case VarDecl::DeclarationOnly:
3796      // It's only a declaration.
3797
3798      // Block scope. C99 6.7p7: If an identifier for an object is
3799      // declared with no linkage (C99 6.2.2p6), the type for the
3800      // object shall be complete.
3801      if (!Type->isDependentType() && Var->isBlockVarDecl() &&
3802          !Var->getLinkage() && !Var->isInvalidDecl() &&
3803          RequireCompleteType(Var->getLocation(), Type,
3804                              diag::err_typecheck_decl_incomplete_type))
3805        Var->setInvalidDecl();
3806
3807      // Make sure that the type is not abstract.
3808      if (!Type->isDependentType() && !Var->isInvalidDecl() &&
3809          RequireNonAbstractType(Var->getLocation(), Type,
3810                                 diag::err_abstract_type_in_decl,
3811                                 AbstractVariableType))
3812        Var->setInvalidDecl();
3813      return;
3814
3815    case VarDecl::TentativeDefinition:
3816      // File scope. C99 6.9.2p2: A declaration of an identifier for an
3817      // object that has file scope without an initializer, and without a
3818      // storage-class specifier or with the storage-class specifier "static",
3819      // constitutes a tentative definition. Note: A tentative definition with
3820      // external linkage is valid (C99 6.2.2p5).
3821      if (!Var->isInvalidDecl()) {
3822        if (const IncompleteArrayType *ArrayT
3823                                    = Context.getAsIncompleteArrayType(Type)) {
3824          if (RequireCompleteType(Var->getLocation(),
3825                                  ArrayT->getElementType(),
3826                                  diag::err_illegal_decl_array_incomplete_type))
3827            Var->setInvalidDecl();
3828        } else if (Var->getStorageClass() == VarDecl::Static) {
3829          // C99 6.9.2p3: If the declaration of an identifier for an object is
3830          // a tentative definition and has internal linkage (C99 6.2.2p3), the
3831          // declared type shall not be an incomplete type.
3832          // NOTE: code such as the following
3833          //     static struct s;
3834          //     struct s { int a; };
3835          // is accepted by gcc. Hence here we issue a warning instead of
3836          // an error and we do not invalidate the static declaration.
3837          // NOTE: to avoid multiple warnings, only check the first declaration.
3838          if (Var->getPreviousDeclaration() == 0)
3839            RequireCompleteType(Var->getLocation(), Type,
3840                                diag::ext_typecheck_decl_incomplete_type);
3841        }
3842      }
3843
3844      // Record the tentative definition; we're done.
3845      if (!Var->isInvalidDecl())
3846        TentativeDefinitions.push_back(Var);
3847      return;
3848    }
3849
3850    // Provide a specific diagnostic for uninitialized variable
3851    // definitions with incomplete array type.
3852    if (Type->isIncompleteArrayType()) {
3853      Diag(Var->getLocation(),
3854           diag::err_typecheck_incomplete_array_needs_initializer);
3855      Var->setInvalidDecl();
3856      return;
3857    }
3858
3859   // Provide a specific diagnostic for uninitialized variable
3860   // definitions with reference type.
3861   if (Type->isReferenceType()) {
3862     Diag(Var->getLocation(), diag::err_reference_var_requires_init)
3863       << Var->getDeclName()
3864       << SourceRange(Var->getLocation(), Var->getLocation());
3865     Var->setInvalidDecl();
3866     return;
3867   }
3868
3869    // Do not attempt to type-check the default initializer for a
3870    // variable with dependent type.
3871    if (Type->isDependentType())
3872      return;
3873
3874    if (Var->isInvalidDecl())
3875      return;
3876
3877    if (RequireCompleteType(Var->getLocation(),
3878                            Context.getBaseElementType(Type),
3879                            diag::err_typecheck_decl_incomplete_type)) {
3880      Var->setInvalidDecl();
3881      return;
3882    }
3883
3884    // The variable can not have an abstract class type.
3885    if (RequireNonAbstractType(Var->getLocation(), Type,
3886                               diag::err_abstract_type_in_decl,
3887                               AbstractVariableType)) {
3888      Var->setInvalidDecl();
3889      return;
3890    }
3891
3892    const RecordType *Record
3893      = Context.getBaseElementType(Type)->getAs<RecordType>();
3894    if (Record && getLangOptions().CPlusPlus && !getLangOptions().CPlusPlus0x &&
3895        cast<CXXRecordDecl>(Record->getDecl())->isPOD()) {
3896      // C++03 [dcl.init]p9:
3897      //   If no initializer is specified for an object, and the
3898      //   object is of (possibly cv-qualified) non-POD class type (or
3899      //   array thereof), the object shall be default-initialized; if
3900      //   the object is of const-qualified type, the underlying class
3901      //   type shall have a user-declared default
3902      //   constructor. Otherwise, if no initializer is specified for
3903      //   a non- static object, the object and its subobjects, if
3904      //   any, have an indeterminate initial value); if the object
3905      //   or any of its subobjects are of const-qualified type, the
3906      //   program is ill-formed.
3907      // FIXME: DPG thinks it is very fishy that C++0x disables this.
3908    } else {
3909      InitializedEntity Entity = InitializedEntity::InitializeVariable(Var);
3910      InitializationKind Kind
3911        = InitializationKind::CreateDefault(Var->getLocation());
3912
3913      InitializationSequence InitSeq(*this, Entity, Kind, 0, 0);
3914      OwningExprResult Init = InitSeq.Perform(*this, Entity, Kind,
3915                                              MultiExprArg(*this, 0, 0));
3916      if (Init.isInvalid())
3917        Var->setInvalidDecl();
3918      else if (Init.get())
3919        Var->setInit(MaybeCreateCXXExprWithTemporaries(Init.takeAs<Expr>()));
3920    }
3921
3922    if (!Var->isInvalidDecl() && getLangOptions().CPlusPlus && Record)
3923      FinalizeVarWithDestructor(Var, Record);
3924  }
3925}
3926
3927Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
3928                                                   DeclPtrTy *Group,
3929                                                   unsigned NumDecls) {
3930  llvm::SmallVector<Decl*, 8> Decls;
3931
3932  if (DS.isTypeSpecOwned())
3933    Decls.push_back((Decl*)DS.getTypeRep());
3934
3935  for (unsigned i = 0; i != NumDecls; ++i)
3936    if (Decl *D = Group[i].getAs<Decl>())
3937      Decls.push_back(D);
3938
3939  return DeclGroupPtrTy::make(DeclGroupRef::Create(Context,
3940                                                   Decls.data(), Decls.size()));
3941}
3942
3943
3944/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
3945/// to introduce parameters into function prototype scope.
3946Sema::DeclPtrTy
3947Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
3948  const DeclSpec &DS = D.getDeclSpec();
3949
3950  // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
3951  VarDecl::StorageClass StorageClass = VarDecl::None;
3952  if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
3953    StorageClass = VarDecl::Register;
3954  } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
3955    Diag(DS.getStorageClassSpecLoc(),
3956         diag::err_invalid_storage_class_in_func_decl);
3957    D.getMutableDeclSpec().ClearStorageClassSpecs();
3958  }
3959
3960  if (D.getDeclSpec().isThreadSpecified())
3961    Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
3962
3963  DiagnoseFunctionSpecifiers(D);
3964
3965  // Check that there are no default arguments inside the type of this
3966  // parameter (C++ only).
3967  if (getLangOptions().CPlusPlus)
3968    CheckExtraCXXDefaultArguments(D);
3969
3970  TypeSourceInfo *TInfo = 0;
3971  TagDecl *OwnedDecl = 0;
3972  QualType parmDeclType = GetTypeForDeclarator(D, S, &TInfo, &OwnedDecl);
3973
3974  if (getLangOptions().CPlusPlus && OwnedDecl && OwnedDecl->isDefinition()) {
3975    // C++ [dcl.fct]p6:
3976    //   Types shall not be defined in return or parameter types.
3977    Diag(OwnedDecl->getLocation(), diag::err_type_defined_in_param_type)
3978      << Context.getTypeDeclType(OwnedDecl);
3979  }
3980
3981  // Check for redeclaration of parameters, e.g. int foo(int x, int x);
3982  IdentifierInfo *II = D.getIdentifier();
3983  if (II) {
3984    LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName,
3985                   ForRedeclaration);
3986    LookupName(R, S);
3987    if (R.isSingleResult()) {
3988      NamedDecl *PrevDecl = R.getFoundDecl();
3989      if (PrevDecl->isTemplateParameter()) {
3990        // Maybe we will complain about the shadowed template parameter.
3991        DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
3992        // Just pretend that we didn't see the previous declaration.
3993        PrevDecl = 0;
3994      } else if (S->isDeclScope(DeclPtrTy::make(PrevDecl))) {
3995        Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
3996        Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3997
3998        // Recover by removing the name
3999        II = 0;
4000        D.SetIdentifier(0, D.getIdentifierLoc());
4001        D.setInvalidType(true);
4002      }
4003    }
4004  }
4005
4006  // Parameters can not be abstract class types.
4007  // For record types, this is done by the AbstractClassUsageDiagnoser once
4008  // the class has been completely parsed.
4009  if (!CurContext->isRecord() &&
4010      RequireNonAbstractType(D.getIdentifierLoc(), parmDeclType,
4011                             diag::err_abstract_type_in_decl,
4012                             AbstractParamType))
4013    D.setInvalidType(true);
4014
4015  QualType T = adjustParameterType(parmDeclType);
4016
4017  // Temporarily put parameter variables in the translation unit, not
4018  // the enclosing context.  This prevents them from accidentally
4019  // looking like class members in C++.
4020  DeclContext *DC = Context.getTranslationUnitDecl();
4021
4022  ParmVarDecl *New
4023    = ParmVarDecl::Create(Context, DC, D.getIdentifierLoc(), II,
4024                          T, TInfo, StorageClass, 0);
4025
4026  if (D.isInvalidType())
4027    New->setInvalidDecl();
4028
4029  // Parameter declarators cannot be interface types. All ObjC objects are
4030  // passed by reference.
4031  if (T->isObjCInterfaceType()) {
4032    Diag(D.getIdentifierLoc(),
4033         diag::err_object_cannot_be_passed_returned_by_value) << 1 << T;
4034    New->setInvalidDecl();
4035  }
4036
4037  // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
4038  if (D.getCXXScopeSpec().isSet()) {
4039    Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
4040      << D.getCXXScopeSpec().getRange();
4041    New->setInvalidDecl();
4042  }
4043
4044  // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
4045  // duration shall not be qualified by an address-space qualifier."
4046  // Since all parameters have automatic store duration, they can not have
4047  // an address space.
4048  if (T.getAddressSpace() != 0) {
4049    Diag(D.getIdentifierLoc(),
4050         diag::err_arg_with_address_space);
4051    New->setInvalidDecl();
4052  }
4053
4054
4055  // Add the parameter declaration into this scope.
4056  S->AddDecl(DeclPtrTy::make(New));
4057  if (II)
4058    IdResolver.AddDecl(New);
4059
4060  ProcessDeclAttributes(S, New, D);
4061
4062  if (New->hasAttr<BlocksAttr>()) {
4063    Diag(New->getLocation(), diag::err_block_on_nonlocal);
4064  }
4065  return DeclPtrTy::make(New);
4066}
4067
4068void Sema::ActOnObjCCatchParam(DeclPtrTy D) {
4069  ParmVarDecl *Param = cast<ParmVarDecl>(D.getAs<Decl>());
4070  Param->setDeclContext(CurContext);
4071}
4072
4073void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
4074                                           SourceLocation LocAfterDecls) {
4075  assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
4076         "Not a function declarator!");
4077  DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
4078
4079  // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
4080  // for a K&R function.
4081  if (!FTI.hasPrototype) {
4082    for (int i = FTI.NumArgs; i != 0; /* decrement in loop */) {
4083      --i;
4084      if (FTI.ArgInfo[i].Param == 0) {
4085        llvm::SmallString<256> Code;
4086        llvm::raw_svector_ostream(Code) << "  int "
4087                                        << FTI.ArgInfo[i].Ident->getName()
4088                                        << ";\n";
4089        Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
4090          << FTI.ArgInfo[i].Ident
4091          << CodeModificationHint::CreateInsertion(LocAfterDecls, Code.str());
4092
4093        // Implicitly declare the argument as type 'int' for lack of a better
4094        // type.
4095        DeclSpec DS;
4096        const char* PrevSpec; // unused
4097        unsigned DiagID; // unused
4098        DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
4099                           PrevSpec, DiagID);
4100        Declarator ParamD(DS, Declarator::KNRTypeListContext);
4101        ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
4102        FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
4103      }
4104    }
4105  }
4106}
4107
4108Sema::DeclPtrTy Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope,
4109                                              Declarator &D) {
4110  assert(getCurFunctionDecl() == 0 && "Function parsing confused");
4111  assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
4112         "Not a function declarator!");
4113  DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
4114
4115  if (FTI.hasPrototype) {
4116    // FIXME: Diagnose arguments without names in C.
4117  }
4118
4119  Scope *ParentScope = FnBodyScope->getParent();
4120
4121  DeclPtrTy DP = HandleDeclarator(ParentScope, D,
4122                                  MultiTemplateParamsArg(*this),
4123                                  /*IsFunctionDefinition=*/true);
4124  return ActOnStartOfFunctionDef(FnBodyScope, DP);
4125}
4126
4127static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD) {
4128  // Don't warn about invalid declarations.
4129  if (FD->isInvalidDecl())
4130    return false;
4131
4132  // Or declarations that aren't global.
4133  if (!FD->isGlobal())
4134    return false;
4135
4136  // Don't warn about C++ member functions.
4137  if (isa<CXXMethodDecl>(FD))
4138    return false;
4139
4140  // Don't warn about 'main'.
4141  if (FD->isMain())
4142    return false;
4143
4144  // Don't warn about inline functions.
4145  if (FD->isInlineSpecified())
4146    return false;
4147
4148  // Don't warn about function templates.
4149  if (FD->getDescribedFunctionTemplate())
4150    return false;
4151
4152  // Don't warn about function template specializations.
4153  if (FD->isFunctionTemplateSpecialization())
4154    return false;
4155
4156  bool MissingPrototype = true;
4157  for (const FunctionDecl *Prev = FD->getPreviousDeclaration();
4158       Prev; Prev = Prev->getPreviousDeclaration()) {
4159    // Ignore any declarations that occur in function or method
4160    // scope, because they aren't visible from the header.
4161    if (Prev->getDeclContext()->isFunctionOrMethod())
4162      continue;
4163
4164    MissingPrototype = !Prev->getType()->isFunctionProtoType();
4165    break;
4166  }
4167
4168  return MissingPrototype;
4169}
4170
4171Sema::DeclPtrTy Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclPtrTy D) {
4172  // Clear the last template instantiation error context.
4173  LastTemplateInstantiationErrorContext = ActiveTemplateInstantiation();
4174
4175  if (!D)
4176    return D;
4177  FunctionDecl *FD = 0;
4178
4179  if (FunctionTemplateDecl *FunTmpl
4180        = dyn_cast<FunctionTemplateDecl>(D.getAs<Decl>()))
4181    FD = FunTmpl->getTemplatedDecl();
4182  else
4183    FD = cast<FunctionDecl>(D.getAs<Decl>());
4184
4185  // Enter a new function scope
4186  PushFunctionScope();
4187
4188  // See if this is a redefinition.
4189  // But don't complain if we're in GNU89 mode and the previous definition
4190  // was an extern inline function.
4191  const FunctionDecl *Definition;
4192  if (FD->getBody(Definition) &&
4193      !canRedefineFunction(Definition, getLangOptions())) {
4194    Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
4195    Diag(Definition->getLocation(), diag::note_previous_definition);
4196  }
4197
4198  // Builtin functions cannot be defined.
4199  if (unsigned BuiltinID = FD->getBuiltinID()) {
4200    if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
4201      Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
4202      FD->setInvalidDecl();
4203    }
4204  }
4205
4206  // The return type of a function definition must be complete
4207  // (C99 6.9.1p3, C++ [dcl.fct]p6).
4208  QualType ResultType = FD->getResultType();
4209  if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
4210      !FD->isInvalidDecl() &&
4211      RequireCompleteType(FD->getLocation(), ResultType,
4212                          diag::err_func_def_incomplete_result))
4213    FD->setInvalidDecl();
4214
4215  // GNU warning -Wmissing-prototypes:
4216  //   Warn if a global function is defined without a previous
4217  //   prototype declaration. This warning is issued even if the
4218  //   definition itself provides a prototype. The aim is to detect
4219  //   global functions that fail to be declared in header files.
4220  if (ShouldWarnAboutMissingPrototype(FD))
4221    Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
4222
4223  if (FnBodyScope)
4224    PushDeclContext(FnBodyScope, FD);
4225
4226  // Check the validity of our function parameters
4227  CheckParmsForFunctionDef(FD);
4228
4229  bool ShouldCheckShadow =
4230    Diags.getDiagnosticLevel(diag::warn_decl_shadow) != Diagnostic::Ignored;
4231
4232  // Introduce our parameters into the function scope
4233  for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
4234    ParmVarDecl *Param = FD->getParamDecl(p);
4235    Param->setOwningFunction(FD);
4236
4237    // If this has an identifier, add it to the scope stack.
4238    if (Param->getIdentifier() && FnBodyScope) {
4239      if (ShouldCheckShadow)
4240        CheckShadow(FnBodyScope, Param);
4241
4242      PushOnScopeChains(Param, FnBodyScope);
4243    }
4244  }
4245
4246  // Checking attributes of current function definition
4247  // dllimport attribute.
4248  if (FD->getAttr<DLLImportAttr>() &&
4249      (!FD->getAttr<DLLExportAttr>())) {
4250    // dllimport attribute cannot be applied to definition.
4251    if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
4252      Diag(FD->getLocation(),
4253           diag::err_attribute_can_be_applied_only_to_symbol_declaration)
4254        << "dllimport";
4255      FD->setInvalidDecl();
4256      return DeclPtrTy::make(FD);
4257    }
4258
4259    // Visual C++ appears to not think this is an issue, so only issue
4260    // a warning when Microsoft extensions are disabled.
4261    if (!LangOpts.Microsoft) {
4262      // If a symbol previously declared dllimport is later defined, the
4263      // attribute is ignored in subsequent references, and a warning is
4264      // emitted.
4265      Diag(FD->getLocation(),
4266           diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
4267        << FD->getNameAsCString() << "dllimport";
4268    }
4269  }
4270  return DeclPtrTy::make(FD);
4271}
4272
4273Sema::DeclPtrTy Sema::ActOnFinishFunctionBody(DeclPtrTy D, StmtArg BodyArg) {
4274  return ActOnFinishFunctionBody(D, move(BodyArg), false);
4275}
4276
4277Sema::DeclPtrTy Sema::ActOnFinishFunctionBody(DeclPtrTy D, StmtArg BodyArg,
4278                                              bool IsInstantiation) {
4279  Decl *dcl = D.getAs<Decl>();
4280  Stmt *Body = BodyArg.takeAs<Stmt>();
4281
4282  FunctionDecl *FD = 0;
4283  FunctionTemplateDecl *FunTmpl = dyn_cast_or_null<FunctionTemplateDecl>(dcl);
4284  if (FunTmpl)
4285    FD = FunTmpl->getTemplatedDecl();
4286  else
4287    FD = dyn_cast_or_null<FunctionDecl>(dcl);
4288
4289  sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
4290
4291  if (FD) {
4292    FD->setBody(Body);
4293    if (FD->isMain()) {
4294      // C and C++ allow for main to automagically return 0.
4295      // Implements C++ [basic.start.main]p5 and C99 5.1.2.2.3.
4296      FD->setHasImplicitReturnZero(true);
4297      WP.disableCheckFallThrough();
4298    }
4299
4300    if (!FD->isInvalidDecl())
4301      DiagnoseUnusedParameters(FD->param_begin(), FD->param_end());
4302
4303    if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
4304      MaybeMarkVirtualMembersReferenced(Method->getLocation(), Method);
4305
4306    assert(FD == getCurFunctionDecl() && "Function parsing confused");
4307  } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
4308    assert(MD == getCurMethodDecl() && "Method parsing confused");
4309    MD->setBody(Body);
4310    MD->setEndLoc(Body->getLocEnd());
4311    if (!MD->isInvalidDecl())
4312      DiagnoseUnusedParameters(MD->param_begin(), MD->param_end());
4313  } else {
4314    Body->Destroy(Context);
4315    return DeclPtrTy();
4316  }
4317  if (!IsInstantiation)
4318    PopDeclContext();
4319
4320  // Verify and clean out per-function state.
4321
4322  // Check goto/label use.
4323  for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
4324       I = getLabelMap().begin(), E = getLabelMap().end(); I != E; ++I) {
4325    LabelStmt *L = I->second;
4326
4327    // Verify that we have no forward references left.  If so, there was a goto
4328    // or address of a label taken, but no definition of it.  Label fwd
4329    // definitions are indicated with a null substmt.
4330    if (L->getSubStmt() != 0)
4331      continue;
4332
4333    // Emit error.
4334    Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
4335
4336    // At this point, we have gotos that use the bogus label.  Stitch it into
4337    // the function body so that they aren't leaked and that the AST is well
4338    // formed.
4339    if (Body == 0) {
4340      // The whole function wasn't parsed correctly, just delete this.
4341      L->Destroy(Context);
4342      continue;
4343    }
4344
4345    // Otherwise, the body is valid: we want to stitch the label decl into the
4346    // function somewhere so that it is properly owned and so that the goto
4347    // has a valid target.  Do this by creating a new compound stmt with the
4348    // label in it.
4349
4350    // Give the label a sub-statement.
4351    L->setSubStmt(new (Context) NullStmt(L->getIdentLoc()));
4352
4353    CompoundStmt *Compound = isa<CXXTryStmt>(Body) ?
4354                               cast<CXXTryStmt>(Body)->getTryBlock() :
4355                               cast<CompoundStmt>(Body);
4356    llvm::SmallVector<Stmt*, 64> Elements(Compound->body_begin(),
4357                                          Compound->body_end());
4358    Elements.push_back(L);
4359    Compound->setStmts(Context, Elements.data(), Elements.size());
4360  }
4361
4362  if (Body) {
4363    // C++ constructors that have function-try-blocks can't have return
4364    // statements in the handlers of that block. (C++ [except.handle]p14)
4365    // Verify this.
4366    if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
4367      DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
4368
4369    // Verify that that gotos and switch cases don't jump into scopes illegally.
4370    // Verify that that gotos and switch cases don't jump into scopes illegally.
4371    if (FunctionNeedsScopeChecking() && !hasAnyErrorsInThisFunction())
4372      DiagnoseInvalidJumps(Body);
4373
4374    if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl))
4375      MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4376                                             Destructor->getParent());
4377
4378    // If any errors have occurred, clear out any temporaries that may have
4379    // been leftover. This ensures that these temporaries won't be picked up for
4380    // deletion in some later function.
4381    if (PP.getDiagnostics().hasErrorOccurred())
4382      ExprTemporaries.clear();
4383    else if (!isa<FunctionTemplateDecl>(dcl)) {
4384      // Since the body is valid, issue any analysis-based warnings that are
4385      // enabled.
4386      QualType ResultType;
4387      if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(dcl)) {
4388        ResultType = FD->getResultType();
4389      }
4390      else {
4391        ObjCMethodDecl *MD = cast<ObjCMethodDecl>(dcl);
4392        ResultType = MD->getResultType();
4393      }
4394      AnalysisWarnings.IssueWarnings(WP, dcl);
4395    }
4396
4397    assert(ExprTemporaries.empty() && "Leftover temporaries in function");
4398  }
4399
4400  PopFunctionOrBlockScope();
4401
4402  // If any errors have occurred, clear out any temporaries that may have
4403  // been leftover. This ensures that these temporaries won't be picked up for
4404  // deletion in some later function.
4405  if (getDiagnostics().hasErrorOccurred())
4406    ExprTemporaries.clear();
4407
4408  return D;
4409}
4410
4411/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
4412/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
4413NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
4414                                          IdentifierInfo &II, Scope *S) {
4415  // Before we produce a declaration for an implicitly defined
4416  // function, see whether there was a locally-scoped declaration of
4417  // this name as a function or variable. If so, use that
4418  // (non-visible) declaration, and complain about it.
4419  llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos
4420    = LocallyScopedExternalDecls.find(&II);
4421  if (Pos != LocallyScopedExternalDecls.end()) {
4422    Diag(Loc, diag::warn_use_out_of_scope_declaration) << Pos->second;
4423    Diag(Pos->second->getLocation(), diag::note_previous_declaration);
4424    return Pos->second;
4425  }
4426
4427  // Extension in C99.  Legal in C90, but warn about it.
4428  if (II.getName().startswith("__builtin_"))
4429    Diag(Loc, diag::warn_builtin_unknown) << &II;
4430  else if (getLangOptions().C99)
4431    Diag(Loc, diag::ext_implicit_function_decl) << &II;
4432  else
4433    Diag(Loc, diag::warn_implicit_function_decl) << &II;
4434
4435  // Set a Declarator for the implicit definition: int foo();
4436  const char *Dummy;
4437  DeclSpec DS;
4438  unsigned DiagID;
4439  bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID);
4440  Error = Error; // Silence warning.
4441  assert(!Error && "Error setting up implicit decl!");
4442  Declarator D(DS, Declarator::BlockContext);
4443  D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, SourceLocation(), 0,
4444                                             0, 0, false, SourceLocation(),
4445                                             false, 0,0,0, Loc, Loc, D),
4446                SourceLocation());
4447  D.SetIdentifier(&II, Loc);
4448
4449  // Insert this function into translation-unit scope.
4450
4451  DeclContext *PrevDC = CurContext;
4452  CurContext = Context.getTranslationUnitDecl();
4453
4454  FunctionDecl *FD =
4455 dyn_cast<FunctionDecl>(ActOnDeclarator(TUScope, D).getAs<Decl>());
4456  FD->setImplicit();
4457
4458  CurContext = PrevDC;
4459
4460  AddKnownFunctionAttributes(FD);
4461
4462  return FD;
4463}
4464
4465/// \brief Adds any function attributes that we know a priori based on
4466/// the declaration of this function.
4467///
4468/// These attributes can apply both to implicitly-declared builtins
4469/// (like __builtin___printf_chk) or to library-declared functions
4470/// like NSLog or printf.
4471void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
4472  if (FD->isInvalidDecl())
4473    return;
4474
4475  // If this is a built-in function, map its builtin attributes to
4476  // actual attributes.
4477  if (unsigned BuiltinID = FD->getBuiltinID()) {
4478    // Handle printf-formatting attributes.
4479    unsigned FormatIdx;
4480    bool HasVAListArg;
4481    if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
4482      if (!FD->getAttr<FormatAttr>())
4483        FD->addAttr(::new (Context) FormatAttr(Context, "printf", FormatIdx+1,
4484                                               HasVAListArg ? 0 : FormatIdx+2));
4485    }
4486
4487    // Mark const if we don't care about errno and that is the only
4488    // thing preventing the function from being const. This allows
4489    // IRgen to use LLVM intrinsics for such functions.
4490    if (!getLangOptions().MathErrno &&
4491        Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
4492      if (!FD->getAttr<ConstAttr>())
4493        FD->addAttr(::new (Context) ConstAttr());
4494    }
4495
4496    if (Context.BuiltinInfo.isNoReturn(BuiltinID))
4497      FD->setType(Context.getNoReturnType(FD->getType()));
4498    if (Context.BuiltinInfo.isNoThrow(BuiltinID))
4499      FD->addAttr(::new (Context) NoThrowAttr());
4500    if (Context.BuiltinInfo.isConst(BuiltinID))
4501      FD->addAttr(::new (Context) ConstAttr());
4502  }
4503
4504  IdentifierInfo *Name = FD->getIdentifier();
4505  if (!Name)
4506    return;
4507  if ((!getLangOptions().CPlusPlus &&
4508       FD->getDeclContext()->isTranslationUnit()) ||
4509      (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
4510       cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
4511       LinkageSpecDecl::lang_c)) {
4512    // Okay: this could be a libc/libm/Objective-C function we know
4513    // about.
4514  } else
4515    return;
4516
4517  if (Name->isStr("NSLog") || Name->isStr("NSLogv")) {
4518    // FIXME: NSLog and NSLogv should be target specific
4519    if (const FormatAttr *Format = FD->getAttr<FormatAttr>()) {
4520      // FIXME: We known better than our headers.
4521      const_cast<FormatAttr *>(Format)->setType(Context, "printf");
4522    } else
4523      FD->addAttr(::new (Context) FormatAttr(Context, "printf", 1,
4524                                             Name->isStr("NSLogv") ? 0 : 2));
4525  } else if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
4526    // FIXME: asprintf and vasprintf aren't C99 functions. Should they be
4527    // target-specific builtins, perhaps?
4528    if (!FD->getAttr<FormatAttr>())
4529      FD->addAttr(::new (Context) FormatAttr(Context, "printf", 2,
4530                                             Name->isStr("vasprintf") ? 0 : 3));
4531  }
4532}
4533
4534TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
4535                                    TypeSourceInfo *TInfo) {
4536  assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
4537  assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
4538
4539  if (!TInfo) {
4540    assert(D.isInvalidType() && "no declarator info for valid type");
4541    TInfo = Context.getTrivialTypeSourceInfo(T);
4542  }
4543
4544  // Scope manipulation handled by caller.
4545  TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
4546                                           D.getIdentifierLoc(),
4547                                           D.getIdentifier(),
4548                                           TInfo);
4549
4550  if (const TagType *TT = T->getAs<TagType>()) {
4551    TagDecl *TD = TT->getDecl();
4552
4553    // If the TagDecl that the TypedefDecl points to is an anonymous decl
4554    // keep track of the TypedefDecl.
4555    if (!TD->getIdentifier() && !TD->getTypedefForAnonDecl())
4556      TD->setTypedefForAnonDecl(NewTD);
4557  }
4558
4559  if (D.isInvalidType())
4560    NewTD->setInvalidDecl();
4561  return NewTD;
4562}
4563
4564
4565/// \brief Determine whether a tag with a given kind is acceptable
4566/// as a redeclaration of the given tag declaration.
4567///
4568/// \returns true if the new tag kind is acceptable, false otherwise.
4569bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
4570                                        TagDecl::TagKind NewTag,
4571                                        SourceLocation NewTagLoc,
4572                                        const IdentifierInfo &Name) {
4573  // C++ [dcl.type.elab]p3:
4574  //   The class-key or enum keyword present in the
4575  //   elaborated-type-specifier shall agree in kind with the
4576  //   declaration to which the name in theelaborated-type-specifier
4577  //   refers. This rule also applies to the form of
4578  //   elaborated-type-specifier that declares a class-name or
4579  //   friend class since it can be construed as referring to the
4580  //   definition of the class. Thus, in any
4581  //   elaborated-type-specifier, the enum keyword shall be used to
4582  //   refer to an enumeration (7.2), the union class-keyshall be
4583  //   used to refer to a union (clause 9), and either the class or
4584  //   struct class-key shall be used to refer to a class (clause 9)
4585  //   declared using the class or struct class-key.
4586  TagDecl::TagKind OldTag = Previous->getTagKind();
4587  if (OldTag == NewTag)
4588    return true;
4589
4590  if ((OldTag == TagDecl::TK_struct || OldTag == TagDecl::TK_class) &&
4591      (NewTag == TagDecl::TK_struct || NewTag == TagDecl::TK_class)) {
4592    // Warn about the struct/class tag mismatch.
4593    bool isTemplate = false;
4594    if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
4595      isTemplate = Record->getDescribedClassTemplate();
4596
4597    Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
4598      << (NewTag == TagDecl::TK_class)
4599      << isTemplate << &Name
4600      << CodeModificationHint::CreateReplacement(SourceRange(NewTagLoc),
4601                              OldTag == TagDecl::TK_class? "class" : "struct");
4602    Diag(Previous->getLocation(), diag::note_previous_use);
4603    return true;
4604  }
4605  return false;
4606}
4607
4608/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'.  In the
4609/// former case, Name will be non-null.  In the later case, Name will be null.
4610/// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
4611/// reference/declaration/definition of a tag.
4612Sema::DeclPtrTy Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
4613                               SourceLocation KWLoc, const CXXScopeSpec &SS,
4614                               IdentifierInfo *Name, SourceLocation NameLoc,
4615                               AttributeList *Attr, AccessSpecifier AS,
4616                               MultiTemplateParamsArg TemplateParameterLists,
4617                               bool &OwnedDecl, bool &IsDependent) {
4618  // If this is not a definition, it must have a name.
4619  assert((Name != 0 || TUK == TUK_Definition) &&
4620         "Nameless record must be a definition!");
4621
4622  OwnedDecl = false;
4623  TagDecl::TagKind Kind = TagDecl::getTagKindForTypeSpec(TagSpec);
4624
4625  // FIXME: Check explicit specializations more carefully.
4626  bool isExplicitSpecialization = false;
4627  if (TUK != TUK_Reference) {
4628    if (TemplateParameterList *TemplateParams
4629          = MatchTemplateParametersToScopeSpecifier(KWLoc, SS,
4630                        (TemplateParameterList**)TemplateParameterLists.get(),
4631                                              TemplateParameterLists.size(),
4632                                                    isExplicitSpecialization)) {
4633      if (TemplateParams->size() > 0) {
4634        // This is a declaration or definition of a class template (which may
4635        // be a member of another template).
4636        OwnedDecl = false;
4637        DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc,
4638                                               SS, Name, NameLoc, Attr,
4639                                               TemplateParams,
4640                                               AS);
4641        TemplateParameterLists.release();
4642        return Result.get();
4643      } else {
4644        // The "template<>" header is extraneous.
4645        Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
4646          << ElaboratedType::getNameForTagKind(Kind) << Name;
4647        isExplicitSpecialization = true;
4648      }
4649    }
4650
4651    TemplateParameterLists.release();
4652  }
4653
4654  DeclContext *SearchDC = CurContext;
4655  DeclContext *DC = CurContext;
4656  bool isStdBadAlloc = false;
4657  bool Invalid = false;
4658
4659  RedeclarationKind Redecl = ForRedeclaration;
4660  if (TUK == TUK_Friend || TUK == TUK_Reference)
4661    Redecl = NotForRedeclaration;
4662
4663  LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
4664
4665  if (Name && SS.isNotEmpty()) {
4666    // We have a nested-name tag ('struct foo::bar').
4667
4668    // Check for invalid 'foo::'.
4669    if (SS.isInvalid()) {
4670      Name = 0;
4671      goto CreateNewDecl;
4672    }
4673
4674    // If this is a friend or a reference to a class in a dependent
4675    // context, don't try to make a decl for it.
4676    if (TUK == TUK_Friend || TUK == TUK_Reference) {
4677      DC = computeDeclContext(SS, false);
4678      if (!DC) {
4679        IsDependent = true;
4680        return DeclPtrTy();
4681      }
4682    }
4683
4684    if (RequireCompleteDeclContext(SS))
4685      return DeclPtrTy::make((Decl *)0);
4686
4687    DC = computeDeclContext(SS, true);
4688    SearchDC = DC;
4689    // Look-up name inside 'foo::'.
4690    LookupQualifiedName(Previous, DC);
4691
4692    if (Previous.isAmbiguous())
4693      return DeclPtrTy();
4694
4695    if (Previous.empty()) {
4696      // Name lookup did not find anything. However, if the
4697      // nested-name-specifier refers to the current instantiation,
4698      // and that current instantiation has any dependent base
4699      // classes, we might find something at instantiation time: treat
4700      // this as a dependent elaborated-type-specifier.
4701      if (Previous.wasNotFoundInCurrentInstantiation()) {
4702        IsDependent = true;
4703        return DeclPtrTy();
4704      }
4705
4706      // A tag 'foo::bar' must already exist.
4707      Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
4708      Name = 0;
4709      Invalid = true;
4710      goto CreateNewDecl;
4711    }
4712  } else if (Name) {
4713    // If this is a named struct, check to see if there was a previous forward
4714    // declaration or definition.
4715    // FIXME: We're looking into outer scopes here, even when we
4716    // shouldn't be. Doing so can result in ambiguities that we
4717    // shouldn't be diagnosing.
4718    LookupName(Previous, S);
4719
4720    // Note:  there used to be some attempt at recovery here.
4721    if (Previous.isAmbiguous())
4722      return DeclPtrTy();
4723
4724    if (!getLangOptions().CPlusPlus && TUK != TUK_Reference) {
4725      // FIXME: This makes sure that we ignore the contexts associated
4726      // with C structs, unions, and enums when looking for a matching
4727      // tag declaration or definition. See the similar lookup tweak
4728      // in Sema::LookupName; is there a better way to deal with this?
4729      while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
4730        SearchDC = SearchDC->getParent();
4731    }
4732  }
4733
4734  if (Previous.isSingleResult() &&
4735      Previous.getFoundDecl()->isTemplateParameter()) {
4736    // Maybe we will complain about the shadowed template parameter.
4737    DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
4738    // Just pretend that we didn't see the previous declaration.
4739    Previous.clear();
4740  }
4741
4742  if (getLangOptions().CPlusPlus && Name && DC && StdNamespace &&
4743      DC->Equals(StdNamespace) && Name->isStr("bad_alloc")) {
4744    // This is a declaration of or a reference to "std::bad_alloc".
4745    isStdBadAlloc = true;
4746
4747    if (Previous.empty() && StdBadAlloc) {
4748      // std::bad_alloc has been implicitly declared (but made invisible to
4749      // name lookup). Fill in this implicit declaration as the previous
4750      // declaration, so that the declarations get chained appropriately.
4751      Previous.addDecl(StdBadAlloc);
4752    }
4753  }
4754
4755  if (!Previous.empty()) {
4756    assert(Previous.isSingleResult());
4757    NamedDecl *PrevDecl = Previous.getFoundDecl();
4758    if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
4759      // If this is a use of a previous tag, or if the tag is already declared
4760      // in the same scope (so that the definition/declaration completes or
4761      // rementions the tag), reuse the decl.
4762      if (TUK == TUK_Reference || TUK == TUK_Friend ||
4763          isDeclInScope(PrevDecl, SearchDC, S)) {
4764        // Make sure that this wasn't declared as an enum and now used as a
4765        // struct or something similar.
4766        if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind, KWLoc, *Name)) {
4767          bool SafeToContinue
4768            = (PrevTagDecl->getTagKind() != TagDecl::TK_enum &&
4769               Kind != TagDecl::TK_enum);
4770          if (SafeToContinue)
4771            Diag(KWLoc, diag::err_use_with_wrong_tag)
4772              << Name
4773              << CodeModificationHint::CreateReplacement(SourceRange(KWLoc),
4774                                                  PrevTagDecl->getKindName());
4775          else
4776            Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
4777          Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
4778
4779          if (SafeToContinue)
4780            Kind = PrevTagDecl->getTagKind();
4781          else {
4782            // Recover by making this an anonymous redefinition.
4783            Name = 0;
4784            Previous.clear();
4785            Invalid = true;
4786          }
4787        }
4788
4789        if (!Invalid) {
4790          // If this is a use, just return the declaration we found.
4791
4792          // FIXME: In the future, return a variant or some other clue
4793          // for the consumer of this Decl to know it doesn't own it.
4794          // For our current ASTs this shouldn't be a problem, but will
4795          // need to be changed with DeclGroups.
4796          if (TUK == TUK_Reference || TUK == TUK_Friend)
4797            return DeclPtrTy::make(PrevTagDecl);
4798
4799          // Diagnose attempts to redefine a tag.
4800          if (TUK == TUK_Definition) {
4801            if (TagDecl *Def = PrevTagDecl->getDefinition()) {
4802              // If we're defining a specialization and the previous definition
4803              // is from an implicit instantiation, don't emit an error
4804              // here; we'll catch this in the general case below.
4805              if (!isExplicitSpecialization ||
4806                  !isa<CXXRecordDecl>(Def) ||
4807                  cast<CXXRecordDecl>(Def)->getTemplateSpecializationKind()
4808                                               == TSK_ExplicitSpecialization) {
4809                Diag(NameLoc, diag::err_redefinition) << Name;
4810                Diag(Def->getLocation(), diag::note_previous_definition);
4811                // If this is a redefinition, recover by making this
4812                // struct be anonymous, which will make any later
4813                // references get the previous definition.
4814                Name = 0;
4815                Previous.clear();
4816                Invalid = true;
4817              }
4818            } else {
4819              // If the type is currently being defined, complain
4820              // about a nested redefinition.
4821              TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
4822              if (Tag->isBeingDefined()) {
4823                Diag(NameLoc, diag::err_nested_redefinition) << Name;
4824                Diag(PrevTagDecl->getLocation(),
4825                     diag::note_previous_definition);
4826                Name = 0;
4827                Previous.clear();
4828                Invalid = true;
4829              }
4830            }
4831
4832            // Okay, this is definition of a previously declared or referenced
4833            // tag PrevDecl. We're going to create a new Decl for it.
4834          }
4835        }
4836        // If we get here we have (another) forward declaration or we
4837        // have a definition.  Just create a new decl.
4838
4839      } else {
4840        // If we get here, this is a definition of a new tag type in a nested
4841        // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
4842        // new decl/type.  We set PrevDecl to NULL so that the entities
4843        // have distinct types.
4844        Previous.clear();
4845      }
4846      // If we get here, we're going to create a new Decl. If PrevDecl
4847      // is non-NULL, it's a definition of the tag declared by
4848      // PrevDecl. If it's NULL, we have a new definition.
4849    } else {
4850      // PrevDecl is a namespace, template, or anything else
4851      // that lives in the IDNS_Tag identifier namespace.
4852      if (isDeclInScope(PrevDecl, SearchDC, S)) {
4853        // The tag name clashes with a namespace name, issue an error and
4854        // recover by making this tag be anonymous.
4855        Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
4856        Diag(PrevDecl->getLocation(), diag::note_previous_definition);
4857        Name = 0;
4858        Previous.clear();
4859        Invalid = true;
4860      } else {
4861        // The existing declaration isn't relevant to us; we're in a
4862        // new scope, so clear out the previous declaration.
4863        Previous.clear();
4864      }
4865    }
4866  } else if (TUK == TUK_Reference && SS.isEmpty() && Name) {
4867    // C++ [basic.scope.pdecl]p5:
4868    //   -- for an elaborated-type-specifier of the form
4869    //
4870    //          class-key identifier
4871    //
4872    //      if the elaborated-type-specifier is used in the
4873    //      decl-specifier-seq or parameter-declaration-clause of a
4874    //      function defined in namespace scope, the identifier is
4875    //      declared as a class-name in the namespace that contains
4876    //      the declaration; otherwise, except as a friend
4877    //      declaration, the identifier is declared in the smallest
4878    //      non-class, non-function-prototype scope that contains the
4879    //      declaration.
4880    //
4881    // C99 6.7.2.3p8 has a similar (but not identical!) provision for
4882    // C structs and unions.
4883    //
4884    // It is an error in C++ to declare (rather than define) an enum
4885    // type, including via an elaborated type specifier.  We'll
4886    // diagnose that later; for now, declare the enum in the same
4887    // scope as we would have picked for any other tag type.
4888    //
4889    // GNU C also supports this behavior as part of its incomplete
4890    // enum types extension, while GNU C++ does not.
4891    //
4892    // Find the context where we'll be declaring the tag.
4893    // FIXME: We would like to maintain the current DeclContext as the
4894    // lexical context,
4895    while (SearchDC->isRecord())
4896      SearchDC = SearchDC->getParent();
4897
4898    // Find the scope where we'll be declaring the tag.
4899    while (S->isClassScope() ||
4900           (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
4901           ((S->getFlags() & Scope::DeclScope) == 0) ||
4902           (S->getEntity() &&
4903            ((DeclContext *)S->getEntity())->isTransparentContext()))
4904      S = S->getParent();
4905
4906  } else if (TUK == TUK_Friend && SS.isEmpty() && Name) {
4907    // C++ [namespace.memdef]p3:
4908    //   If a friend declaration in a non-local class first declares a
4909    //   class or function, the friend class or function is a member of
4910    //   the innermost enclosing namespace.
4911    SearchDC = SearchDC->getEnclosingNamespaceContext();
4912
4913    // Look up through our scopes until we find one with an entity which
4914    // matches our declaration context.
4915    while (S->getEntity() &&
4916           ((DeclContext *)S->getEntity())->getPrimaryContext() != SearchDC) {
4917      S = S->getParent();
4918      assert(S && "No enclosing scope matching the enclosing namespace.");
4919    }
4920  }
4921
4922CreateNewDecl:
4923
4924  TagDecl *PrevDecl = 0;
4925  if (Previous.isSingleResult())
4926    PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
4927
4928  // If there is an identifier, use the location of the identifier as the
4929  // location of the decl, otherwise use the location of the struct/union
4930  // keyword.
4931  SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
4932
4933  // Otherwise, create a new declaration. If there is a previous
4934  // declaration of the same entity, the two will be linked via
4935  // PrevDecl.
4936  TagDecl *New;
4937
4938  if (Kind == TagDecl::TK_enum) {
4939    // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
4940    // enum X { A, B, C } D;    D should chain to X.
4941    New = EnumDecl::Create(Context, SearchDC, Loc, Name, KWLoc,
4942                           cast_or_null<EnumDecl>(PrevDecl));
4943    // If this is an undefined enum, warn.
4944    if (TUK != TUK_Definition && !Invalid)  {
4945      unsigned DK = getLangOptions().CPlusPlus? diag::err_forward_ref_enum
4946                                              : diag::ext_forward_ref_enum;
4947      Diag(Loc, DK);
4948    }
4949  } else {
4950    // struct/union/class
4951
4952    // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
4953    // struct X { int A; } D;    D should chain to X.
4954    if (getLangOptions().CPlusPlus) {
4955      // FIXME: Look for a way to use RecordDecl for simple structs.
4956      New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name, KWLoc,
4957                                  cast_or_null<CXXRecordDecl>(PrevDecl));
4958
4959      if (isStdBadAlloc && (!StdBadAlloc || StdBadAlloc->isImplicit()))
4960        StdBadAlloc = cast<CXXRecordDecl>(New);
4961    } else
4962      New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name, KWLoc,
4963                               cast_or_null<RecordDecl>(PrevDecl));
4964  }
4965
4966  // Maybe add qualifier info.
4967  if (SS.isNotEmpty()) {
4968    NestedNameSpecifier *NNS
4969      = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
4970    New->setQualifierInfo(NNS, SS.getRange());
4971  }
4972
4973  if (Kind != TagDecl::TK_enum) {
4974    // Handle #pragma pack: if the #pragma pack stack has non-default
4975    // alignment, make up a packed attribute for this decl. These
4976    // attributes are checked when the ASTContext lays out the
4977    // structure.
4978    //
4979    // It is important for implementing the correct semantics that this
4980    // happen here (in act on tag decl). The #pragma pack stack is
4981    // maintained as a result of parser callbacks which can occur at
4982    // many points during the parsing of a struct declaration (because
4983    // the #pragma tokens are effectively skipped over during the
4984    // parsing of the struct).
4985    if (unsigned Alignment = getPragmaPackAlignment())
4986      New->addAttr(::new (Context) PragmaPackAttr(Alignment * 8));
4987  }
4988
4989  if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
4990    // C++ [dcl.typedef]p3:
4991    //   [...] Similarly, in a given scope, a class or enumeration
4992    //   shall not be declared with the same name as a typedef-name
4993    //   that is declared in that scope and refers to a type other
4994    //   than the class or enumeration itself.
4995    LookupResult Lookup(*this, Name, NameLoc, LookupOrdinaryName,
4996                        ForRedeclaration);
4997    LookupName(Lookup, S);
4998    TypedefDecl *PrevTypedef = Lookup.getAsSingle<TypedefDecl>();
4999    NamedDecl *PrevTypedefNamed = PrevTypedef;
5000    if (PrevTypedef && isDeclInScope(PrevTypedefNamed, SearchDC, S) &&
5001        Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
5002          Context.getCanonicalType(Context.getTypeDeclType(New))) {
5003      Diag(Loc, diag::err_tag_definition_of_typedef)
5004        << Context.getTypeDeclType(New)
5005        << PrevTypedef->getUnderlyingType();
5006      Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
5007      Invalid = true;
5008    }
5009  }
5010
5011  // If this is a specialization of a member class (of a class template),
5012  // check the specialization.
5013  if (isExplicitSpecialization && CheckMemberSpecialization(New, Previous))
5014    Invalid = true;
5015
5016  if (Invalid)
5017    New->setInvalidDecl();
5018
5019  if (Attr)
5020    ProcessDeclAttributeList(S, New, Attr);
5021
5022  // If we're declaring or defining a tag in function prototype scope
5023  // in C, note that this type can only be used within the function.
5024  if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
5025    Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
5026
5027  // Set the lexical context. If the tag has a C++ scope specifier, the
5028  // lexical context will be different from the semantic context.
5029  New->setLexicalDeclContext(CurContext);
5030
5031  // Mark this as a friend decl if applicable.
5032  if (TUK == TUK_Friend)
5033    New->setObjectOfFriendDecl(/* PreviouslyDeclared = */ !Previous.empty());
5034
5035  // Set the access specifier.
5036  if (!Invalid && TUK != TUK_Friend)
5037    SetMemberAccessSpecifier(New, PrevDecl, AS);
5038
5039  if (TUK == TUK_Definition)
5040    New->startDefinition();
5041
5042  // If this has an identifier, add it to the scope stack.
5043  if (TUK == TUK_Friend) {
5044    // We might be replacing an existing declaration in the lookup tables;
5045    // if so, borrow its access specifier.
5046    if (PrevDecl)
5047      New->setAccess(PrevDecl->getAccess());
5048
5049    // Friend tag decls are visible in fairly strange ways.
5050    if (!CurContext->isDependentContext()) {
5051      DeclContext *DC = New->getDeclContext()->getLookupContext();
5052      DC->makeDeclVisibleInContext(New, /* Recoverable = */ false);
5053      if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
5054        PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
5055    }
5056  } else if (Name) {
5057    S = getNonFieldDeclScope(S);
5058    PushOnScopeChains(New, S);
5059  } else {
5060    CurContext->addDecl(New);
5061  }
5062
5063  // If this is the C FILE type, notify the AST context.
5064  if (IdentifierInfo *II = New->getIdentifier())
5065    if (!New->isInvalidDecl() &&
5066        New->getDeclContext()->getLookupContext()->isTranslationUnit() &&
5067        II->isStr("FILE"))
5068      Context.setFILEDecl(New);
5069
5070  OwnedDecl = true;
5071  return DeclPtrTy::make(New);
5072}
5073
5074void Sema::ActOnTagStartDefinition(Scope *S, DeclPtrTy TagD) {
5075  AdjustDeclIfTemplate(TagD);
5076  TagDecl *Tag = cast<TagDecl>(TagD.getAs<Decl>());
5077
5078  // Enter the tag context.
5079  PushDeclContext(S, Tag);
5080}
5081
5082void Sema::ActOnStartCXXMemberDeclarations(Scope *S, DeclPtrTy TagD,
5083                                           SourceLocation LBraceLoc) {
5084  AdjustDeclIfTemplate(TagD);
5085  CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD.getAs<Decl>());
5086
5087  FieldCollector->StartClass();
5088
5089  if (!Record->getIdentifier())
5090    return;
5091
5092  // C++ [class]p2:
5093  //   [...] The class-name is also inserted into the scope of the
5094  //   class itself; this is known as the injected-class-name. For
5095  //   purposes of access checking, the injected-class-name is treated
5096  //   as if it were a public member name.
5097  CXXRecordDecl *InjectedClassName
5098    = CXXRecordDecl::Create(Context, Record->getTagKind(),
5099                            CurContext, Record->getLocation(),
5100                            Record->getIdentifier(),
5101                            Record->getTagKeywordLoc(),
5102                            Record);
5103  InjectedClassName->setImplicit();
5104  InjectedClassName->setAccess(AS_public);
5105  if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
5106      InjectedClassName->setDescribedClassTemplate(Template);
5107  PushOnScopeChains(InjectedClassName, S);
5108  assert(InjectedClassName->isInjectedClassName() &&
5109         "Broken injected-class-name");
5110}
5111
5112// Traverses the class and any nested classes, making a note of any
5113// dynamic classes that have no key function so that we can mark all of
5114// their virtual member functions as "used" at the end of the translation
5115// unit. This ensures that all functions needed by the vtable will get
5116// instantiated/synthesized.
5117static void
5118RecordDynamicClassesWithNoKeyFunction(Sema &S, CXXRecordDecl *Record,
5119                                      SourceLocation Loc) {
5120  // We don't look at dependent or undefined classes.
5121  if (Record->isDependentContext() || !Record->isDefinition())
5122    return;
5123
5124  if (Record->isDynamicClass()) {
5125    const CXXMethodDecl *KeyFunction = S.Context.getKeyFunction(Record);
5126
5127    if (!KeyFunction)
5128      S.ClassesWithUnmarkedVirtualMembers.push_back(std::make_pair(Record,
5129                                                                   Loc));
5130
5131    if ((!KeyFunction || (KeyFunction->getBody() && KeyFunction->isInlined()))
5132        && Record->getLinkage() == ExternalLinkage)
5133      S.Diag(Record->getLocation(), diag::warn_weak_vtable) << Record;
5134  }
5135  for (DeclContext::decl_iterator D = Record->decls_begin(),
5136                               DEnd = Record->decls_end();
5137       D != DEnd; ++D) {
5138    if (CXXRecordDecl *Nested = dyn_cast<CXXRecordDecl>(*D))
5139      RecordDynamicClassesWithNoKeyFunction(S, Nested, Loc);
5140  }
5141}
5142
5143void Sema::ActOnTagFinishDefinition(Scope *S, DeclPtrTy TagD,
5144                                    SourceLocation RBraceLoc) {
5145  AdjustDeclIfTemplate(TagD);
5146  TagDecl *Tag = cast<TagDecl>(TagD.getAs<Decl>());
5147  Tag->setRBraceLoc(RBraceLoc);
5148
5149  if (isa<CXXRecordDecl>(Tag))
5150    FieldCollector->FinishClass();
5151
5152  // Exit this scope of this tag's definition.
5153  PopDeclContext();
5154
5155  if (isa<CXXRecordDecl>(Tag) && !Tag->getLexicalDeclContext()->isRecord())
5156    RecordDynamicClassesWithNoKeyFunction(*this, cast<CXXRecordDecl>(Tag),
5157                                          RBraceLoc);
5158
5159  // Notify the consumer that we've defined a tag.
5160  Consumer.HandleTagDeclDefinition(Tag);
5161}
5162
5163void Sema::ActOnTagDefinitionError(Scope *S, DeclPtrTy TagD) {
5164  AdjustDeclIfTemplate(TagD);
5165  TagDecl *Tag = cast<TagDecl>(TagD.getAs<Decl>());
5166  Tag->setInvalidDecl();
5167
5168  // We're undoing ActOnTagStartDefinition here, not
5169  // ActOnStartCXXMemberDeclarations, so we don't have to mess with
5170  // the FieldCollector.
5171
5172  PopDeclContext();
5173}
5174
5175// Note that FieldName may be null for anonymous bitfields.
5176bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
5177                          QualType FieldTy, const Expr *BitWidth,
5178                          bool *ZeroWidth) {
5179  // Default to true; that shouldn't confuse checks for emptiness
5180  if (ZeroWidth)
5181    *ZeroWidth = true;
5182
5183  // C99 6.7.2.1p4 - verify the field type.
5184  // C++ 9.6p3: A bit-field shall have integral or enumeration type.
5185  if (!FieldTy->isDependentType() && !FieldTy->isIntegralType()) {
5186    // Handle incomplete types with specific error.
5187    if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
5188      return true;
5189    if (FieldName)
5190      return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
5191        << FieldName << FieldTy << BitWidth->getSourceRange();
5192    return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
5193      << FieldTy << BitWidth->getSourceRange();
5194  }
5195
5196  // If the bit-width is type- or value-dependent, don't try to check
5197  // it now.
5198  if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
5199    return false;
5200
5201  llvm::APSInt Value;
5202  if (VerifyIntegerConstantExpression(BitWidth, &Value))
5203    return true;
5204
5205  if (Value != 0 && ZeroWidth)
5206    *ZeroWidth = false;
5207
5208  // Zero-width bitfield is ok for anonymous field.
5209  if (Value == 0 && FieldName)
5210    return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
5211
5212  if (Value.isSigned() && Value.isNegative()) {
5213    if (FieldName)
5214      return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
5215               << FieldName << Value.toString(10);
5216    return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
5217      << Value.toString(10);
5218  }
5219
5220  if (!FieldTy->isDependentType()) {
5221    uint64_t TypeSize = Context.getTypeSize(FieldTy);
5222    if (Value.getZExtValue() > TypeSize) {
5223      if (FieldName)
5224        return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
5225          << FieldName << (unsigned)TypeSize;
5226      return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_size)
5227        << (unsigned)TypeSize;
5228    }
5229  }
5230
5231  return false;
5232}
5233
5234/// ActOnField - Each field of a struct/union/class is passed into this in order
5235/// to create a FieldDecl object for it.
5236Sema::DeclPtrTy Sema::ActOnField(Scope *S, DeclPtrTy TagD,
5237                                 SourceLocation DeclStart,
5238                                 Declarator &D, ExprTy *BitfieldWidth) {
5239  FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD.getAs<Decl>()),
5240                               DeclStart, D, static_cast<Expr*>(BitfieldWidth),
5241                               AS_public);
5242  return DeclPtrTy::make(Res);
5243}
5244
5245/// HandleField - Analyze a field of a C struct or a C++ data member.
5246///
5247FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
5248                             SourceLocation DeclStart,
5249                             Declarator &D, Expr *BitWidth,
5250                             AccessSpecifier AS) {
5251  IdentifierInfo *II = D.getIdentifier();
5252  SourceLocation Loc = DeclStart;
5253  if (II) Loc = D.getIdentifierLoc();
5254
5255  TypeSourceInfo *TInfo = 0;
5256  QualType T = GetTypeForDeclarator(D, S, &TInfo);
5257  if (getLangOptions().CPlusPlus)
5258    CheckExtraCXXDefaultArguments(D);
5259
5260  DiagnoseFunctionSpecifiers(D);
5261
5262  if (D.getDeclSpec().isThreadSpecified())
5263    Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
5264
5265  NamedDecl *PrevDecl = LookupSingleName(S, II, LookupMemberName,
5266                                         ForRedeclaration);
5267
5268  if (PrevDecl && PrevDecl->isTemplateParameter()) {
5269    // Maybe we will complain about the shadowed template parameter.
5270    DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
5271    // Just pretend that we didn't see the previous declaration.
5272    PrevDecl = 0;
5273  }
5274
5275  if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
5276    PrevDecl = 0;
5277
5278  bool Mutable
5279    = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
5280  SourceLocation TSSL = D.getSourceRange().getBegin();
5281  FieldDecl *NewFD
5282    = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, TSSL,
5283                     AS, PrevDecl, &D);
5284
5285  if (NewFD->isInvalidDecl())
5286    Record->setInvalidDecl();
5287
5288  if (NewFD->isInvalidDecl() && PrevDecl) {
5289    // Don't introduce NewFD into scope; there's already something
5290    // with the same name in the same scope.
5291  } else if (II) {
5292    PushOnScopeChains(NewFD, S);
5293  } else
5294    Record->addDecl(NewFD);
5295
5296  return NewFD;
5297}
5298
5299/// \brief Build a new FieldDecl and check its well-formedness.
5300///
5301/// This routine builds a new FieldDecl given the fields name, type,
5302/// record, etc. \p PrevDecl should refer to any previous declaration
5303/// with the same name and in the same scope as the field to be
5304/// created.
5305///
5306/// \returns a new FieldDecl.
5307///
5308/// \todo The Declarator argument is a hack. It will be removed once
5309FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
5310                                TypeSourceInfo *TInfo,
5311                                RecordDecl *Record, SourceLocation Loc,
5312                                bool Mutable, Expr *BitWidth,
5313                                SourceLocation TSSL,
5314                                AccessSpecifier AS, NamedDecl *PrevDecl,
5315                                Declarator *D) {
5316  IdentifierInfo *II = Name.getAsIdentifierInfo();
5317  bool InvalidDecl = false;
5318  if (D) InvalidDecl = D->isInvalidType();
5319
5320  // If we receive a broken type, recover by assuming 'int' and
5321  // marking this declaration as invalid.
5322  if (T.isNull()) {
5323    InvalidDecl = true;
5324    T = Context.IntTy;
5325  }
5326
5327  QualType EltTy = Context.getBaseElementType(T);
5328  if (!EltTy->isDependentType() &&
5329      RequireCompleteType(Loc, EltTy, diag::err_field_incomplete))
5330    InvalidDecl = true;
5331
5332  // C99 6.7.2.1p8: A member of a structure or union may have any type other
5333  // than a variably modified type.
5334  if (!InvalidDecl && T->isVariablyModifiedType()) {
5335    bool SizeIsNegative;
5336    QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context,
5337                                                           SizeIsNegative);
5338    if (!FixedTy.isNull()) {
5339      Diag(Loc, diag::warn_illegal_constant_array_size);
5340      T = FixedTy;
5341    } else {
5342      if (SizeIsNegative)
5343        Diag(Loc, diag::err_typecheck_negative_array_size);
5344      else
5345        Diag(Loc, diag::err_typecheck_field_variable_size);
5346      InvalidDecl = true;
5347    }
5348  }
5349
5350  // Fields can not have abstract class types
5351  if (!InvalidDecl && RequireNonAbstractType(Loc, T,
5352                                             diag::err_abstract_type_in_decl,
5353                                             AbstractFieldType))
5354    InvalidDecl = true;
5355
5356  bool ZeroWidth = false;
5357  // If this is declared as a bit-field, check the bit-field.
5358  if (!InvalidDecl && BitWidth &&
5359      VerifyBitField(Loc, II, T, BitWidth, &ZeroWidth)) {
5360    InvalidDecl = true;
5361    DeleteExpr(BitWidth);
5362    BitWidth = 0;
5363    ZeroWidth = false;
5364  }
5365
5366  FieldDecl *NewFD = FieldDecl::Create(Context, Record, Loc, II, T, TInfo,
5367                                       BitWidth, Mutable);
5368  if (InvalidDecl)
5369    NewFD->setInvalidDecl();
5370
5371  if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
5372    Diag(Loc, diag::err_duplicate_member) << II;
5373    Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
5374    NewFD->setInvalidDecl();
5375  }
5376
5377  if (!InvalidDecl && getLangOptions().CPlusPlus) {
5378    CXXRecordDecl* CXXRecord = cast<CXXRecordDecl>(Record);
5379
5380    if (!T->isPODType())
5381      CXXRecord->setPOD(false);
5382    if (!ZeroWidth)
5383      CXXRecord->setEmpty(false);
5384
5385    if (const RecordType *RT = EltTy->getAs<RecordType>()) {
5386      CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
5387
5388      if (!RDecl->hasTrivialConstructor())
5389        CXXRecord->setHasTrivialConstructor(false);
5390      if (!RDecl->hasTrivialCopyConstructor())
5391        CXXRecord->setHasTrivialCopyConstructor(false);
5392      if (!RDecl->hasTrivialCopyAssignment())
5393        CXXRecord->setHasTrivialCopyAssignment(false);
5394      if (!RDecl->hasTrivialDestructor())
5395        CXXRecord->setHasTrivialDestructor(false);
5396
5397      // C++ 9.5p1: An object of a class with a non-trivial
5398      // constructor, a non-trivial copy constructor, a non-trivial
5399      // destructor, or a non-trivial copy assignment operator
5400      // cannot be a member of a union, nor can an array of such
5401      // objects.
5402      // TODO: C++0x alters this restriction significantly.
5403      if (Record->isUnion()) {
5404        // We check for copy constructors before constructors
5405        // because otherwise we'll never get complaints about
5406        // copy constructors.
5407
5408        const CXXSpecialMember invalid = (CXXSpecialMember) -1;
5409
5410        CXXSpecialMember member;
5411        if (!RDecl->hasTrivialCopyConstructor())
5412          member = CXXCopyConstructor;
5413        else if (!RDecl->hasTrivialConstructor())
5414          member = CXXDefaultConstructor;
5415        else if (!RDecl->hasTrivialCopyAssignment())
5416          member = CXXCopyAssignment;
5417        else if (!RDecl->hasTrivialDestructor())
5418          member = CXXDestructor;
5419        else
5420          member = invalid;
5421
5422        if (member != invalid) {
5423          Diag(Loc, diag::err_illegal_union_member) << Name << member;
5424          DiagnoseNontrivial(RT, member);
5425          NewFD->setInvalidDecl();
5426        }
5427      }
5428    }
5429  }
5430
5431  // FIXME: We need to pass in the attributes given an AST
5432  // representation, not a parser representation.
5433  if (D)
5434    // FIXME: What to pass instead of TUScope?
5435    ProcessDeclAttributes(TUScope, NewFD, *D);
5436
5437  if (T.isObjCGCWeak())
5438    Diag(Loc, diag::warn_attribute_weak_on_field);
5439
5440  NewFD->setAccess(AS);
5441
5442  // C++ [dcl.init.aggr]p1:
5443  //   An aggregate is an array or a class (clause 9) with [...] no
5444  //   private or protected non-static data members (clause 11).
5445  // A POD must be an aggregate.
5446  if (getLangOptions().CPlusPlus &&
5447      (AS == AS_private || AS == AS_protected)) {
5448    CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
5449    CXXRecord->setAggregate(false);
5450    CXXRecord->setPOD(false);
5451  }
5452
5453  return NewFD;
5454}
5455
5456/// DiagnoseNontrivial - Given that a class has a non-trivial
5457/// special member, figure out why.
5458void Sema::DiagnoseNontrivial(const RecordType* T, CXXSpecialMember member) {
5459  QualType QT(T, 0U);
5460  CXXRecordDecl* RD = cast<CXXRecordDecl>(T->getDecl());
5461
5462  // Check whether the member was user-declared.
5463  switch (member) {
5464  case CXXDefaultConstructor:
5465    if (RD->hasUserDeclaredConstructor()) {
5466      typedef CXXRecordDecl::ctor_iterator ctor_iter;
5467      for (ctor_iter ci = RD->ctor_begin(), ce = RD->ctor_end(); ci != ce;++ci){
5468        const FunctionDecl *body = 0;
5469        ci->getBody(body);
5470        if (!body ||
5471            !cast<CXXConstructorDecl>(body)->isImplicitlyDefined(Context)) {
5472          SourceLocation CtorLoc = ci->getLocation();
5473          Diag(CtorLoc, diag::note_nontrivial_user_defined) << QT << member;
5474          return;
5475        }
5476      }
5477
5478      assert(0 && "found no user-declared constructors");
5479      return;
5480    }
5481    break;
5482
5483  case CXXCopyConstructor:
5484    if (RD->hasUserDeclaredCopyConstructor()) {
5485      SourceLocation CtorLoc =
5486        RD->getCopyConstructor(Context, 0)->getLocation();
5487      Diag(CtorLoc, diag::note_nontrivial_user_defined) << QT << member;
5488      return;
5489    }
5490    break;
5491
5492  case CXXCopyAssignment:
5493    if (RD->hasUserDeclaredCopyAssignment()) {
5494      // FIXME: this should use the location of the copy
5495      // assignment, not the type.
5496      SourceLocation TyLoc = RD->getSourceRange().getBegin();
5497      Diag(TyLoc, diag::note_nontrivial_user_defined) << QT << member;
5498      return;
5499    }
5500    break;
5501
5502  case CXXDestructor:
5503    if (RD->hasUserDeclaredDestructor()) {
5504      SourceLocation DtorLoc = RD->getDestructor(Context)->getLocation();
5505      Diag(DtorLoc, diag::note_nontrivial_user_defined) << QT << member;
5506      return;
5507    }
5508    break;
5509  }
5510
5511  typedef CXXRecordDecl::base_class_iterator base_iter;
5512
5513  // Virtual bases and members inhibit trivial copying/construction,
5514  // but not trivial destruction.
5515  if (member != CXXDestructor) {
5516    // Check for virtual bases.  vbases includes indirect virtual bases,
5517    // so we just iterate through the direct bases.
5518    for (base_iter bi = RD->bases_begin(), be = RD->bases_end(); bi != be; ++bi)
5519      if (bi->isVirtual()) {
5520        SourceLocation BaseLoc = bi->getSourceRange().getBegin();
5521        Diag(BaseLoc, diag::note_nontrivial_has_virtual) << QT << 1;
5522        return;
5523      }
5524
5525    // Check for virtual methods.
5526    typedef CXXRecordDecl::method_iterator meth_iter;
5527    for (meth_iter mi = RD->method_begin(), me = RD->method_end(); mi != me;
5528         ++mi) {
5529      if (mi->isVirtual()) {
5530        SourceLocation MLoc = mi->getSourceRange().getBegin();
5531        Diag(MLoc, diag::note_nontrivial_has_virtual) << QT << 0;
5532        return;
5533      }
5534    }
5535  }
5536
5537  bool (CXXRecordDecl::*hasTrivial)() const;
5538  switch (member) {
5539  case CXXDefaultConstructor:
5540    hasTrivial = &CXXRecordDecl::hasTrivialConstructor; break;
5541  case CXXCopyConstructor:
5542    hasTrivial = &CXXRecordDecl::hasTrivialCopyConstructor; break;
5543  case CXXCopyAssignment:
5544    hasTrivial = &CXXRecordDecl::hasTrivialCopyAssignment; break;
5545  case CXXDestructor:
5546    hasTrivial = &CXXRecordDecl::hasTrivialDestructor; break;
5547  default:
5548    assert(0 && "unexpected special member"); return;
5549  }
5550
5551  // Check for nontrivial bases (and recurse).
5552  for (base_iter bi = RD->bases_begin(), be = RD->bases_end(); bi != be; ++bi) {
5553    const RecordType *BaseRT = bi->getType()->getAs<RecordType>();
5554    assert(BaseRT && "Don't know how to handle dependent bases");
5555    CXXRecordDecl *BaseRecTy = cast<CXXRecordDecl>(BaseRT->getDecl());
5556    if (!(BaseRecTy->*hasTrivial)()) {
5557      SourceLocation BaseLoc = bi->getSourceRange().getBegin();
5558      Diag(BaseLoc, diag::note_nontrivial_has_nontrivial) << QT << 1 << member;
5559      DiagnoseNontrivial(BaseRT, member);
5560      return;
5561    }
5562  }
5563
5564  // Check for nontrivial members (and recurse).
5565  typedef RecordDecl::field_iterator field_iter;
5566  for (field_iter fi = RD->field_begin(), fe = RD->field_end(); fi != fe;
5567       ++fi) {
5568    QualType EltTy = Context.getBaseElementType((*fi)->getType());
5569    if (const RecordType *EltRT = EltTy->getAs<RecordType>()) {
5570      CXXRecordDecl* EltRD = cast<CXXRecordDecl>(EltRT->getDecl());
5571
5572      if (!(EltRD->*hasTrivial)()) {
5573        SourceLocation FLoc = (*fi)->getLocation();
5574        Diag(FLoc, diag::note_nontrivial_has_nontrivial) << QT << 0 << member;
5575        DiagnoseNontrivial(EltRT, member);
5576        return;
5577      }
5578    }
5579  }
5580
5581  assert(0 && "found no explanation for non-trivial member");
5582}
5583
5584/// TranslateIvarVisibility - Translate visibility from a token ID to an
5585///  AST enum value.
5586static ObjCIvarDecl::AccessControl
5587TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
5588  switch (ivarVisibility) {
5589  default: assert(0 && "Unknown visitibility kind");
5590  case tok::objc_private: return ObjCIvarDecl::Private;
5591  case tok::objc_public: return ObjCIvarDecl::Public;
5592  case tok::objc_protected: return ObjCIvarDecl::Protected;
5593  case tok::objc_package: return ObjCIvarDecl::Package;
5594  }
5595}
5596
5597/// ActOnIvar - Each ivar field of an objective-c class is passed into this
5598/// in order to create an IvarDecl object for it.
5599Sema::DeclPtrTy Sema::ActOnIvar(Scope *S,
5600                                SourceLocation DeclStart,
5601                                DeclPtrTy IntfDecl,
5602                                Declarator &D, ExprTy *BitfieldWidth,
5603                                tok::ObjCKeywordKind Visibility) {
5604
5605  IdentifierInfo *II = D.getIdentifier();
5606  Expr *BitWidth = (Expr*)BitfieldWidth;
5607  SourceLocation Loc = DeclStart;
5608  if (II) Loc = D.getIdentifierLoc();
5609
5610  // FIXME: Unnamed fields can be handled in various different ways, for
5611  // example, unnamed unions inject all members into the struct namespace!
5612
5613  TypeSourceInfo *TInfo = 0;
5614  QualType T = GetTypeForDeclarator(D, S, &TInfo);
5615
5616  if (BitWidth) {
5617    // 6.7.2.1p3, 6.7.2.1p4
5618    if (VerifyBitField(Loc, II, T, BitWidth)) {
5619      D.setInvalidType();
5620      DeleteExpr(BitWidth);
5621      BitWidth = 0;
5622    }
5623  } else {
5624    // Not a bitfield.
5625
5626    // validate II.
5627
5628  }
5629
5630  // C99 6.7.2.1p8: A member of a structure or union may have any type other
5631  // than a variably modified type.
5632  if (T->isVariablyModifiedType()) {
5633    Diag(Loc, diag::err_typecheck_ivar_variable_size);
5634    D.setInvalidType();
5635  }
5636
5637  // Get the visibility (access control) for this ivar.
5638  ObjCIvarDecl::AccessControl ac =
5639    Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
5640                                        : ObjCIvarDecl::None;
5641  // Must set ivar's DeclContext to its enclosing interface.
5642  Decl *EnclosingDecl = IntfDecl.getAs<Decl>();
5643  DeclContext *EnclosingContext;
5644  if (ObjCImplementationDecl *IMPDecl =
5645      dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
5646    // Case of ivar declared in an implementation. Context is that of its class.
5647    ObjCInterfaceDecl* IDecl = IMPDecl->getClassInterface();
5648    assert(IDecl && "No class- ActOnIvar");
5649    EnclosingContext = cast_or_null<DeclContext>(IDecl);
5650  } else
5651    EnclosingContext = dyn_cast<DeclContext>(EnclosingDecl);
5652  assert(EnclosingContext && "null DeclContext for ivar - ActOnIvar");
5653
5654  // Construct the decl.
5655  ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context,
5656                                             EnclosingContext, Loc, II, T,
5657                                             TInfo, ac, (Expr *)BitfieldWidth);
5658
5659  if (II) {
5660    NamedDecl *PrevDecl = LookupSingleName(S, II, LookupMemberName,
5661                                           ForRedeclaration);
5662    if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
5663        && !isa<TagDecl>(PrevDecl)) {
5664      Diag(Loc, diag::err_duplicate_member) << II;
5665      Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
5666      NewID->setInvalidDecl();
5667    }
5668  }
5669
5670  // Process attributes attached to the ivar.
5671  ProcessDeclAttributes(S, NewID, D);
5672
5673  if (D.isInvalidType())
5674    NewID->setInvalidDecl();
5675
5676  if (II) {
5677    // FIXME: When interfaces are DeclContexts, we'll need to add
5678    // these to the interface.
5679    S->AddDecl(DeclPtrTy::make(NewID));
5680    IdResolver.AddDecl(NewID);
5681  }
5682
5683  return DeclPtrTy::make(NewID);
5684}
5685
5686void Sema::ActOnFields(Scope* S,
5687                       SourceLocation RecLoc, DeclPtrTy RecDecl,
5688                       DeclPtrTy *Fields, unsigned NumFields,
5689                       SourceLocation LBrac, SourceLocation RBrac,
5690                       AttributeList *Attr) {
5691  Decl *EnclosingDecl = RecDecl.getAs<Decl>();
5692  assert(EnclosingDecl && "missing record or interface decl");
5693
5694  // If the decl this is being inserted into is invalid, then it may be a
5695  // redeclaration or some other bogus case.  Don't try to add fields to it.
5696  if (EnclosingDecl->isInvalidDecl()) {
5697    // FIXME: Deallocate fields?
5698    return;
5699  }
5700
5701
5702  // Verify that all the fields are okay.
5703  unsigned NumNamedMembers = 0;
5704  llvm::SmallVector<FieldDecl*, 32> RecFields;
5705
5706  RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
5707  for (unsigned i = 0; i != NumFields; ++i) {
5708    FieldDecl *FD = cast<FieldDecl>(Fields[i].getAs<Decl>());
5709
5710    // Get the type for the field.
5711    Type *FDTy = FD->getType().getTypePtr();
5712
5713    if (!FD->isAnonymousStructOrUnion()) {
5714      // Remember all fields written by the user.
5715      RecFields.push_back(FD);
5716    }
5717
5718    // If the field is already invalid for some reason, don't emit more
5719    // diagnostics about it.
5720    if (FD->isInvalidDecl()) {
5721      EnclosingDecl->setInvalidDecl();
5722      continue;
5723    }
5724
5725    // C99 6.7.2.1p2:
5726    //   A structure or union shall not contain a member with
5727    //   incomplete or function type (hence, a structure shall not
5728    //   contain an instance of itself, but may contain a pointer to
5729    //   an instance of itself), except that the last member of a
5730    //   structure with more than one named member may have incomplete
5731    //   array type; such a structure (and any union containing,
5732    //   possibly recursively, a member that is such a structure)
5733    //   shall not be a member of a structure or an element of an
5734    //   array.
5735    if (FDTy->isFunctionType()) {
5736      // Field declared as a function.
5737      Diag(FD->getLocation(), diag::err_field_declared_as_function)
5738        << FD->getDeclName();
5739      FD->setInvalidDecl();
5740      EnclosingDecl->setInvalidDecl();
5741      continue;
5742    } else if (FDTy->isIncompleteArrayType() && i == NumFields - 1 &&
5743               Record && Record->isStruct()) {
5744      // Flexible array member.
5745      if (NumNamedMembers < 1) {
5746        Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
5747          << FD->getDeclName();
5748        FD->setInvalidDecl();
5749        EnclosingDecl->setInvalidDecl();
5750        continue;
5751      }
5752      // Okay, we have a legal flexible array member at the end of the struct.
5753      if (Record)
5754        Record->setHasFlexibleArrayMember(true);
5755    } else if (!FDTy->isDependentType() &&
5756               RequireCompleteType(FD->getLocation(), FD->getType(),
5757                                   diag::err_field_incomplete)) {
5758      // Incomplete type
5759      FD->setInvalidDecl();
5760      EnclosingDecl->setInvalidDecl();
5761      continue;
5762    } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
5763      if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
5764        // If this is a member of a union, then entire union becomes "flexible".
5765        if (Record && Record->isUnion()) {
5766          Record->setHasFlexibleArrayMember(true);
5767        } else {
5768          // If this is a struct/class and this is not the last element, reject
5769          // it.  Note that GCC supports variable sized arrays in the middle of
5770          // structures.
5771          if (i != NumFields-1)
5772            Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
5773              << FD->getDeclName() << FD->getType();
5774          else {
5775            // We support flexible arrays at the end of structs in
5776            // other structs as an extension.
5777            Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
5778              << FD->getDeclName();
5779            if (Record)
5780              Record->setHasFlexibleArrayMember(true);
5781          }
5782        }
5783      }
5784      if (Record && FDTTy->getDecl()->hasObjectMember())
5785        Record->setHasObjectMember(true);
5786    } else if (FDTy->isObjCInterfaceType()) {
5787      /// A field cannot be an Objective-c object
5788      Diag(FD->getLocation(), diag::err_statically_allocated_object);
5789      FD->setInvalidDecl();
5790      EnclosingDecl->setInvalidDecl();
5791      continue;
5792    } else if (getLangOptions().ObjC1 &&
5793               getLangOptions().getGCMode() != LangOptions::NonGC &&
5794               Record &&
5795               (FD->getType()->isObjCObjectPointerType() ||
5796                FD->getType().isObjCGCStrong()))
5797      Record->setHasObjectMember(true);
5798    // Keep track of the number of named members.
5799    if (FD->getIdentifier())
5800      ++NumNamedMembers;
5801  }
5802
5803  // Okay, we successfully defined 'Record'.
5804  if (Record) {
5805    Record->completeDefinition();
5806  } else {
5807    ObjCIvarDecl **ClsFields =
5808      reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
5809    if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
5810      ID->setLocEnd(RBrac);
5811      // Add ivar's to class's DeclContext.
5812      for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
5813        ClsFields[i]->setLexicalDeclContext(ID);
5814        ID->addDecl(ClsFields[i]);
5815      }
5816      // Must enforce the rule that ivars in the base classes may not be
5817      // duplicates.
5818      if (ID->getSuperClass())
5819        DiagnoseDuplicateIvars(ID, ID->getSuperClass());
5820    } else if (ObjCImplementationDecl *IMPDecl =
5821                  dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
5822      assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
5823      for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
5824        // Ivar declared in @implementation never belongs to the implementation.
5825        // Only it is in implementation's lexical context.
5826        ClsFields[I]->setLexicalDeclContext(IMPDecl);
5827      CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
5828    } else if (ObjCCategoryDecl *CDecl =
5829                dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
5830      if (!LangOpts.ObjCNonFragileABI2 || !CDecl->IsClassExtension())
5831        Diag(LBrac, diag::err_misplaced_ivar);
5832      else {
5833        // FIXME. Class extension does not have a LocEnd field.
5834        // CDecl->setLocEnd(RBrac);
5835        // Add ivar's to class extension's DeclContext.
5836        for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
5837          ClsFields[i]->setLexicalDeclContext(CDecl);
5838          CDecl->addDecl(ClsFields[i]);
5839        }
5840      }
5841    }
5842  }
5843
5844  if (Attr)
5845    ProcessDeclAttributeList(S, Record, Attr);
5846}
5847
5848/// \brief Determine whether the given integral value is representable within
5849/// the given type T.
5850static bool isRepresentableIntegerValue(ASTContext &Context,
5851                                        llvm::APSInt &Value,
5852                                        QualType T) {
5853  assert(T->isIntegralType() && "Integral type required!");
5854  unsigned BitWidth = Context.getTypeSize(T);
5855
5856  if (Value.isUnsigned() || Value.isNonNegative())
5857    return Value.getActiveBits() < BitWidth;
5858
5859  return Value.getMinSignedBits() <= BitWidth;
5860}
5861
5862// \brief Given an integral type, return the next larger integral type
5863// (or a NULL type of no such type exists).
5864static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) {
5865  // FIXME: Int128/UInt128 support, which also needs to be introduced into
5866  // enum checking below.
5867  assert(T->isIntegralType() && "Integral type required!");
5868  const unsigned NumTypes = 4;
5869  QualType SignedIntegralTypes[NumTypes] = {
5870    Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
5871  };
5872  QualType UnsignedIntegralTypes[NumTypes] = {
5873    Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy,
5874    Context.UnsignedLongLongTy
5875  };
5876
5877  unsigned BitWidth = Context.getTypeSize(T);
5878  QualType *Types = T->isSignedIntegerType()? SignedIntegralTypes
5879                                            : UnsignedIntegralTypes;
5880  for (unsigned I = 0; I != NumTypes; ++I)
5881    if (Context.getTypeSize(Types[I]) > BitWidth)
5882      return Types[I];
5883
5884  return QualType();
5885}
5886
5887EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
5888                                          EnumConstantDecl *LastEnumConst,
5889                                          SourceLocation IdLoc,
5890                                          IdentifierInfo *Id,
5891                                          ExprArg val) {
5892  Expr *Val = (Expr *)val.get();
5893
5894  unsigned IntWidth = Context.Target.getIntWidth();
5895  llvm::APSInt EnumVal(IntWidth);
5896  QualType EltTy;
5897  if (Val) {
5898    if (Enum->isDependentType() || Val->isTypeDependent())
5899      EltTy = Context.DependentTy;
5900    else {
5901      // C99 6.7.2.2p2: Make sure we have an integer constant expression.
5902      SourceLocation ExpLoc;
5903      if (!Val->isValueDependent() &&
5904          VerifyIntegerConstantExpression(Val, &EnumVal)) {
5905        Val = 0;
5906      } else {
5907        if (!getLangOptions().CPlusPlus) {
5908          // C99 6.7.2.2p2:
5909          //   The expression that defines the value of an enumeration constant
5910          //   shall be an integer constant expression that has a value
5911          //   representable as an int.
5912
5913          // Complain if the value is not representable in an int.
5914          if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy))
5915            Diag(IdLoc, diag::ext_enum_value_not_int)
5916              << EnumVal.toString(10) << Val->getSourceRange()
5917              << (EnumVal.isUnsigned() || EnumVal.isNonNegative());
5918          else if (!Context.hasSameType(Val->getType(), Context.IntTy)) {
5919            // Force the type of the expression to 'int'.
5920            ImpCastExprToType(Val, Context.IntTy, CastExpr::CK_IntegralCast);
5921
5922            if (Val != val.get()) {
5923              val.release();
5924              val = Val;
5925            }
5926          }
5927        }
5928
5929        // C++0x [dcl.enum]p5:
5930        //   If the underlying type is not fixed, the type of each enumerator
5931        //   is the type of its initializing value:
5932        //     - If an initializer is specified for an enumerator, the
5933        //       initializing value has the same type as the expression.
5934        EltTy = Val->getType();
5935      }
5936    }
5937  }
5938
5939  if (!Val) {
5940    if (Enum->isDependentType())
5941      EltTy = Context.DependentTy;
5942    else if (!LastEnumConst) {
5943      // C++0x [dcl.enum]p5:
5944      //   If the underlying type is not fixed, the type of each enumerator
5945      //   is the type of its initializing value:
5946      //     - If no initializer is specified for the first enumerator, the
5947      //       initializing value has an unspecified integral type.
5948      //
5949      // GCC uses 'int' for its unspecified integral type, as does
5950      // C99 6.7.2.2p3.
5951      EltTy = Context.IntTy;
5952    } else {
5953      // Assign the last value + 1.
5954      EnumVal = LastEnumConst->getInitVal();
5955      ++EnumVal;
5956      EltTy = LastEnumConst->getType();
5957
5958      // Check for overflow on increment.
5959      if (EnumVal < LastEnumConst->getInitVal()) {
5960        // C++0x [dcl.enum]p5:
5961        //   If the underlying type is not fixed, the type of each enumerator
5962        //   is the type of its initializing value:
5963        //
5964        //     - Otherwise the type of the initializing value is the same as
5965        //       the type of the initializing value of the preceding enumerator
5966        //       unless the incremented value is not representable in that type,
5967        //       in which case the type is an unspecified integral type
5968        //       sufficient to contain the incremented value. If no such type
5969        //       exists, the program is ill-formed.
5970        QualType T = getNextLargerIntegralType(Context, EltTy);
5971        if (T.isNull()) {
5972          // There is no integral type larger enough to represent this
5973          // value. Complain, then allow the value to wrap around.
5974          EnumVal = LastEnumConst->getInitVal();
5975          EnumVal.zext(EnumVal.getBitWidth() * 2);
5976          Diag(IdLoc, diag::warn_enumerator_too_large)
5977            << EnumVal.toString(10);
5978        } else {
5979          EltTy = T;
5980        }
5981
5982        // Retrieve the last enumerator's value, extent that type to the
5983        // type that is supposed to be large enough to represent the incremented
5984        // value, then increment.
5985        EnumVal = LastEnumConst->getInitVal();
5986        EnumVal.setIsSigned(EltTy->isSignedIntegerType());
5987        EnumVal.zextOrTrunc(Context.getTypeSize(EltTy));
5988        ++EnumVal;
5989
5990        // If we're not in C++, diagnose the overflow of enumerator values,
5991        // which in C99 means that the enumerator value is not representable in
5992        // an int (C99 6.7.2.2p2). However, we support GCC's extension that
5993        // permits enumerator values that are representable in some larger
5994        // integral type.
5995        if (!getLangOptions().CPlusPlus && !T.isNull())
5996          Diag(IdLoc, diag::warn_enum_value_overflow);
5997      } else if (!getLangOptions().CPlusPlus &&
5998                 !isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
5999        // Enforce C99 6.7.2.2p2 even when we compute the next value.
6000        Diag(IdLoc, diag::ext_enum_value_not_int)
6001          << EnumVal.toString(10) << 1;
6002      }
6003    }
6004  }
6005
6006  if (!EltTy->isDependentType()) {
6007    // Make the enumerator value match the signedness and size of the
6008    // enumerator's type.
6009    EnumVal.zextOrTrunc(Context.getTypeSize(EltTy));
6010    EnumVal.setIsSigned(EltTy->isSignedIntegerType());
6011  }
6012
6013  val.release();
6014  return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
6015                                  Val, EnumVal);
6016}
6017
6018
6019Sema::DeclPtrTy Sema::ActOnEnumConstant(Scope *S, DeclPtrTy theEnumDecl,
6020                                        DeclPtrTy lastEnumConst,
6021                                        SourceLocation IdLoc,
6022                                        IdentifierInfo *Id,
6023                                        SourceLocation EqualLoc, ExprTy *val) {
6024  EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl.getAs<Decl>());
6025  EnumConstantDecl *LastEnumConst =
6026    cast_or_null<EnumConstantDecl>(lastEnumConst.getAs<Decl>());
6027  Expr *Val = static_cast<Expr*>(val);
6028
6029  // The scope passed in may not be a decl scope.  Zip up the scope tree until
6030  // we find one that is.
6031  S = getNonFieldDeclScope(S);
6032
6033  // Verify that there isn't already something declared with this name in this
6034  // scope.
6035  NamedDecl *PrevDecl = LookupSingleName(S, Id, LookupOrdinaryName,
6036                                         ForRedeclaration);
6037  if (PrevDecl && PrevDecl->isTemplateParameter()) {
6038    // Maybe we will complain about the shadowed template parameter.
6039    DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
6040    // Just pretend that we didn't see the previous declaration.
6041    PrevDecl = 0;
6042  }
6043
6044  if (PrevDecl) {
6045    // When in C++, we may get a TagDecl with the same name; in this case the
6046    // enum constant will 'hide' the tag.
6047    assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
6048           "Received TagDecl when not in C++!");
6049    if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
6050      if (isa<EnumConstantDecl>(PrevDecl))
6051        Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
6052      else
6053        Diag(IdLoc, diag::err_redefinition) << Id;
6054      Diag(PrevDecl->getLocation(), diag::note_previous_definition);
6055      if (Val) Val->Destroy(Context);
6056      return DeclPtrTy();
6057    }
6058  }
6059
6060  EnumConstantDecl *New = CheckEnumConstant(TheEnumDecl, LastEnumConst,
6061                                            IdLoc, Id, Owned(Val));
6062
6063  // Register this decl in the current scope stack.
6064  if (New) {
6065    New->setAccess(TheEnumDecl->getAccess());
6066    PushOnScopeChains(New, S);
6067  }
6068
6069  return DeclPtrTy::make(New);
6070}
6071
6072void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc,
6073                         SourceLocation RBraceLoc, DeclPtrTy EnumDeclX,
6074                         DeclPtrTy *Elements, unsigned NumElements,
6075                         Scope *S, AttributeList *Attr) {
6076  EnumDecl *Enum = cast<EnumDecl>(EnumDeclX.getAs<Decl>());
6077  QualType EnumType = Context.getTypeDeclType(Enum);
6078
6079  if (Attr)
6080    ProcessDeclAttributeList(S, Enum, Attr);
6081
6082  if (Enum->isDependentType()) {
6083    for (unsigned i = 0; i != NumElements; ++i) {
6084      EnumConstantDecl *ECD =
6085        cast_or_null<EnumConstantDecl>(Elements[i].getAs<Decl>());
6086      if (!ECD) continue;
6087
6088      ECD->setType(EnumType);
6089    }
6090
6091    Enum->completeDefinition(Context.DependentTy, Context.DependentTy);
6092    return;
6093  }
6094
6095  // TODO: If the result value doesn't fit in an int, it must be a long or long
6096  // long value.  ISO C does not support this, but GCC does as an extension,
6097  // emit a warning.
6098  unsigned IntWidth = Context.Target.getIntWidth();
6099  unsigned CharWidth = Context.Target.getCharWidth();
6100  unsigned ShortWidth = Context.Target.getShortWidth();
6101
6102  // Verify that all the values are okay, compute the size of the values, and
6103  // reverse the list.
6104  unsigned NumNegativeBits = 0;
6105  unsigned NumPositiveBits = 0;
6106
6107  // Keep track of whether all elements have type int.
6108  bool AllElementsInt = true;
6109
6110  for (unsigned i = 0; i != NumElements; ++i) {
6111    EnumConstantDecl *ECD =
6112      cast_or_null<EnumConstantDecl>(Elements[i].getAs<Decl>());
6113    if (!ECD) continue;  // Already issued a diagnostic.
6114
6115    const llvm::APSInt &InitVal = ECD->getInitVal();
6116
6117    // Keep track of the size of positive and negative values.
6118    if (InitVal.isUnsigned() || InitVal.isNonNegative())
6119      NumPositiveBits = std::max(NumPositiveBits,
6120                                 (unsigned)InitVal.getActiveBits());
6121    else
6122      NumNegativeBits = std::max(NumNegativeBits,
6123                                 (unsigned)InitVal.getMinSignedBits());
6124
6125    // Keep track of whether every enum element has type int (very commmon).
6126    if (AllElementsInt)
6127      AllElementsInt = ECD->getType() == Context.IntTy;
6128  }
6129
6130  // Figure out the type that should be used for this enum.
6131  // FIXME: Support -fshort-enums.
6132  QualType BestType;
6133  unsigned BestWidth;
6134
6135  // C++0x N3000 [conv.prom]p3:
6136  //   An rvalue of an unscoped enumeration type whose underlying
6137  //   type is not fixed can be converted to an rvalue of the first
6138  //   of the following types that can represent all the values of
6139  //   the enumeration: int, unsigned int, long int, unsigned long
6140  //   int, long long int, or unsigned long long int.
6141  // C99 6.4.4.3p2:
6142  //   An identifier declared as an enumeration constant has type int.
6143  // The C99 rule is modified by a gcc extension
6144  QualType BestPromotionType;
6145
6146  bool Packed = Enum->getAttr<PackedAttr>() ? true : false;
6147
6148  if (NumNegativeBits) {
6149    // If there is a negative value, figure out the smallest integer type (of
6150    // int/long/longlong) that fits.
6151    // If it's packed, check also if it fits a char or a short.
6152    if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
6153      BestType = Context.SignedCharTy;
6154      BestWidth = CharWidth;
6155    } else if (Packed && NumNegativeBits <= ShortWidth &&
6156               NumPositiveBits < ShortWidth) {
6157      BestType = Context.ShortTy;
6158      BestWidth = ShortWidth;
6159    } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
6160      BestType = Context.IntTy;
6161      BestWidth = IntWidth;
6162    } else {
6163      BestWidth = Context.Target.getLongWidth();
6164
6165      if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
6166        BestType = Context.LongTy;
6167      } else {
6168        BestWidth = Context.Target.getLongLongWidth();
6169
6170        if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
6171          Diag(Enum->getLocation(), diag::warn_enum_too_large);
6172        BestType = Context.LongLongTy;
6173      }
6174    }
6175    BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
6176  } else {
6177    // If there is no negative value, figure out the smallest type that fits
6178    // all of the enumerator values.
6179    // If it's packed, check also if it fits a char or a short.
6180    if (Packed && NumPositiveBits <= CharWidth) {
6181      BestType = Context.UnsignedCharTy;
6182      BestPromotionType = Context.IntTy;
6183      BestWidth = CharWidth;
6184    } else if (Packed && NumPositiveBits <= ShortWidth) {
6185      BestType = Context.UnsignedShortTy;
6186      BestPromotionType = Context.IntTy;
6187      BestWidth = ShortWidth;
6188    } else if (NumPositiveBits <= IntWidth) {
6189      BestType = Context.UnsignedIntTy;
6190      BestWidth = IntWidth;
6191      BestPromotionType
6192        = (NumPositiveBits == BestWidth || !getLangOptions().CPlusPlus)
6193                           ? Context.UnsignedIntTy : Context.IntTy;
6194    } else if (NumPositiveBits <=
6195               (BestWidth = Context.Target.getLongWidth())) {
6196      BestType = Context.UnsignedLongTy;
6197      BestPromotionType
6198        = (NumPositiveBits == BestWidth || !getLangOptions().CPlusPlus)
6199                           ? Context.UnsignedLongTy : Context.LongTy;
6200    } else {
6201      BestWidth = Context.Target.getLongLongWidth();
6202      assert(NumPositiveBits <= BestWidth &&
6203             "How could an initializer get larger than ULL?");
6204      BestType = Context.UnsignedLongLongTy;
6205      BestPromotionType
6206        = (NumPositiveBits == BestWidth || !getLangOptions().CPlusPlus)
6207                           ? Context.UnsignedLongLongTy : Context.LongLongTy;
6208    }
6209  }
6210
6211  // Loop over all of the enumerator constants, changing their types to match
6212  // the type of the enum if needed.
6213  for (unsigned i = 0; i != NumElements; ++i) {
6214    EnumConstantDecl *ECD =
6215      cast_or_null<EnumConstantDecl>(Elements[i].getAs<Decl>());
6216    if (!ECD) continue;  // Already issued a diagnostic.
6217
6218    // Standard C says the enumerators have int type, but we allow, as an
6219    // extension, the enumerators to be larger than int size.  If each
6220    // enumerator value fits in an int, type it as an int, otherwise type it the
6221    // same as the enumerator decl itself.  This means that in "enum { X = 1U }"
6222    // that X has type 'int', not 'unsigned'.
6223
6224    // Determine whether the value fits into an int.
6225    llvm::APSInt InitVal = ECD->getInitVal();
6226
6227    // If it fits into an integer type, force it.  Otherwise force it to match
6228    // the enum decl type.
6229    QualType NewTy;
6230    unsigned NewWidth;
6231    bool NewSign;
6232    if (!getLangOptions().CPlusPlus &&
6233        isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) {
6234      NewTy = Context.IntTy;
6235      NewWidth = IntWidth;
6236      NewSign = true;
6237    } else if (ECD->getType() == BestType) {
6238      // Already the right type!
6239      if (getLangOptions().CPlusPlus)
6240        // C++ [dcl.enum]p4: Following the closing brace of an
6241        // enum-specifier, each enumerator has the type of its
6242        // enumeration.
6243        ECD->setType(EnumType);
6244      continue;
6245    } else {
6246      NewTy = BestType;
6247      NewWidth = BestWidth;
6248      NewSign = BestType->isSignedIntegerType();
6249    }
6250
6251    // Adjust the APSInt value.
6252    InitVal.extOrTrunc(NewWidth);
6253    InitVal.setIsSigned(NewSign);
6254    ECD->setInitVal(InitVal);
6255
6256    // Adjust the Expr initializer and type.
6257    if (ECD->getInitExpr())
6258      ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy,
6259                                                      CastExpr::CK_IntegralCast,
6260                                                      ECD->getInitExpr(),
6261                                                      /*isLvalue=*/false));
6262    if (getLangOptions().CPlusPlus)
6263      // C++ [dcl.enum]p4: Following the closing brace of an
6264      // enum-specifier, each enumerator has the type of its
6265      // enumeration.
6266      ECD->setType(EnumType);
6267    else
6268      ECD->setType(NewTy);
6269  }
6270
6271  Enum->completeDefinition(BestType, BestPromotionType);
6272}
6273
6274Sema::DeclPtrTy Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
6275                                            ExprArg expr) {
6276  StringLiteral *AsmString = cast<StringLiteral>(expr.takeAs<Expr>());
6277
6278  FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
6279                                                   Loc, AsmString);
6280  CurContext->addDecl(New);
6281  return DeclPtrTy::make(New);
6282}
6283
6284void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
6285                             SourceLocation PragmaLoc,
6286                             SourceLocation NameLoc) {
6287  Decl *PrevDecl = LookupSingleName(TUScope, Name, LookupOrdinaryName);
6288
6289  if (PrevDecl) {
6290    PrevDecl->addAttr(::new (Context) WeakAttr());
6291  } else {
6292    (void)WeakUndeclaredIdentifiers.insert(
6293      std::pair<IdentifierInfo*,WeakInfo>
6294        (Name, WeakInfo((IdentifierInfo*)0, NameLoc)));
6295  }
6296}
6297
6298void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
6299                                IdentifierInfo* AliasName,
6300                                SourceLocation PragmaLoc,
6301                                SourceLocation NameLoc,
6302                                SourceLocation AliasNameLoc) {
6303  Decl *PrevDecl = LookupSingleName(TUScope, AliasName, LookupOrdinaryName);
6304  WeakInfo W = WeakInfo(Name, NameLoc);
6305
6306  if (PrevDecl) {
6307    if (!PrevDecl->hasAttr<AliasAttr>())
6308      if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
6309        DeclApplyPragmaWeak(TUScope, ND, W);
6310  } else {
6311    (void)WeakUndeclaredIdentifiers.insert(
6312      std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
6313  }
6314}
6315