SemaDecl.cpp revision d9d22dd9c94618490dbffb0e2caf222530ca39d3
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 "clang/AST/APValue.h"
16#include "clang/AST/ASTConsumer.h"
17#include "clang/AST/ASTContext.h"
18#include "clang/AST/DeclObjC.h"
19#include "clang/AST/ExprCXX.h"
20#include "clang/Parse/DeclSpec.h"
21#include "clang/Basic/Diagnostic.h"
22#include "clang/Basic/TargetInfo.h"
23#include "clang/Basic/SourceManager.h"
24// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
25#include "clang/Lex/Preprocessor.h"
26#include "clang/Lex/HeaderSearch.h"
27#include "llvm/ADT/SmallSet.h"
28using namespace clang;
29
30Sema::TypeTy *Sema::isTypeName(IdentifierInfo &II, Scope *S,
31                               const CXXScopeSpec *SS) {
32  DeclContext *DC = 0;
33  if (SS) {
34    if (SS->isInvalid())
35      return 0;
36    DC = static_cast<DeclContext*>(SS->getScopeRep());
37  }
38  Decl *IIDecl = LookupDecl(&II, Decl::IDNS_Ordinary, S, DC, false);
39
40  if (IIDecl && (isa<TypedefDecl>(IIDecl) ||
41                 isa<ObjCInterfaceDecl>(IIDecl) ||
42                 isa<TagDecl>(IIDecl)))
43    return IIDecl;
44  return 0;
45}
46
47DeclContext *Sema::getContainingDC(DeclContext *DC) {
48  if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
49    // A C++ out-of-line method will return to the file declaration context.
50    if (MD->isOutOfLineDefinition())
51      return MD->getLexicalDeclContext();
52
53    // A C++ inline method is parsed *after* the topmost class it was declared in
54    // is fully parsed (it's "complete").
55    // The parsing of a C++ inline method happens at the declaration context of
56    // the topmost (non-nested) class it is lexically declared in.
57    assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
58    DC = MD->getParent();
59    while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
60      DC = RD;
61
62    // Return the declaration context of the topmost class the inline method is
63    // declared in.
64    return DC;
65  }
66
67  if (isa<ObjCMethodDecl>(DC))
68    return Context.getTranslationUnitDecl();
69
70  if (ScopedDecl *SD = dyn_cast<ScopedDecl>(DC))
71    return SD->getLexicalDeclContext();
72
73  return DC->getLexicalParent();
74}
75
76void Sema::PushDeclContext(DeclContext *DC) {
77  assert(getContainingDC(DC) == CurContext &&
78       "The next DeclContext should be lexically contained in the current one.");
79  CurContext = DC;
80}
81
82void Sema::PopDeclContext() {
83  assert(CurContext && "DeclContext imbalance!");
84  CurContext = getContainingDC(CurContext);
85}
86
87/// Add this decl to the scope shadowed decl chains.
88void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
89  S->AddDecl(D);
90
91  // C++ [basic.scope]p4:
92  //   -- exactly one declaration shall declare a class name or
93  //   enumeration name that is not a typedef name and the other
94  //   declarations shall all refer to the same object or
95  //   enumerator, or all refer to functions and function templates;
96  //   in this case the class name or enumeration name is hidden.
97  if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
98    // We are pushing the name of a tag (enum or class).
99    IdentifierResolver::iterator
100        I = IdResolver.begin(TD->getIdentifier(),
101                             TD->getDeclContext(), false/*LookInParentCtx*/);
102    if (I != IdResolver.end() && isDeclInScope(*I, TD->getDeclContext(), S)) {
103      // There is already a declaration with the same name in the same
104      // scope. It must be found before we find the new declaration,
105      // so swap the order on the shadowed declaration chain.
106
107      IdResolver.AddShadowedDecl(TD, *I);
108      return;
109    }
110  } else if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) {
111    FunctionDecl *FD = cast<FunctionDecl>(D);
112    // We are pushing the name of a function, which might be an
113    // overloaded name.
114    IdentifierResolver::iterator
115        I = IdResolver.begin(FD->getDeclName(),
116                             FD->getDeclContext(), false/*LookInParentCtx*/);
117    if (I != IdResolver.end() &&
118        IdResolver.isDeclInScope(*I, FD->getDeclContext(), S) &&
119        (isa<OverloadedFunctionDecl>(*I) || isa<FunctionDecl>(*I))) {
120      // There is already a declaration with the same name in the same
121      // scope. It must be a function or an overloaded function.
122      OverloadedFunctionDecl* Ovl = dyn_cast<OverloadedFunctionDecl>(*I);
123      if (!Ovl) {
124        // We haven't yet overloaded this function. Take the existing
125        // FunctionDecl and put it into an OverloadedFunctionDecl.
126        Ovl = OverloadedFunctionDecl::Create(Context,
127                                             FD->getDeclContext(),
128                                             FD->getDeclName());
129        Ovl->addOverload(dyn_cast<FunctionDecl>(*I));
130
131        // Remove the name binding to the existing FunctionDecl...
132        IdResolver.RemoveDecl(*I);
133
134        // ... and put the OverloadedFunctionDecl in its place.
135        IdResolver.AddDecl(Ovl);
136      }
137
138      // We have an OverloadedFunctionDecl. Add the new FunctionDecl
139      // to its list of overloads.
140      Ovl->addOverload(FD);
141
142      return;
143    }
144  }
145
146  IdResolver.AddDecl(D);
147}
148
149void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
150  if (S->decl_empty()) return;
151  assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
152
153  for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
154       I != E; ++I) {
155    Decl *TmpD = static_cast<Decl*>(*I);
156    assert(TmpD && "This decl didn't get pushed??");
157
158    if (isa<CXXFieldDecl>(TmpD)) continue;
159
160    assert(isa<ScopedDecl>(TmpD) && "Decl isn't ScopedDecl?");
161    ScopedDecl *D = cast<ScopedDecl>(TmpD);
162
163    IdentifierInfo *II = D->getIdentifier();
164    if (!II) continue;
165
166    // We only want to remove the decls from the identifier decl chains for
167    // local scopes, when inside a function/method.
168    if (S->getFnParent() != 0)
169      IdResolver.RemoveDecl(D);
170
171    // Chain this decl to the containing DeclContext.
172    D->setNext(CurContext->getDeclChain());
173    CurContext->setDeclChain(D);
174  }
175}
176
177/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
178/// return 0 if one not found.
179ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
180  // The third "scope" argument is 0 since we aren't enabling lazy built-in
181  // creation from this context.
182  Decl *IDecl = LookupDecl(Id, Decl::IDNS_Ordinary, 0, false);
183
184  return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
185}
186
187/// LookupDecl - Look up the inner-most declaration in the specified
188/// namespace.
189Decl *Sema::LookupDecl(DeclarationName Name, unsigned NSI, Scope *S,
190                       const DeclContext *LookupCtx,
191                       bool enableLazyBuiltinCreation) {
192  if (!Name) return 0;
193  unsigned NS = NSI;
194  if (getLangOptions().CPlusPlus && (NS & Decl::IDNS_Ordinary))
195    NS |= Decl::IDNS_Tag;
196
197  IdentifierResolver::iterator
198    I = LookupCtx ? IdResolver.begin(Name, LookupCtx, false/*LookInParentCtx*/)
199                  : IdResolver.begin(Name, CurContext, true/*LookInParentCtx*/);
200  // Scan up the scope chain looking for a decl that matches this identifier
201  // that is in the appropriate namespace.  This search should not take long, as
202  // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
203  for (; I != IdResolver.end(); ++I)
204    if ((*I)->getIdentifierNamespace() & NS)
205      return *I;
206
207  // If we didn't find a use of this identifier, and if the identifier
208  // corresponds to a compiler builtin, create the decl object for the builtin
209  // now, injecting it into translation unit scope, and return it.
210  if (NS & Decl::IDNS_Ordinary) {
211    IdentifierInfo *II = Name.getAsIdentifierInfo();
212    if (enableLazyBuiltinCreation && II &&
213        (LookupCtx == 0 || isa<TranslationUnitDecl>(LookupCtx))) {
214      // If this is a builtin on this (or all) targets, create the decl.
215      if (unsigned BuiltinID = II->getBuiltinID())
216        return LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, S);
217    }
218    if (getLangOptions().ObjC1 && II) {
219      // @interface and @compatibility_alias introduce typedef-like names.
220      // Unlike typedef's, they can only be introduced at file-scope (and are
221      // therefore not scoped decls). They can, however, be shadowed by
222      // other names in IDNS_Ordinary.
223      ObjCInterfaceDeclsTy::iterator IDI = ObjCInterfaceDecls.find(II);
224      if (IDI != ObjCInterfaceDecls.end())
225        return IDI->second;
226      ObjCAliasTy::iterator I = ObjCAliasDecls.find(II);
227      if (I != ObjCAliasDecls.end())
228        return I->second->getClassInterface();
229    }
230  }
231  return 0;
232}
233
234void Sema::InitBuiltinVaListType() {
235  if (!Context.getBuiltinVaListType().isNull())
236    return;
237
238  IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
239  Decl *VaDecl = LookupDecl(VaIdent, Decl::IDNS_Ordinary, TUScope);
240  TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
241  Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
242}
243
244/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
245/// lazily create a decl for it.
246ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
247                                      Scope *S) {
248  Builtin::ID BID = (Builtin::ID)bid;
249
250  if (Context.BuiltinInfo.hasVAListUse(BID))
251    InitBuiltinVaListType();
252
253  QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
254  FunctionDecl *New = FunctionDecl::Create(Context,
255                                           Context.getTranslationUnitDecl(),
256                                           SourceLocation(), II, R,
257                                           FunctionDecl::Extern, false, 0);
258
259  // Create Decl objects for each parameter, adding them to the
260  // FunctionDecl.
261  if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
262    llvm::SmallVector<ParmVarDecl*, 16> Params;
263    for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
264      Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
265                                           FT->getArgType(i), VarDecl::None, 0,
266                                           0));
267    New->setParams(&Params[0], Params.size());
268  }
269
270
271
272  // TUScope is the translation-unit scope to insert this function into.
273  PushOnScopeChains(New, TUScope);
274  return New;
275}
276
277/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
278/// everything from the standard library is defined.
279NamespaceDecl *Sema::GetStdNamespace() {
280  if (!StdNamespace) {
281    IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
282    DeclContext *Global = Context.getTranslationUnitDecl();
283    Decl *Std = LookupDecl(StdIdent, Decl::IDNS_Tag | Decl::IDNS_Ordinary,
284                           0, Global, /*enableLazyBuiltinCreation=*/false);
285    StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
286  }
287  return StdNamespace;
288}
289
290/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
291/// and scope as a previous declaration 'Old'.  Figure out how to resolve this
292/// situation, merging decls or emitting diagnostics as appropriate.
293///
294TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
295  // Allow multiple definitions for ObjC built-in typedefs.
296  // FIXME: Verify the underlying types are equivalent!
297  if (getLangOptions().ObjC1) {
298    const IdentifierInfo *TypeID = New->getIdentifier();
299    switch (TypeID->getLength()) {
300    default: break;
301    case 2:
302      if (!TypeID->isStr("id"))
303        break;
304      Context.setObjCIdType(New);
305      return New;
306    case 5:
307      if (!TypeID->isStr("Class"))
308        break;
309      Context.setObjCClassType(New);
310      return New;
311    case 3:
312      if (!TypeID->isStr("SEL"))
313        break;
314      Context.setObjCSelType(New);
315      return New;
316    case 8:
317      if (!TypeID->isStr("Protocol"))
318        break;
319      Context.setObjCProtoType(New->getUnderlyingType());
320      return New;
321    }
322    // Fall through - the typedef name was not a builtin type.
323  }
324  // Verify the old decl was also a typedef.
325  TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
326  if (!Old) {
327    Diag(New->getLocation(), diag::err_redefinition_different_kind)
328      << New->getDeclName();
329    Diag(OldD->getLocation(), diag::note_previous_definition);
330    return New;
331  }
332
333  // If the typedef types are not identical, reject them in all languages and
334  // with any extensions enabled.
335  if (Old->getUnderlyingType() != New->getUnderlyingType() &&
336      Context.getCanonicalType(Old->getUnderlyingType()) !=
337      Context.getCanonicalType(New->getUnderlyingType())) {
338    Diag(New->getLocation(), diag::err_redefinition_different_typedef)
339      << New->getUnderlyingType().getAsString()
340      << Old->getUnderlyingType().getAsString();
341    Diag(Old->getLocation(), diag::note_previous_definition);
342    return Old;
343  }
344
345  if (getLangOptions().Microsoft) return New;
346
347  // C++ [dcl.typedef]p2:
348  //   In a given non-class scope, a typedef specifier can be used to
349  //   redefine the name of any type declared in that scope to refer
350  //   to the type to which it already refers.
351  if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext))
352    return New;
353
354  // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
355  // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
356  // *either* declaration is in a system header. The code below implements
357  // this adhoc compatibility rule. FIXME: The following code will not
358  // work properly when compiling ".i" files (containing preprocessed output).
359  if (PP.getDiagnostics().getSuppressSystemWarnings()) {
360    SourceManager &SrcMgr = Context.getSourceManager();
361    if (SrcMgr.isInSystemHeader(Old->getLocation()))
362      return New;
363    if (SrcMgr.isInSystemHeader(New->getLocation()))
364      return New;
365  }
366
367  Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
368  Diag(Old->getLocation(), diag::note_previous_definition);
369  return New;
370}
371
372/// DeclhasAttr - returns true if decl Declaration already has the target
373/// attribute.
374static bool DeclHasAttr(const Decl *decl, const Attr *target) {
375  for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
376    if (attr->getKind() == target->getKind())
377      return true;
378
379  return false;
380}
381
382/// MergeAttributes - append attributes from the Old decl to the New one.
383static void MergeAttributes(Decl *New, Decl *Old) {
384  Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
385
386  while (attr) {
387     tmp = attr;
388     attr = attr->getNext();
389
390    if (!DeclHasAttr(New, tmp)) {
391       New->addAttr(tmp);
392    } else {
393       tmp->setNext(0);
394       delete(tmp);
395    }
396  }
397
398  Old->invalidateAttrs();
399}
400
401/// MergeFunctionDecl - We just parsed a function 'New' from
402/// declarator D which has the same name and scope as a previous
403/// declaration 'Old'.  Figure out how to resolve this situation,
404/// merging decls or emitting diagnostics as appropriate.
405/// Redeclaration will be set true if this New is a redeclaration OldD.
406///
407/// In C++, New and Old must be declarations that are not
408/// overloaded. Use IsOverload to determine whether New and Old are
409/// overloaded, and to select the Old declaration that New should be
410/// merged with.
411FunctionDecl *
412Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
413  assert(!isa<OverloadedFunctionDecl>(OldD) &&
414         "Cannot merge with an overloaded function declaration");
415
416  Redeclaration = false;
417  // Verify the old decl was also a function.
418  FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
419  if (!Old) {
420    Diag(New->getLocation(), diag::err_redefinition_different_kind)
421      << New->getDeclName();
422    Diag(OldD->getLocation(), diag::note_previous_definition);
423    return New;
424  }
425
426  // Determine whether the previous declaration was a definition,
427  // implicit declaration, or a declaration.
428  diag::kind PrevDiag;
429  if (Old->isThisDeclarationADefinition())
430    PrevDiag = diag::note_previous_definition;
431  else if (Old->isImplicit())
432    PrevDiag = diag::note_previous_implicit_declaration;
433  else
434    PrevDiag = diag::note_previous_declaration;
435
436  QualType OldQType = Context.getCanonicalType(Old->getType());
437  QualType NewQType = Context.getCanonicalType(New->getType());
438
439  if (getLangOptions().CPlusPlus) {
440    // (C++98 13.1p2):
441    //   Certain function declarations cannot be overloaded:
442    //     -- Function declarations that differ only in the return type
443    //        cannot be overloaded.
444    QualType OldReturnType
445      = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
446    QualType NewReturnType
447      = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
448    if (OldReturnType != NewReturnType) {
449      Diag(New->getLocation(), diag::err_ovl_diff_return_type);
450      Diag(Old->getLocation(), PrevDiag);
451      return New;
452    }
453
454    const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
455    const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
456    if (OldMethod && NewMethod) {
457      //    -- Member function declarations with the same name and the
458      //       same parameter types cannot be overloaded if any of them
459      //       is a static member function declaration.
460      if (OldMethod->isStatic() || NewMethod->isStatic()) {
461        Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
462        Diag(Old->getLocation(), PrevDiag);
463        return New;
464      }
465    }
466
467    // (C++98 8.3.5p3):
468    //   All declarations for a function shall agree exactly in both the
469    //   return type and the parameter-type-list.
470    if (OldQType == NewQType) {
471      // We have a redeclaration.
472      MergeAttributes(New, Old);
473      Redeclaration = true;
474      return MergeCXXFunctionDecl(New, Old);
475    }
476
477    // Fall through for conflicting redeclarations and redefinitions.
478  }
479
480  // C: Function types need to be compatible, not identical. This handles
481  // duplicate function decls like "void f(int); void f(enum X);" properly.
482  if (!getLangOptions().CPlusPlus &&
483      Context.typesAreCompatible(OldQType, NewQType)) {
484    MergeAttributes(New, Old);
485    Redeclaration = true;
486    return New;
487  }
488
489  // A function that has already been declared has been redeclared or defined
490  // with a different type- show appropriate diagnostic
491
492  // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
493  // TODO: This is totally simplistic.  It should handle merging functions
494  // together etc, merging extern int X; int X; ...
495  Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
496  Diag(Old->getLocation(), PrevDiag);
497  return New;
498}
499
500/// Predicate for C "tentative" external object definitions (C99 6.9.2).
501static bool isTentativeDefinition(VarDecl *VD) {
502  if (VD->isFileVarDecl())
503    return (!VD->getInit() &&
504            (VD->getStorageClass() == VarDecl::None ||
505             VD->getStorageClass() == VarDecl::Static));
506  return false;
507}
508
509/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
510/// when dealing with C "tentative" external object definitions (C99 6.9.2).
511void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
512  bool VDIsTentative = isTentativeDefinition(VD);
513  bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
514
515  for (IdentifierResolver::iterator
516       I = IdResolver.begin(VD->getIdentifier(),
517                            VD->getDeclContext(), false/*LookInParentCtx*/),
518       E = IdResolver.end(); I != E; ++I) {
519    if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
520      VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
521
522      // Handle the following case:
523      //   int a[10];
524      //   int a[];   - the code below makes sure we set the correct type.
525      //   int a[11]; - this is an error, size isn't 10.
526      if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
527          OldDecl->getType()->isConstantArrayType())
528        VD->setType(OldDecl->getType());
529
530      // Check for "tentative" definitions. We can't accomplish this in
531      // MergeVarDecl since the initializer hasn't been attached.
532      if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
533        continue;
534
535      // Handle __private_extern__ just like extern.
536      if (OldDecl->getStorageClass() != VarDecl::Extern &&
537          OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
538          VD->getStorageClass() != VarDecl::Extern &&
539          VD->getStorageClass() != VarDecl::PrivateExtern) {
540        Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
541        Diag(OldDecl->getLocation(), diag::note_previous_definition);
542      }
543    }
544  }
545}
546
547/// MergeVarDecl - We just parsed a variable 'New' which has the same name
548/// and scope as a previous declaration 'Old'.  Figure out how to resolve this
549/// situation, merging decls or emitting diagnostics as appropriate.
550///
551/// Tentative definition rules (C99 6.9.2p2) are checked by
552/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
553/// definitions here, since the initializer hasn't been attached.
554///
555VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
556  // Verify the old decl was also a variable.
557  VarDecl *Old = dyn_cast<VarDecl>(OldD);
558  if (!Old) {
559    Diag(New->getLocation(), diag::err_redefinition_different_kind)
560      << New->getDeclName();
561    Diag(OldD->getLocation(), diag::note_previous_definition);
562    return New;
563  }
564
565  MergeAttributes(New, Old);
566
567  // Verify the types match.
568  QualType OldCType = Context.getCanonicalType(Old->getType());
569  QualType NewCType = Context.getCanonicalType(New->getType());
570  if (OldCType != NewCType && !Context.typesAreCompatible(OldCType, NewCType)) {
571    Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
572    Diag(Old->getLocation(), diag::note_previous_definition);
573    return New;
574  }
575  // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
576  if (New->getStorageClass() == VarDecl::Static &&
577      (Old->getStorageClass() == VarDecl::None ||
578       Old->getStorageClass() == VarDecl::Extern)) {
579    Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
580    Diag(Old->getLocation(), diag::note_previous_definition);
581    return New;
582  }
583  // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
584  if (New->getStorageClass() != VarDecl::Static &&
585      Old->getStorageClass() == VarDecl::Static) {
586    Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
587    Diag(Old->getLocation(), diag::note_previous_definition);
588    return New;
589  }
590  // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
591  if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
592    Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
593    Diag(Old->getLocation(), diag::note_previous_definition);
594  }
595  return New;
596}
597
598/// CheckParmsForFunctionDef - Check that the parameters of the given
599/// function are appropriate for the definition of a function. This
600/// takes care of any checks that cannot be performed on the
601/// declaration itself, e.g., that the types of each of the function
602/// parameters are complete.
603bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
604  bool HasInvalidParm = false;
605  for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
606    ParmVarDecl *Param = FD->getParamDecl(p);
607
608    // C99 6.7.5.3p4: the parameters in a parameter type list in a
609    // function declarator that is part of a function definition of
610    // that function shall not have incomplete type.
611    if (Param->getType()->isIncompleteType() &&
612        !Param->isInvalidDecl()) {
613      Diag(Param->getLocation(), diag::err_typecheck_decl_incomplete_type)
614        << Param->getType();
615      Param->setInvalidDecl();
616      HasInvalidParm = true;
617    }
618  }
619
620  return HasInvalidParm;
621}
622
623/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
624/// no declarator (e.g. "struct foo;") is parsed.
625Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
626  // TODO: emit error on 'int;' or 'const enum foo;'.
627  // TODO: emit error on 'typedef int;'
628  // if (!DS.isMissingDeclaratorOk()) Diag(...);
629
630  return dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
631}
632
633bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
634  // Get the type before calling CheckSingleAssignmentConstraints(), since
635  // it can promote the expression.
636  QualType InitType = Init->getType();
637
638  AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
639  return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
640                                  InitType, Init, "initializing");
641}
642
643bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
644  const ArrayType *AT = Context.getAsArrayType(DeclT);
645
646  if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
647    // C99 6.7.8p14. We have an array of character type with unknown size
648    // being initialized to a string literal.
649    llvm::APSInt ConstVal(32);
650    ConstVal = strLiteral->getByteLength() + 1;
651    // Return a new array type (C99 6.7.8p22).
652    DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
653                                         ArrayType::Normal, 0);
654  } else {
655    const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
656    // C99 6.7.8p14. We have an array of character type with known size.
657    // FIXME: Avoid truncation for 64-bit length strings.
658    if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
659      Diag(strLiteral->getSourceRange().getBegin(),
660           diag::warn_initializer_string_for_char_array_too_long)
661        << strLiteral->getSourceRange();
662  }
663  // Set type from "char *" to "constant array of char".
664  strLiteral->setType(DeclT);
665  // For now, we always return false (meaning success).
666  return false;
667}
668
669StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
670  const ArrayType *AT = Context.getAsArrayType(DeclType);
671  if (AT && AT->getElementType()->isCharType()) {
672    return dyn_cast<StringLiteral>(Init);
673  }
674  return 0;
675}
676
677bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
678                                 SourceLocation InitLoc,
679                                 DeclarationName InitEntity) {
680  // C++ [dcl.init.ref]p1:
681  //   A variable declared to be a T&, that is� "reference to type T�"
682  //   (8.3.2), shall be initialized by an object, or function, of
683  //   type T or by an object that can be converted into a T.
684  if (DeclType->isReferenceType())
685    return CheckReferenceInit(Init, DeclType);
686
687  // C99 6.7.8p3: The type of the entity to be initialized shall be an array
688  // of unknown size ("[]") or an object type that is not a variable array type.
689  if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
690    return Diag(InitLoc,  diag::err_variable_object_no_init)
691      << VAT->getSizeExpr()->getSourceRange();
692
693  InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
694  if (!InitList) {
695    // FIXME: Handle wide strings
696    if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
697      return CheckStringLiteralInit(strLiteral, DeclType);
698
699    // C++ [dcl.init]p14:
700    //   -- If the destination type is a (possibly cv-qualified) class
701    //      type:
702    if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
703      QualType DeclTypeC = Context.getCanonicalType(DeclType);
704      QualType InitTypeC = Context.getCanonicalType(Init->getType());
705
706      //   -- If the initialization is direct-initialization, or if it is
707      //      copy-initialization where the cv-unqualified version of the
708      //      source type is the same class as, or a derived class of, the
709      //      class of the destination, constructors are considered.
710      if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
711          IsDerivedFrom(InitTypeC, DeclTypeC)) {
712        CXXConstructorDecl *Constructor
713          = PerformInitializationByConstructor(DeclType, &Init, 1,
714                                               InitLoc, Init->getSourceRange(),
715                                               InitEntity, IK_Copy);
716        return Constructor == 0;
717      }
718
719      //   -- Otherwise (i.e., for the remaining copy-initialization
720      //      cases), user-defined conversion sequences that can
721      //      convert from the source type to the destination type or
722      //      (when a conversion function is used) to a derived class
723      //      thereof are enumerated as described in 13.3.1.4, and the
724      //      best one is chosen through overload resolution
725      //      (13.3). If the conversion cannot be done or is
726      //      ambiguous, the initialization is ill-formed. The
727      //      function selected is called with the initializer
728      //      expression as its argument; if the function is a
729      //      constructor, the call initializes a temporary of the
730      //      destination type.
731      // FIXME: We're pretending to do copy elision here; return to
732      // this when we have ASTs for such things.
733      if (!PerformImplicitConversion(Init, DeclType))
734        return false;
735
736      return Diag(InitLoc, diag::err_typecheck_convert_incompatible)
737        << DeclType << InitEntity << "initializing"
738        << Init->getSourceRange();
739    }
740
741    // C99 6.7.8p16.
742    if (DeclType->isArrayType())
743      return Diag(Init->getLocStart(), diag::err_array_init_list_required)
744        << Init->getSourceRange();
745
746    return CheckSingleInitializer(Init, DeclType);
747  } else if (getLangOptions().CPlusPlus) {
748    // C++ [dcl.init]p14:
749    //   [...] If the class is an aggregate (8.5.1), and the initializer
750    //   is a brace-enclosed list, see 8.5.1.
751    //
752    // Note: 8.5.1 is handled below; here, we diagnose the case where
753    // we have an initializer list and a destination type that is not
754    // an aggregate.
755    // FIXME: In C++0x, this is yet another form of initialization.
756    if (const RecordType *ClassRec = DeclType->getAsRecordType()) {
757      const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
758      if (!ClassDecl->isAggregate())
759        return Diag(InitLoc, diag::err_init_non_aggr_init_list)
760           << DeclType.getAsString() << Init->getSourceRange();
761    }
762  }
763
764  InitListChecker CheckInitList(this, InitList, DeclType);
765  return CheckInitList.HadError();
766}
767
768/// GetNameForDeclarator - Determine the full declaration name for the
769/// given Declarator.
770DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
771  switch (D.getKind()) {
772  case Declarator::DK_Abstract:
773    assert(D.getIdentifier() == 0 && "abstract declarators have no name");
774    return DeclarationName();
775
776  case Declarator::DK_Normal:
777    assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
778    return DeclarationName(D.getIdentifier());
779
780  case Declarator::DK_Constructor: {
781    QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
782    Ty = Context.getCanonicalType(Ty);
783    return Context.DeclarationNames.getCXXConstructorName(Ty);
784  }
785
786  case Declarator::DK_Destructor: {
787    QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
788    Ty = Context.getCanonicalType(Ty);
789    return Context.DeclarationNames.getCXXDestructorName(Ty);
790  }
791
792  case Declarator::DK_Conversion: {
793    QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
794    Ty = Context.getCanonicalType(Ty);
795    return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
796  }
797
798  case Declarator::DK_Operator:
799    assert(D.getIdentifier() == 0 && "operator names have no identifier");
800    return Context.DeclarationNames.getCXXOperatorName(
801                                                D.getOverloadedOperator());
802  }
803
804  assert(false && "Unknown name kind");
805  return DeclarationName();
806}
807
808Sema::DeclTy *
809Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
810  ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
811  DeclarationName Name = GetNameForDeclarator(D);
812
813  // All of these full declarators require an identifier.  If it doesn't have
814  // one, the ParsedFreeStandingDeclSpec action should be used.
815  if (!Name) {
816    if (!D.getInvalidType())  // Reject this if we think it is valid.
817      Diag(D.getDeclSpec().getSourceRange().getBegin(),
818           diag::err_declarator_need_ident)
819        << D.getDeclSpec().getSourceRange() << D.getSourceRange();
820    return 0;
821  }
822
823  // The scope passed in may not be a decl scope.  Zip up the scope tree until
824  // we find one that is.
825  while ((S->getFlags() & Scope::DeclScope) == 0)
826    S = S->getParent();
827
828  DeclContext *DC;
829  Decl *PrevDecl;
830  ScopedDecl *New;
831  bool InvalidDecl = false;
832
833  // See if this is a redefinition of a variable in the same scope.
834  if (!D.getCXXScopeSpec().isSet()) {
835    DC = CurContext;
836    PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S);
837  } else { // Something like "int foo::x;"
838    DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
839    PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S, DC);
840
841    // C++ 7.3.1.2p2:
842    // Members (including explicit specializations of templates) of a named
843    // namespace can also be defined outside that namespace by explicit
844    // qualification of the name being defined, provided that the entity being
845    // defined was already declared in the namespace and the definition appears
846    // after the point of declaration in a namespace that encloses the
847    // declarations namespace.
848    //
849    if (PrevDecl == 0) {
850      // No previous declaration in the qualifying scope.
851      Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
852        << Name << D.getCXXScopeSpec().getRange();
853    } else if (!CurContext->Encloses(DC)) {
854      // The qualifying scope doesn't enclose the original declaration.
855      // Emit diagnostic based on current scope.
856      SourceLocation L = D.getIdentifierLoc();
857      SourceRange R = D.getCXXScopeSpec().getRange();
858      if (isa<FunctionDecl>(CurContext)) {
859        Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
860      } else {
861        Diag(L, diag::err_invalid_declarator_scope)
862          << Name << cast<NamedDecl>(DC)->getDeclName() << R;
863      }
864    }
865  }
866
867  // In C++, the previous declaration we find might be a tag type
868  // (class or enum). In this case, the new declaration will hide the
869  // tag type.
870  if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
871    PrevDecl = 0;
872
873  QualType R = GetTypeForDeclarator(D, S);
874  assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
875
876  if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
877    // Check that there are no default arguments (C++ only).
878    if (getLangOptions().CPlusPlus)
879      CheckExtraCXXDefaultArguments(D);
880
881    TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
882    if (!NewTD) return 0;
883
884    // Handle attributes prior to checking for duplicates in MergeVarDecl
885    ProcessDeclAttributes(NewTD, D);
886    // Merge the decl with the existing one if appropriate. If the decl is
887    // in an outer scope, it isn't the same thing.
888    if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
889      NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
890      if (NewTD == 0) return 0;
891    }
892    New = NewTD;
893    if (S->getFnParent() == 0) {
894      // C99 6.7.7p2: If a typedef name specifies a variably modified type
895      // then it shall have block scope.
896      if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
897        // FIXME: Diagnostic needs to be fixed.
898        Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla);
899        InvalidDecl = true;
900      }
901    }
902  } else if (R.getTypePtr()->isFunctionType()) {
903    FunctionDecl::StorageClass SC = FunctionDecl::None;
904    switch (D.getDeclSpec().getStorageClassSpec()) {
905      default: assert(0 && "Unknown storage class!");
906      case DeclSpec::SCS_auto:
907      case DeclSpec::SCS_register:
908      case DeclSpec::SCS_mutable:
909        Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func)
910          << R.getAsString();
911        InvalidDecl = true;
912        break;
913      case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
914      case DeclSpec::SCS_extern:      SC = FunctionDecl::Extern; break;
915      case DeclSpec::SCS_static:      SC = FunctionDecl::Static; break;
916      case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
917    }
918
919    bool isInline = D.getDeclSpec().isInlineSpecified();
920    // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
921    bool isExplicit = D.getDeclSpec().isExplicitSpecified();
922
923    FunctionDecl *NewFD;
924    if (D.getKind() == Declarator::DK_Constructor) {
925      // This is a C++ constructor declaration.
926      assert(DC->isCXXRecord() &&
927             "Constructors can only be declared in a member context");
928
929      bool isInvalidDecl = CheckConstructorDeclarator(D, R, SC);
930
931      // Create the new declaration
932      NewFD = CXXConstructorDecl::Create(Context,
933                                         cast<CXXRecordDecl>(DC),
934                                         D.getIdentifierLoc(), Name, R,
935                                         isExplicit, isInline,
936                                         /*isImplicitlyDeclared=*/false);
937
938      if (isInvalidDecl)
939        NewFD->setInvalidDecl();
940    } else if (D.getKind() == Declarator::DK_Destructor) {
941      // This is a C++ destructor declaration.
942      if (DC->isCXXRecord()) {
943        bool isInvalidDecl = CheckDestructorDeclarator(D, R, SC);
944
945        NewFD = CXXDestructorDecl::Create(Context,
946                                          cast<CXXRecordDecl>(DC),
947                                          D.getIdentifierLoc(), Name, R,
948                                          isInline,
949                                          /*isImplicitlyDeclared=*/false);
950
951        if (isInvalidDecl)
952          NewFD->setInvalidDecl();
953      } else {
954        Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
955        // Create a FunctionDecl to satisfy the function definition parsing
956        // code path.
957        NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
958                                     Name, R, SC, isInline, LastDeclarator,
959                                     // FIXME: Move to DeclGroup...
960                                   D.getDeclSpec().getSourceRange().getBegin());
961        NewFD->setInvalidDecl();
962      }
963    } else if (D.getKind() == Declarator::DK_Conversion) {
964      if (!DC->isCXXRecord()) {
965        Diag(D.getIdentifierLoc(),
966             diag::err_conv_function_not_member);
967        return 0;
968      } else {
969        bool isInvalidDecl = CheckConversionDeclarator(D, R, SC);
970
971        NewFD = CXXConversionDecl::Create(Context,
972                                          cast<CXXRecordDecl>(DC),
973                                          D.getIdentifierLoc(), Name, R,
974                                          isInline, isExplicit);
975
976        if (isInvalidDecl)
977          NewFD->setInvalidDecl();
978      }
979    } else if (DC->isCXXRecord()) {
980      // This is a C++ method declaration.
981      NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
982                                    D.getIdentifierLoc(), Name, R,
983                                    (SC == FunctionDecl::Static), isInline,
984                                    LastDeclarator);
985    } else {
986      NewFD = FunctionDecl::Create(Context, DC,
987                                   D.getIdentifierLoc(),
988                                   Name, R, SC, isInline, LastDeclarator,
989                                   // FIXME: Move to DeclGroup...
990                                   D.getDeclSpec().getSourceRange().getBegin());
991    }
992    // Handle attributes.
993    ProcessDeclAttributes(NewFD, D);
994
995    // Handle GNU asm-label extension (encoded as an attribute).
996    if (Expr *E = (Expr*) D.getAsmLabel()) {
997      // The parser guarantees this is a string.
998      StringLiteral *SE = cast<StringLiteral>(E);
999      NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1000                                                  SE->getByteLength())));
1001    }
1002
1003    // Copy the parameter declarations from the declarator D to
1004    // the function declaration NewFD, if they are available.
1005    if (D.getNumTypeObjects() > 0) {
1006      DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1007
1008      // Create Decl objects for each parameter, adding them to the
1009      // FunctionDecl.
1010      llvm::SmallVector<ParmVarDecl*, 16> Params;
1011
1012      // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1013      // function that takes no arguments, not a function that takes a
1014      // single void argument.
1015      // We let through "const void" here because Sema::GetTypeForDeclarator
1016      // already checks for that case.
1017      if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1018          FTI.ArgInfo[0].Param &&
1019          ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1020        // empty arg list, don't push any params.
1021        ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1022
1023        // In C++, the empty parameter-type-list must be spelled "void"; a
1024        // typedef of void is not permitted.
1025        if (getLangOptions().CPlusPlus &&
1026            Param->getType().getUnqualifiedType() != Context.VoidTy) {
1027          Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1028        }
1029      } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1030        for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1031          Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1032      }
1033
1034      NewFD->setParams(&Params[0], Params.size());
1035    } else if (R->getAsTypedefType()) {
1036      // When we're declaring a function with a typedef, as in the
1037      // following example, we'll need to synthesize (unnamed)
1038      // parameters for use in the declaration.
1039      //
1040      // @code
1041      // typedef void fn(int);
1042      // fn f;
1043      // @endcode
1044      const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1045      if (!FT) {
1046        // This is a typedef of a function with no prototype, so we
1047        // don't need to do anything.
1048      } else if ((FT->getNumArgs() == 0) ||
1049          (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1050           FT->getArgType(0)->isVoidType())) {
1051        // This is a zero-argument function. We don't need to do anything.
1052      } else {
1053        // Synthesize a parameter for each argument type.
1054        llvm::SmallVector<ParmVarDecl*, 16> Params;
1055        for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1056             ArgType != FT->arg_type_end(); ++ArgType) {
1057          Params.push_back(ParmVarDecl::Create(Context, DC,
1058                                               SourceLocation(), 0,
1059                                               *ArgType, VarDecl::None,
1060                                               0, 0));
1061        }
1062
1063        NewFD->setParams(&Params[0], Params.size());
1064      }
1065    }
1066
1067    // C++ constructors and destructors are handled by separate
1068    // routines, since they don't require any declaration merging (C++
1069    // [class.mfct]p2) and they aren't ever pushed into scope, because
1070    // they can't be found by name lookup anyway (C++ [class.ctor]p2).
1071    if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1072      return ActOnConstructorDeclarator(Constructor);
1073    else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(NewFD))
1074      return ActOnDestructorDeclarator(Destructor);
1075
1076    // Extra checking for conversion functions, including recording
1077    // the conversion function in its class.
1078    if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(NewFD))
1079      ActOnConversionDeclarator(Conversion);
1080
1081    // Extra checking for C++ overloaded operators (C++ [over.oper]).
1082    if (NewFD->isOverloadedOperator() &&
1083        CheckOverloadedOperatorDeclaration(NewFD))
1084      NewFD->setInvalidDecl();
1085
1086    // Merge the decl with the existing one if appropriate. Since C functions
1087    // are in a flat namespace, make sure we consider decls in outer scopes.
1088    if (PrevDecl &&
1089        (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
1090      bool Redeclaration = false;
1091
1092      // If C++, determine whether NewFD is an overload of PrevDecl or
1093      // a declaration that requires merging. If it's an overload,
1094      // there's no more work to do here; we'll just add the new
1095      // function to the scope.
1096      OverloadedFunctionDecl::function_iterator MatchedDecl;
1097      if (!getLangOptions().CPlusPlus ||
1098          !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
1099        Decl *OldDecl = PrevDecl;
1100
1101        // If PrevDecl was an overloaded function, extract the
1102        // FunctionDecl that matched.
1103        if (isa<OverloadedFunctionDecl>(PrevDecl))
1104          OldDecl = *MatchedDecl;
1105
1106        // NewFD and PrevDecl represent declarations that need to be
1107        // merged.
1108        NewFD = MergeFunctionDecl(NewFD, OldDecl, Redeclaration);
1109
1110        if (NewFD == 0) return 0;
1111        if (Redeclaration) {
1112          NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1113
1114          if (OldDecl == PrevDecl) {
1115            // Remove the name binding for the previous
1116            // declaration. We'll add the binding back later, but then
1117            // it will refer to the new declaration (which will
1118            // contain more information).
1119            IdResolver.RemoveDecl(cast<NamedDecl>(PrevDecl));
1120          } else {
1121            // We need to update the OverloadedFunctionDecl with the
1122            // latest declaration of this function, so that name
1123            // lookup will always refer to the latest declaration of
1124            // this function.
1125            *MatchedDecl = NewFD;
1126
1127            // Add the redeclaration to the current scope, since we'll
1128            // be skipping PushOnScopeChains.
1129            S->AddDecl(NewFD);
1130
1131            return NewFD;
1132          }
1133        }
1134      }
1135    }
1136    New = NewFD;
1137
1138    // In C++, check default arguments now that we have merged decls.
1139    if (getLangOptions().CPlusPlus)
1140      CheckCXXDefaultArguments(NewFD);
1141  } else {
1142    // Check that there are no default arguments (C++ only).
1143    if (getLangOptions().CPlusPlus)
1144      CheckExtraCXXDefaultArguments(D);
1145
1146    if (R.getTypePtr()->isObjCInterfaceType()) {
1147      Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object)
1148        << D.getIdentifier();
1149      InvalidDecl = true;
1150    }
1151
1152    VarDecl *NewVD;
1153    VarDecl::StorageClass SC;
1154    switch (D.getDeclSpec().getStorageClassSpec()) {
1155    default: assert(0 && "Unknown storage class!");
1156    case DeclSpec::SCS_unspecified:    SC = VarDecl::None; break;
1157    case DeclSpec::SCS_extern:         SC = VarDecl::Extern; break;
1158    case DeclSpec::SCS_static:         SC = VarDecl::Static; break;
1159    case DeclSpec::SCS_auto:           SC = VarDecl::Auto; break;
1160    case DeclSpec::SCS_register:       SC = VarDecl::Register; break;
1161    case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1162    case DeclSpec::SCS_mutable:
1163      // mutable can only appear on non-static class members, so it's always
1164      // an error here
1165      Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1166      InvalidDecl = true;
1167      break;
1168    }
1169
1170    IdentifierInfo *II = Name.getAsIdentifierInfo();
1171    if (!II) {
1172      Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1173       << Name.getAsString();
1174      return 0;
1175    }
1176
1177    if (DC->isCXXRecord()) {
1178      assert(SC == VarDecl::Static && "Invalid storage class for member!");
1179      // This is a static data member for a C++ class.
1180      NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
1181                                      D.getIdentifierLoc(), II,
1182                                      R, LastDeclarator);
1183    } else {
1184      bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
1185      if (S->getFnParent() == 0) {
1186        // C99 6.9p2: The storage-class specifiers auto and register shall not
1187        // appear in the declaration specifiers in an external declaration.
1188        if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1189          Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope)
1190            << R.getAsString();
1191          InvalidDecl = true;
1192        }
1193      }
1194      NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
1195                              II, R, SC, LastDeclarator,
1196                              // FIXME: Move to DeclGroup...
1197                              D.getDeclSpec().getSourceRange().getBegin());
1198      NewVD->setThreadSpecified(ThreadSpecified);
1199    }
1200    // Handle attributes prior to checking for duplicates in MergeVarDecl
1201    ProcessDeclAttributes(NewVD, D);
1202
1203    // Handle GNU asm-label extension (encoded as an attribute).
1204    if (Expr *E = (Expr*) D.getAsmLabel()) {
1205      // The parser guarantees this is a string.
1206      StringLiteral *SE = cast<StringLiteral>(E);
1207      NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1208                                                  SE->getByteLength())));
1209    }
1210
1211    // Emit an error if an address space was applied to decl with local storage.
1212    // This includes arrays of objects with address space qualifiers, but not
1213    // automatic variables that point to other address spaces.
1214    // ISO/IEC TR 18037 S5.1.2
1215    if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1216      Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1217      InvalidDecl = true;
1218    }
1219    // Merge the decl with the existing one if appropriate. If the decl is
1220    // in an outer scope, it isn't the same thing.
1221    if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1222      NewVD = MergeVarDecl(NewVD, PrevDecl);
1223      if (NewVD == 0) return 0;
1224    }
1225    New = NewVD;
1226  }
1227
1228  // Set the lexical context. If the declarator has a C++ scope specifier, the
1229  // lexical context will be different from the semantic context.
1230  New->setLexicalDeclContext(CurContext);
1231
1232  // If this has an identifier, add it to the scope stack.
1233  if (Name)
1234    PushOnScopeChains(New, S);
1235  // If any semantic error occurred, mark the decl as invalid.
1236  if (D.getInvalidType() || InvalidDecl)
1237    New->setInvalidDecl();
1238
1239  return New;
1240}
1241
1242void Sema::InitializerElementNotConstant(const Expr *Init) {
1243  Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1244    << Init->getSourceRange();
1245}
1246
1247bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1248  switch (Init->getStmtClass()) {
1249  default:
1250    InitializerElementNotConstant(Init);
1251    return true;
1252  case Expr::ParenExprClass: {
1253    const ParenExpr* PE = cast<ParenExpr>(Init);
1254    return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1255  }
1256  case Expr::CompoundLiteralExprClass:
1257    return cast<CompoundLiteralExpr>(Init)->isFileScope();
1258  case Expr::DeclRefExprClass: {
1259    const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
1260    if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1261      if (VD->hasGlobalStorage())
1262        return false;
1263      InitializerElementNotConstant(Init);
1264      return true;
1265    }
1266    if (isa<FunctionDecl>(D))
1267      return false;
1268    InitializerElementNotConstant(Init);
1269    return true;
1270  }
1271  case Expr::MemberExprClass: {
1272    const MemberExpr *M = cast<MemberExpr>(Init);
1273    if (M->isArrow())
1274      return CheckAddressConstantExpression(M->getBase());
1275    return CheckAddressConstantExpressionLValue(M->getBase());
1276  }
1277  case Expr::ArraySubscriptExprClass: {
1278    // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1279    const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1280    return CheckAddressConstantExpression(ASE->getBase()) ||
1281           CheckArithmeticConstantExpression(ASE->getIdx());
1282  }
1283  case Expr::StringLiteralClass:
1284  case Expr::PredefinedExprClass:
1285    return false;
1286  case Expr::UnaryOperatorClass: {
1287    const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1288
1289    // C99 6.6p9
1290    if (Exp->getOpcode() == UnaryOperator::Deref)
1291      return CheckAddressConstantExpression(Exp->getSubExpr());
1292
1293    InitializerElementNotConstant(Init);
1294    return true;
1295  }
1296  }
1297}
1298
1299bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1300  switch (Init->getStmtClass()) {
1301  default:
1302    InitializerElementNotConstant(Init);
1303    return true;
1304  case Expr::ParenExprClass:
1305    return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
1306  case Expr::StringLiteralClass:
1307  case Expr::ObjCStringLiteralClass:
1308    return false;
1309  case Expr::CallExprClass:
1310  case Expr::CXXOperatorCallExprClass:
1311    // __builtin___CFStringMakeConstantString is a valid constant l-value.
1312    if (cast<CallExpr>(Init)->isBuiltinCall() ==
1313           Builtin::BI__builtin___CFStringMakeConstantString)
1314      return false;
1315
1316    InitializerElementNotConstant(Init);
1317    return true;
1318
1319  case Expr::UnaryOperatorClass: {
1320    const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1321
1322    // C99 6.6p9
1323    if (Exp->getOpcode() == UnaryOperator::AddrOf)
1324      return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1325
1326    if (Exp->getOpcode() == UnaryOperator::Extension)
1327      return CheckAddressConstantExpression(Exp->getSubExpr());
1328
1329    InitializerElementNotConstant(Init);
1330    return true;
1331  }
1332  case Expr::BinaryOperatorClass: {
1333    // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1334    const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1335
1336    Expr *PExp = Exp->getLHS();
1337    Expr *IExp = Exp->getRHS();
1338    if (IExp->getType()->isPointerType())
1339      std::swap(PExp, IExp);
1340
1341    // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1342    return CheckAddressConstantExpression(PExp) ||
1343           CheckArithmeticConstantExpression(IExp);
1344  }
1345  case Expr::ImplicitCastExprClass:
1346  case Expr::CStyleCastExprClass: {
1347    const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
1348    if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1349      // Check for implicit promotion
1350      if (SubExpr->getType()->isFunctionType() ||
1351          SubExpr->getType()->isArrayType())
1352        return CheckAddressConstantExpressionLValue(SubExpr);
1353    }
1354
1355    // Check for pointer->pointer cast
1356    if (SubExpr->getType()->isPointerType())
1357      return CheckAddressConstantExpression(SubExpr);
1358
1359    if (SubExpr->getType()->isIntegralType()) {
1360      // Check for the special-case of a pointer->int->pointer cast;
1361      // this isn't standard, but some code requires it. See
1362      // PR2720 for an example.
1363      if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1364        if (SubCast->getSubExpr()->getType()->isPointerType()) {
1365          unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1366          unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1367          if (IntWidth >= PointerWidth) {
1368            return CheckAddressConstantExpression(SubCast->getSubExpr());
1369          }
1370        }
1371      }
1372    }
1373    if (SubExpr->getType()->isArithmeticType()) {
1374      return CheckArithmeticConstantExpression(SubExpr);
1375    }
1376
1377    InitializerElementNotConstant(Init);
1378    return true;
1379  }
1380  case Expr::ConditionalOperatorClass: {
1381    // FIXME: Should we pedwarn here?
1382    const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1383    if (!Exp->getCond()->getType()->isArithmeticType()) {
1384      InitializerElementNotConstant(Init);
1385      return true;
1386    }
1387    if (CheckArithmeticConstantExpression(Exp->getCond()))
1388      return true;
1389    if (Exp->getLHS() &&
1390        CheckAddressConstantExpression(Exp->getLHS()))
1391      return true;
1392    return CheckAddressConstantExpression(Exp->getRHS());
1393  }
1394  case Expr::AddrLabelExprClass:
1395    return false;
1396  }
1397}
1398
1399static const Expr* FindExpressionBaseAddress(const Expr* E);
1400
1401static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
1402  switch (E->getStmtClass()) {
1403  default:
1404    return E;
1405  case Expr::ParenExprClass: {
1406    const ParenExpr* PE = cast<ParenExpr>(E);
1407    return FindExpressionBaseAddressLValue(PE->getSubExpr());
1408  }
1409  case Expr::MemberExprClass: {
1410    const MemberExpr *M = cast<MemberExpr>(E);
1411    if (M->isArrow())
1412      return FindExpressionBaseAddress(M->getBase());
1413    return FindExpressionBaseAddressLValue(M->getBase());
1414  }
1415  case Expr::ArraySubscriptExprClass: {
1416    const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1417    return FindExpressionBaseAddress(ASE->getBase());
1418  }
1419  case Expr::UnaryOperatorClass: {
1420    const UnaryOperator *Exp = cast<UnaryOperator>(E);
1421
1422    if (Exp->getOpcode() == UnaryOperator::Deref)
1423      return FindExpressionBaseAddress(Exp->getSubExpr());
1424
1425    return E;
1426  }
1427  }
1428}
1429
1430static const Expr* FindExpressionBaseAddress(const Expr* E) {
1431  switch (E->getStmtClass()) {
1432  default:
1433    return E;
1434  case Expr::ParenExprClass: {
1435    const ParenExpr* PE = cast<ParenExpr>(E);
1436    return FindExpressionBaseAddress(PE->getSubExpr());
1437  }
1438  case Expr::UnaryOperatorClass: {
1439    const UnaryOperator *Exp = cast<UnaryOperator>(E);
1440
1441    // C99 6.6p9
1442    if (Exp->getOpcode() == UnaryOperator::AddrOf)
1443      return FindExpressionBaseAddressLValue(Exp->getSubExpr());
1444
1445    if (Exp->getOpcode() == UnaryOperator::Extension)
1446      return FindExpressionBaseAddress(Exp->getSubExpr());
1447
1448    return E;
1449  }
1450  case Expr::BinaryOperatorClass: {
1451    const BinaryOperator *Exp = cast<BinaryOperator>(E);
1452
1453    Expr *PExp = Exp->getLHS();
1454    Expr *IExp = Exp->getRHS();
1455    if (IExp->getType()->isPointerType())
1456      std::swap(PExp, IExp);
1457
1458    return FindExpressionBaseAddress(PExp);
1459  }
1460  case Expr::ImplicitCastExprClass: {
1461    const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
1462
1463    // Check for implicit promotion
1464    if (SubExpr->getType()->isFunctionType() ||
1465        SubExpr->getType()->isArrayType())
1466      return FindExpressionBaseAddressLValue(SubExpr);
1467
1468    // Check for pointer->pointer cast
1469    if (SubExpr->getType()->isPointerType())
1470      return FindExpressionBaseAddress(SubExpr);
1471
1472    // We assume that we have an arithmetic expression here;
1473    // if we don't, we'll figure it out later
1474    return 0;
1475  }
1476  case Expr::CStyleCastExprClass: {
1477    const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
1478
1479    // Check for pointer->pointer cast
1480    if (SubExpr->getType()->isPointerType())
1481      return FindExpressionBaseAddress(SubExpr);
1482
1483    // We assume that we have an arithmetic expression here;
1484    // if we don't, we'll figure it out later
1485    return 0;
1486  }
1487  }
1488}
1489
1490bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
1491  switch (Init->getStmtClass()) {
1492  default:
1493    InitializerElementNotConstant(Init);
1494    return true;
1495  case Expr::ParenExprClass: {
1496    const ParenExpr* PE = cast<ParenExpr>(Init);
1497    return CheckArithmeticConstantExpression(PE->getSubExpr());
1498  }
1499  case Expr::FloatingLiteralClass:
1500  case Expr::IntegerLiteralClass:
1501  case Expr::CharacterLiteralClass:
1502  case Expr::ImaginaryLiteralClass:
1503  case Expr::TypesCompatibleExprClass:
1504  case Expr::CXXBoolLiteralExprClass:
1505    return false;
1506  case Expr::CallExprClass:
1507  case Expr::CXXOperatorCallExprClass: {
1508    const CallExpr *CE = cast<CallExpr>(Init);
1509
1510    // Allow any constant foldable calls to builtins.
1511    if (CE->isBuiltinCall() && CE->isEvaluatable(Context))
1512      return false;
1513
1514    InitializerElementNotConstant(Init);
1515    return true;
1516  }
1517  case Expr::DeclRefExprClass: {
1518    const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
1519    if (isa<EnumConstantDecl>(D))
1520      return false;
1521    InitializerElementNotConstant(Init);
1522    return true;
1523  }
1524  case Expr::CompoundLiteralExprClass:
1525    // Allow "(vector type){2,4}"; normal C constraints don't allow this,
1526    // but vectors are allowed to be magic.
1527    if (Init->getType()->isVectorType())
1528      return false;
1529    InitializerElementNotConstant(Init);
1530    return true;
1531  case Expr::UnaryOperatorClass: {
1532    const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1533
1534    switch (Exp->getOpcode()) {
1535    // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1536    // See C99 6.6p3.
1537    default:
1538      InitializerElementNotConstant(Init);
1539      return true;
1540    case UnaryOperator::OffsetOf:
1541      if (Exp->getSubExpr()->getType()->isConstantSizeType())
1542        return false;
1543      InitializerElementNotConstant(Init);
1544      return true;
1545    case UnaryOperator::Extension:
1546    case UnaryOperator::LNot:
1547    case UnaryOperator::Plus:
1548    case UnaryOperator::Minus:
1549    case UnaryOperator::Not:
1550      return CheckArithmeticConstantExpression(Exp->getSubExpr());
1551    }
1552  }
1553  case Expr::SizeOfAlignOfExprClass: {
1554    const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
1555    // Special check for void types, which are allowed as an extension
1556    if (Exp->getTypeOfArgument()->isVoidType())
1557      return false;
1558    // alignof always evaluates to a constant.
1559    // FIXME: is sizeof(int[3.0]) a constant expression?
1560    if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
1561      InitializerElementNotConstant(Init);
1562      return true;
1563    }
1564    return false;
1565  }
1566  case Expr::BinaryOperatorClass: {
1567    const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1568
1569    if (Exp->getLHS()->getType()->isArithmeticType() &&
1570        Exp->getRHS()->getType()->isArithmeticType()) {
1571      return CheckArithmeticConstantExpression(Exp->getLHS()) ||
1572             CheckArithmeticConstantExpression(Exp->getRHS());
1573    }
1574
1575    if (Exp->getLHS()->getType()->isPointerType() &&
1576        Exp->getRHS()->getType()->isPointerType()) {
1577      const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
1578      const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
1579
1580      // Only allow a null (constant integer) base; we could
1581      // allow some additional cases if necessary, but this
1582      // is sufficient to cover offsetof-like constructs.
1583      if (!LHSBase && !RHSBase) {
1584        return CheckAddressConstantExpression(Exp->getLHS()) ||
1585               CheckAddressConstantExpression(Exp->getRHS());
1586      }
1587    }
1588
1589    InitializerElementNotConstant(Init);
1590    return true;
1591  }
1592  case Expr::ImplicitCastExprClass:
1593  case Expr::CStyleCastExprClass: {
1594    const Expr *SubExpr = cast<CastExpr>(Init)->getSubExpr();
1595    if (SubExpr->getType()->isArithmeticType())
1596      return CheckArithmeticConstantExpression(SubExpr);
1597
1598    if (SubExpr->getType()->isPointerType()) {
1599      const Expr* Base = FindExpressionBaseAddress(SubExpr);
1600      // If the pointer has a null base, this is an offsetof-like construct
1601      if (!Base)
1602        return CheckAddressConstantExpression(SubExpr);
1603    }
1604
1605    InitializerElementNotConstant(Init);
1606    return true;
1607  }
1608  case Expr::ConditionalOperatorClass: {
1609    const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1610
1611    // If GNU extensions are disabled, we require all operands to be arithmetic
1612    // constant expressions.
1613    if (getLangOptions().NoExtensions) {
1614      return CheckArithmeticConstantExpression(Exp->getCond()) ||
1615          (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
1616             CheckArithmeticConstantExpression(Exp->getRHS());
1617    }
1618
1619    // Otherwise, we have to emulate some of the behavior of fold here.
1620    // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
1621    // because it can constant fold things away.  To retain compatibility with
1622    // GCC code, we see if we can fold the condition to a constant (which we
1623    // should always be able to do in theory).  If so, we only require the
1624    // specified arm of the conditional to be a constant.  This is a horrible
1625    // hack, but is require by real world code that uses __builtin_constant_p.
1626    APValue Val;
1627    if (!Exp->getCond()->Evaluate(Val, Context)) {
1628      // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
1629      // won't be able to either.  Use it to emit the diagnostic though.
1630      bool Res = CheckArithmeticConstantExpression(Exp->getCond());
1631      assert(Res && "Evaluate couldn't evaluate this constant?");
1632      return Res;
1633    }
1634
1635    // Verify that the side following the condition is also a constant.
1636    const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
1637    if (Val.getInt() == 0)
1638      std::swap(TrueSide, FalseSide);
1639
1640    if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
1641      return true;
1642
1643    // Okay, the evaluated side evaluates to a constant, so we accept this.
1644    // Check to see if the other side is obviously not a constant.  If so,
1645    // emit a warning that this is a GNU extension.
1646    if (FalseSide && !FalseSide->isEvaluatable(Context))
1647      Diag(Init->getExprLoc(),
1648           diag::ext_typecheck_expression_not_constant_but_accepted)
1649        << FalseSide->getSourceRange();
1650    return false;
1651  }
1652  }
1653}
1654
1655bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
1656  Init = Init->IgnoreParens();
1657
1658  // Look through CXXDefaultArgExprs; they have no meaning in this context.
1659  if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
1660    return CheckForConstantInitializer(DAE->getExpr(), DclT);
1661
1662  if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
1663    return CheckForConstantInitializer(e->getInitializer(), DclT);
1664
1665  if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
1666    unsigned numInits = Exp->getNumInits();
1667    for (unsigned i = 0; i < numInits; i++) {
1668      // FIXME: Need to get the type of the declaration for C++,
1669      // because it could be a reference?
1670      if (CheckForConstantInitializer(Exp->getInit(i),
1671                                      Exp->getInit(i)->getType()))
1672        return true;
1673    }
1674    return false;
1675  }
1676
1677  if (Init->isNullPointerConstant(Context))
1678    return false;
1679  if (Init->getType()->isArithmeticType()) {
1680    QualType InitTy = Context.getCanonicalType(Init->getType())
1681                             .getUnqualifiedType();
1682    if (InitTy == Context.BoolTy) {
1683      // Special handling for pointers implicitly cast to bool;
1684      // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
1685      if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
1686        Expr* SubE = ICE->getSubExpr();
1687        if (SubE->getType()->isPointerType() ||
1688            SubE->getType()->isArrayType() ||
1689            SubE->getType()->isFunctionType()) {
1690          return CheckAddressConstantExpression(Init);
1691        }
1692      }
1693    } else if (InitTy->isIntegralType()) {
1694      Expr* SubE = 0;
1695      if (CastExpr* CE = dyn_cast<CastExpr>(Init))
1696        SubE = CE->getSubExpr();
1697      // Special check for pointer cast to int; we allow as an extension
1698      // an address constant cast to an integer if the integer
1699      // is of an appropriate width (this sort of code is apparently used
1700      // in some places).
1701      // FIXME: Add pedwarn?
1702      // FIXME: Don't allow bitfields here!  Need the FieldDecl for that.
1703      if (SubE && (SubE->getType()->isPointerType() ||
1704                   SubE->getType()->isArrayType() ||
1705                   SubE->getType()->isFunctionType())) {
1706        unsigned IntWidth = Context.getTypeSize(Init->getType());
1707        unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1708        if (IntWidth >= PointerWidth)
1709          return CheckAddressConstantExpression(Init);
1710      }
1711    }
1712
1713    return CheckArithmeticConstantExpression(Init);
1714  }
1715
1716  if (Init->getType()->isPointerType())
1717    return CheckAddressConstantExpression(Init);
1718
1719  // An array type at the top level that isn't an init-list must
1720  // be a string literal
1721  if (Init->getType()->isArrayType())
1722    return false;
1723
1724  if (Init->getType()->isFunctionType())
1725    return false;
1726
1727  // Allow block exprs at top level.
1728  if (Init->getType()->isBlockPointerType())
1729    return false;
1730
1731  InitializerElementNotConstant(Init);
1732  return true;
1733}
1734
1735void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
1736  Decl *RealDecl = static_cast<Decl *>(dcl);
1737  Expr *Init = static_cast<Expr *>(init);
1738  assert(Init && "missing initializer");
1739
1740  // If there is no declaration, there was an error parsing it.  Just ignore
1741  // the initializer.
1742  if (RealDecl == 0) {
1743    delete Init;
1744    return;
1745  }
1746
1747  VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
1748  if (!VDecl) {
1749    Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
1750         diag::err_illegal_initializer);
1751    RealDecl->setInvalidDecl();
1752    return;
1753  }
1754  // Get the decls type and save a reference for later, since
1755  // CheckInitializerTypes may change it.
1756  QualType DclT = VDecl->getType(), SavT = DclT;
1757  if (VDecl->isBlockVarDecl()) {
1758    VarDecl::StorageClass SC = VDecl->getStorageClass();
1759    if (SC == VarDecl::Extern) { // C99 6.7.8p5
1760      Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
1761      VDecl->setInvalidDecl();
1762    } else if (!VDecl->isInvalidDecl()) {
1763      if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
1764                                VDecl->getDeclName()))
1765        VDecl->setInvalidDecl();
1766
1767      // C++ 3.6.2p2, allow dynamic initialization of static initializers.
1768      if (!getLangOptions().CPlusPlus) {
1769        if (SC == VarDecl::Static) // C99 6.7.8p4.
1770          CheckForConstantInitializer(Init, DclT);
1771      }
1772    }
1773  } else if (VDecl->isFileVarDecl()) {
1774    if (VDecl->getStorageClass() == VarDecl::Extern)
1775      Diag(VDecl->getLocation(), diag::warn_extern_init);
1776    if (!VDecl->isInvalidDecl())
1777      if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
1778                                VDecl->getDeclName()))
1779        VDecl->setInvalidDecl();
1780
1781    // C++ 3.6.2p2, allow dynamic initialization of static initializers.
1782    if (!getLangOptions().CPlusPlus) {
1783      // C99 6.7.8p4. All file scoped initializers need to be constant.
1784      CheckForConstantInitializer(Init, DclT);
1785    }
1786  }
1787  // If the type changed, it means we had an incomplete type that was
1788  // completed by the initializer. For example:
1789  //   int ary[] = { 1, 3, 5 };
1790  // "ary" transitions from a VariableArrayType to a ConstantArrayType.
1791  if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
1792    VDecl->setType(DclT);
1793    Init->setType(DclT);
1794  }
1795
1796  // Attach the initializer to the decl.
1797  VDecl->setInit(Init);
1798  return;
1799}
1800
1801void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
1802  Decl *RealDecl = static_cast<Decl *>(dcl);
1803
1804  // If there is no declaration, there was an error parsing it. Just ignore it.
1805  if (RealDecl == 0)
1806    return;
1807
1808  if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
1809    QualType Type = Var->getType();
1810    // C++ [dcl.init.ref]p3:
1811    //   The initializer can be omitted for a reference only in a
1812    //   parameter declaration (8.3.5), in the declaration of a
1813    //   function return type, in the declaration of a class member
1814    //   within its class declaration (9.2), and where the extern
1815    //   specifier is explicitly used.
1816    if (Type->isReferenceType() && Var->getStorageClass() != VarDecl::Extern) {
1817      Diag(Var->getLocation(), diag::err_reference_var_requires_init)
1818        << Var->getDeclName()
1819        << SourceRange(Var->getLocation(), Var->getLocation());
1820      Var->setInvalidDecl();
1821      return;
1822    }
1823
1824    // C++ [dcl.init]p9:
1825    //
1826    //   If no initializer is specified for an object, and the object
1827    //   is of (possibly cv-qualified) non-POD class type (or array
1828    //   thereof), the object shall be default-initialized; if the
1829    //   object is of const-qualified type, the underlying class type
1830    //   shall have a user-declared default constructor.
1831    if (getLangOptions().CPlusPlus) {
1832      QualType InitType = Type;
1833      if (const ArrayType *Array = Context.getAsArrayType(Type))
1834        InitType = Array->getElementType();
1835      if (InitType->isRecordType()) {
1836        const CXXConstructorDecl *Constructor
1837          = PerformInitializationByConstructor(InitType, 0, 0,
1838                                               Var->getLocation(),
1839                                               SourceRange(Var->getLocation(),
1840                                                           Var->getLocation()),
1841                                               Var->getDeclName(),
1842                                               IK_Default);
1843        if (!Constructor)
1844          Var->setInvalidDecl();
1845      }
1846    }
1847
1848#if 0
1849    // FIXME: Temporarily disabled because we are not properly parsing
1850    // linkage specifications on declarations, e.g.,
1851    //
1852    //   extern "C" const CGPoint CGPointerZero;
1853    //
1854    // C++ [dcl.init]p9:
1855    //
1856    //     If no initializer is specified for an object, and the
1857    //     object is of (possibly cv-qualified) non-POD class type (or
1858    //     array thereof), the object shall be default-initialized; if
1859    //     the object is of const-qualified type, the underlying class
1860    //     type shall have a user-declared default
1861    //     constructor. Otherwise, if no initializer is specified for
1862    //     an object, the object and its subobjects, if any, have an
1863    //     indeterminate initial value; if the object or any of its
1864    //     subobjects are of const-qualified type, the program is
1865    //     ill-formed.
1866    //
1867    // This isn't technically an error in C, so we don't diagnose it.
1868    //
1869    // FIXME: Actually perform the POD/user-defined default
1870    // constructor check.
1871    if (getLangOptions().CPlusPlus &&
1872        Context.getCanonicalType(Type).isConstQualified() &&
1873        Var->getStorageClass() != VarDecl::Extern)
1874      Diag(Var->getLocation(),  diag::err_const_var_requires_init)
1875        << Var->getName()
1876        << SourceRange(Var->getLocation(), Var->getLocation());
1877#endif
1878  }
1879}
1880
1881/// The declarators are chained together backwards, reverse the list.
1882Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
1883  // Often we have single declarators, handle them quickly.
1884  Decl *GroupDecl = static_cast<Decl*>(group);
1885  if (GroupDecl == 0)
1886    return 0;
1887
1888  ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
1889  ScopedDecl *NewGroup = 0;
1890  if (Group->getNextDeclarator() == 0)
1891    NewGroup = Group;
1892  else { // reverse the list.
1893    while (Group) {
1894      ScopedDecl *Next = Group->getNextDeclarator();
1895      Group->setNextDeclarator(NewGroup);
1896      NewGroup = Group;
1897      Group = Next;
1898    }
1899  }
1900  // Perform semantic analysis that depends on having fully processed both
1901  // the declarator and initializer.
1902  for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
1903    VarDecl *IDecl = dyn_cast<VarDecl>(ID);
1904    if (!IDecl)
1905      continue;
1906    QualType T = IDecl->getType();
1907
1908    // C99 6.7.5.2p2: If an identifier is declared to be an object with
1909    // static storage duration, it shall not have a variable length array.
1910    if ((IDecl->isFileVarDecl() || IDecl->isBlockVarDecl()) &&
1911        IDecl->getStorageClass() == VarDecl::Static) {
1912      if (T->isVariableArrayType()) {
1913        Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
1914        IDecl->setInvalidDecl();
1915      }
1916    }
1917    // Block scope. C99 6.7p7: If an identifier for an object is declared with
1918    // no linkage (C99 6.2.2p6), the type for the object shall be complete...
1919    if (IDecl->isBlockVarDecl() &&
1920        IDecl->getStorageClass() != VarDecl::Extern) {
1921      if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
1922        Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type)<<T;
1923        IDecl->setInvalidDecl();
1924      }
1925    }
1926    // File scope. C99 6.9.2p2: A declaration of an identifier for and
1927    // object that has file scope without an initializer, and without a
1928    // storage-class specifier or with the storage-class specifier "static",
1929    // constitutes a tentative definition. Note: A tentative definition with
1930    // external linkage is valid (C99 6.2.2p5).
1931    if (isTentativeDefinition(IDecl)) {
1932      if (T->isIncompleteArrayType()) {
1933        // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
1934        // array to be completed. Don't issue a diagnostic.
1935      } else if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
1936        // C99 6.9.2p3: If the declaration of an identifier for an object is
1937        // a tentative definition and has internal linkage (C99 6.2.2p3), the
1938        // declared type shall not be an incomplete type.
1939        Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type)<<T;
1940        IDecl->setInvalidDecl();
1941      }
1942    }
1943    if (IDecl->isFileVarDecl())
1944      CheckForFileScopedRedefinitions(S, IDecl);
1945  }
1946  return NewGroup;
1947}
1948
1949/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
1950/// to introduce parameters into function prototype scope.
1951Sema::DeclTy *
1952Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
1953  // FIXME: disallow CXXScopeSpec for param declarators.
1954  const DeclSpec &DS = D.getDeclSpec();
1955
1956  // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
1957  VarDecl::StorageClass StorageClass = VarDecl::None;
1958  if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
1959    StorageClass = VarDecl::Register;
1960  } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
1961    Diag(DS.getStorageClassSpecLoc(),
1962         diag::err_invalid_storage_class_in_func_decl);
1963    D.getMutableDeclSpec().ClearStorageClassSpecs();
1964  }
1965  if (DS.isThreadSpecified()) {
1966    Diag(DS.getThreadSpecLoc(),
1967         diag::err_invalid_storage_class_in_func_decl);
1968    D.getMutableDeclSpec().ClearStorageClassSpecs();
1969  }
1970
1971  // Check that there are no default arguments inside the type of this
1972  // parameter (C++ only).
1973  if (getLangOptions().CPlusPlus)
1974    CheckExtraCXXDefaultArguments(D);
1975
1976  // In this context, we *do not* check D.getInvalidType(). If the declarator
1977  // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
1978  // though it will not reflect the user specified type.
1979  QualType parmDeclType = GetTypeForDeclarator(D, S);
1980
1981  assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
1982
1983  // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
1984  // Can this happen for params?  We already checked that they don't conflict
1985  // among each other.  Here they can only shadow globals, which is ok.
1986  IdentifierInfo *II = D.getIdentifier();
1987  if (Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S)) {
1988    if (S->isDeclScope(PrevDecl)) {
1989      Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
1990
1991      // Recover by removing the name
1992      II = 0;
1993      D.SetIdentifier(0, D.getIdentifierLoc());
1994    }
1995  }
1996
1997  // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
1998  // Doing the promotion here has a win and a loss. The win is the type for
1999  // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2000  // code generator). The loss is the orginal type isn't preserved. For example:
2001  //
2002  // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2003  //    int blockvardecl[5];
2004  //    sizeof(parmvardecl);  // size == 4
2005  //    sizeof(blockvardecl); // size == 20
2006  // }
2007  //
2008  // For expressions, all implicit conversions are captured using the
2009  // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2010  //
2011  // FIXME: If a source translation tool needs to see the original type, then
2012  // we need to consider storing both types (in ParmVarDecl)...
2013  //
2014  if (parmDeclType->isArrayType()) {
2015    // int x[restrict 4] ->  int *restrict
2016    parmDeclType = Context.getArrayDecayedType(parmDeclType);
2017  } else if (parmDeclType->isFunctionType())
2018    parmDeclType = Context.getPointerType(parmDeclType);
2019
2020  ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2021                                         D.getIdentifierLoc(), II,
2022                                         parmDeclType, StorageClass,
2023                                         0, 0);
2024
2025  if (D.getInvalidType())
2026    New->setInvalidDecl();
2027
2028  if (II)
2029    PushOnScopeChains(New, S);
2030
2031  ProcessDeclAttributes(New, D);
2032  return New;
2033
2034}
2035
2036Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
2037  assert(getCurFunctionDecl() == 0 && "Function parsing confused");
2038  assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2039         "Not a function declarator!");
2040  DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2041
2042  // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2043  // for a K&R function.
2044  if (!FTI.hasPrototype) {
2045    for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
2046      if (FTI.ArgInfo[i].Param == 0) {
2047        Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2048          << FTI.ArgInfo[i].Ident;
2049        // Implicitly declare the argument as type 'int' for lack of a better
2050        // type.
2051        DeclSpec DS;
2052        const char* PrevSpec; // unused
2053        DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2054                           PrevSpec);
2055        Declarator ParamD(DS, Declarator::KNRTypeListContext);
2056        ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
2057        FTI.ArgInfo[i].Param = ActOnParamDeclarator(FnBodyScope, ParamD);
2058      }
2059    }
2060  } else {
2061    // FIXME: Diagnose arguments without names in C.
2062  }
2063
2064  Scope *GlobalScope = FnBodyScope->getParent();
2065
2066  return ActOnStartOfFunctionDef(FnBodyScope,
2067                                 ActOnDeclarator(GlobalScope, D, 0));
2068}
2069
2070Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2071  Decl *decl = static_cast<Decl*>(D);
2072  FunctionDecl *FD = cast<FunctionDecl>(decl);
2073
2074  // See if this is a redefinition.
2075  const FunctionDecl *Definition;
2076  if (FD->getBody(Definition)) {
2077    Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
2078    Diag(Definition->getLocation(), diag::note_previous_definition);
2079  }
2080
2081  PushDeclContext(FD);
2082
2083  // Check the validity of our function parameters
2084  CheckParmsForFunctionDef(FD);
2085
2086  // Introduce our parameters into the function scope
2087  for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2088    ParmVarDecl *Param = FD->getParamDecl(p);
2089    // If this has an identifier, add it to the scope stack.
2090    if (Param->getIdentifier())
2091      PushOnScopeChains(Param, FnBodyScope);
2092  }
2093
2094  return FD;
2095}
2096
2097Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
2098  Decl *dcl = static_cast<Decl *>(D);
2099  if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
2100    FD->setBody((Stmt*)Body);
2101    assert(FD == getCurFunctionDecl() && "Function parsing confused");
2102  } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
2103    MD->setBody((Stmt*)Body);
2104  } else
2105    return 0;
2106  PopDeclContext();
2107  // Verify and clean out per-function state.
2108
2109  // Check goto/label use.
2110  for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2111       I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
2112    // Verify that we have no forward references left.  If so, there was a goto
2113    // or address of a label taken, but no definition of it.  Label fwd
2114    // definitions are indicated with a null substmt.
2115    if (I->second->getSubStmt() == 0) {
2116      LabelStmt *L = I->second;
2117      // Emit error.
2118      Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
2119
2120      // At this point, we have gotos that use the bogus label.  Stitch it into
2121      // the function body so that they aren't leaked and that the AST is well
2122      // formed.
2123      if (Body) {
2124        L->setSubStmt(new NullStmt(L->getIdentLoc()));
2125        cast<CompoundStmt>((Stmt*)Body)->push_back(L);
2126      } else {
2127        // The whole function wasn't parsed correctly, just delete this.
2128        delete L;
2129      }
2130    }
2131  }
2132  LabelMap.clear();
2133
2134  return D;
2135}
2136
2137/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2138/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
2139ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2140                                           IdentifierInfo &II, Scope *S) {
2141  // Extension in C99.  Legal in C90, but warn about it.
2142  if (getLangOptions().C99)
2143    Diag(Loc, diag::ext_implicit_function_decl) << &II;
2144  else
2145    Diag(Loc, diag::warn_implicit_function_decl) << &II;
2146
2147  // FIXME: handle stuff like:
2148  // void foo() { extern float X(); }
2149  // void bar() { X(); }  <-- implicit decl for X in another scope.
2150
2151  // Set a Declarator for the implicit definition: int foo();
2152  const char *Dummy;
2153  DeclSpec DS;
2154  bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
2155  Error = Error; // Silence warning.
2156  assert(!Error && "Error setting up implicit decl!");
2157  Declarator D(DS, Declarator::BlockContext);
2158  D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc));
2159  D.SetIdentifier(&II, Loc);
2160
2161  // Insert this function into translation-unit scope.
2162
2163  DeclContext *PrevDC = CurContext;
2164  CurContext = Context.getTranslationUnitDecl();
2165
2166  FunctionDecl *FD =
2167    dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
2168  FD->setImplicit();
2169
2170  CurContext = PrevDC;
2171
2172  return FD;
2173}
2174
2175
2176TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
2177                                    ScopedDecl *LastDeclarator) {
2178  assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
2179  assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
2180
2181  // Scope manipulation handled by caller.
2182  TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
2183                                           D.getIdentifierLoc(),
2184                                           D.getIdentifier(),
2185                                           T, LastDeclarator);
2186  if (D.getInvalidType())
2187    NewTD->setInvalidDecl();
2188  return NewTD;
2189}
2190
2191/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'.  In the
2192/// former case, Name will be non-null.  In the later case, Name will be null.
2193/// TagType indicates what kind of tag this is. TK indicates whether this is a
2194/// reference/declaration/definition of a tag.
2195Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
2196                             SourceLocation KWLoc, const CXXScopeSpec &SS,
2197                             IdentifierInfo *Name, SourceLocation NameLoc,
2198                             AttributeList *Attr) {
2199  // If this is a use of an existing tag, it must have a name.
2200  assert((Name != 0 || TK == TK_Definition) &&
2201         "Nameless record must be a definition!");
2202
2203  TagDecl::TagKind Kind;
2204  switch (TagType) {
2205  default: assert(0 && "Unknown tag type!");
2206  case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
2207  case DeclSpec::TST_union:  Kind = TagDecl::TK_union; break;
2208  case DeclSpec::TST_class:  Kind = TagDecl::TK_class; break;
2209  case DeclSpec::TST_enum:   Kind = TagDecl::TK_enum; break;
2210  }
2211
2212  // Two code paths: a new one for structs/unions/classes where we create
2213  //   separate decls for forward declarations, and an old (eventually to
2214  //   be removed) code path for enums.
2215  if (Kind != TagDecl::TK_enum)
2216    return ActOnTagStruct(S, Kind, TK, KWLoc, SS, Name, NameLoc, Attr);
2217
2218  DeclContext *DC = CurContext;
2219  ScopedDecl *PrevDecl = 0;
2220
2221  if (Name && SS.isNotEmpty()) {
2222    // We have a nested-name tag ('struct foo::bar').
2223
2224    // Check for invalid 'foo::'.
2225    if (SS.isInvalid()) {
2226      Name = 0;
2227      goto CreateNewDecl;
2228    }
2229
2230    DC = static_cast<DeclContext*>(SS.getScopeRep());
2231    // Look-up name inside 'foo::'.
2232    PrevDecl = dyn_cast_or_null<TagDecl>(LookupDecl(Name, Decl::IDNS_Tag,S,DC));
2233
2234    // A tag 'foo::bar' must already exist.
2235    if (PrevDecl == 0) {
2236      Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
2237      Name = 0;
2238      goto CreateNewDecl;
2239    }
2240  } else {
2241    // If this is a named struct, check to see if there was a previous forward
2242    // declaration or definition.
2243    // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
2244    PrevDecl = dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag,S));
2245  }
2246
2247  if (PrevDecl) {
2248    assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
2249            "unexpected Decl type");
2250    if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
2251      // If this is a use of a previous tag, or if the tag is already declared
2252      // in the same scope (so that the definition/declaration completes or
2253      // rementions the tag), reuse the decl.
2254      if (TK == TK_Reference || isDeclInScope(PrevDecl, DC, S)) {
2255        // Make sure that this wasn't declared as an enum and now used as a
2256        // struct or something similar.
2257        if (PrevTagDecl->getTagKind() != Kind) {
2258          Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
2259          Diag(PrevDecl->getLocation(), diag::note_previous_use);
2260          // Recover by making this an anonymous redefinition.
2261          Name = 0;
2262          PrevDecl = 0;
2263        } else {
2264          // If this is a use or a forward declaration, we're good.
2265          if (TK != TK_Definition)
2266            return PrevDecl;
2267
2268          // Diagnose attempts to redefine a tag.
2269          if (PrevTagDecl->isDefinition()) {
2270            Diag(NameLoc, diag::err_redefinition) << Name;
2271            Diag(PrevDecl->getLocation(), diag::note_previous_definition);
2272            // If this is a redefinition, recover by making this struct be
2273            // anonymous, which will make any later references get the previous
2274            // definition.
2275            Name = 0;
2276          } else {
2277            // Okay, this is definition of a previously declared or referenced
2278            // tag. Move the location of the decl to be the definition site.
2279            PrevDecl->setLocation(NameLoc);
2280            return PrevDecl;
2281          }
2282        }
2283      }
2284      // If we get here, this is a definition of a new struct type in a nested
2285      // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
2286      // type.
2287    } else {
2288      // PrevDecl is a namespace.
2289      if (isDeclInScope(PrevDecl, DC, S)) {
2290        // The tag name clashes with a namespace name, issue an error and
2291        // recover by making this tag be anonymous.
2292        Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
2293        Diag(PrevDecl->getLocation(), diag::note_previous_definition);
2294        Name = 0;
2295      }
2296    }
2297  }
2298
2299  CreateNewDecl:
2300
2301  // If there is an identifier, use the location of the identifier as the
2302  // location of the decl, otherwise use the location of the struct/union
2303  // keyword.
2304  SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
2305
2306  // Otherwise, if this is the first time we've seen this tag, create the decl.
2307  TagDecl *New;
2308  if (Kind == TagDecl::TK_enum) {
2309    // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2310    // enum X { A, B, C } D;    D should chain to X.
2311    New = EnumDecl::Create(Context, DC, Loc, Name, 0);
2312    // If this is an undefined enum, warn.
2313    if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
2314  } else {
2315    // struct/union/class
2316
2317    // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2318    // struct X { int A; } D;    D should chain to X.
2319    if (getLangOptions().CPlusPlus)
2320      // FIXME: Look for a way to use RecordDecl for simple structs.
2321      New = CXXRecordDecl::Create(Context, Kind, DC, Loc, Name);
2322    else
2323      New = RecordDecl::Create(Context, Kind, DC, Loc, Name);
2324  }
2325
2326  // If this has an identifier, add it to the scope stack.
2327  if (Name) {
2328    // The scope passed in may not be a decl scope.  Zip up the scope tree until
2329    // we find one that is.
2330    while ((S->getFlags() & Scope::DeclScope) == 0)
2331      S = S->getParent();
2332
2333    // Add it to the decl chain.
2334    PushOnScopeChains(New, S);
2335  }
2336
2337  if (Attr)
2338    ProcessDeclAttributeList(New, Attr);
2339
2340  // Set the lexical context. If the tag has a C++ scope specifier, the
2341  // lexical context will be different from the semantic context.
2342  New->setLexicalDeclContext(CurContext);
2343
2344  return New;
2345}
2346
2347/// ActOnTagStruct - New "ActOnTag" logic for structs/unions/classes.  Unlike
2348///  the logic for enums, we create separate decls for forward declarations.
2349///  This is called by ActOnTag, but eventually will replace its logic.
2350Sema::DeclTy *Sema::ActOnTagStruct(Scope *S, TagDecl::TagKind Kind, TagKind TK,
2351                             SourceLocation KWLoc, const CXXScopeSpec &SS,
2352                             IdentifierInfo *Name, SourceLocation NameLoc,
2353                             AttributeList *Attr) {
2354  DeclContext *DC = CurContext;
2355  ScopedDecl *PrevDecl = 0;
2356
2357  if (Name && SS.isNotEmpty()) {
2358    // We have a nested-name tag ('struct foo::bar').
2359
2360    // Check for invalid 'foo::'.
2361    if (SS.isInvalid()) {
2362      Name = 0;
2363      goto CreateNewDecl;
2364    }
2365
2366    DC = static_cast<DeclContext*>(SS.getScopeRep());
2367    // Look-up name inside 'foo::'.
2368    PrevDecl = dyn_cast_or_null<TagDecl>(LookupDecl(Name, Decl::IDNS_Tag,S,DC));
2369
2370    // A tag 'foo::bar' must already exist.
2371    if (PrevDecl == 0) {
2372      Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
2373      Name = 0;
2374      goto CreateNewDecl;
2375    }
2376  } else {
2377    // If this is a named struct, check to see if there was a previous forward
2378    // declaration or definition.
2379    // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
2380    PrevDecl = dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag,S));
2381  }
2382
2383  if (PrevDecl) {
2384    assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
2385           "unexpected Decl type");
2386
2387    if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
2388      // If this is a use of a previous tag, or if the tag is already declared
2389      // in the same scope (so that the definition/declaration completes or
2390      // rementions the tag), reuse the decl.
2391      if (TK == TK_Reference || isDeclInScope(PrevDecl, DC, S)) {
2392        // Make sure that this wasn't declared as an enum and now used as a
2393        // struct or something similar.
2394        if (PrevTagDecl->getTagKind() != Kind) {
2395          Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
2396          Diag(PrevDecl->getLocation(), diag::note_previous_use);
2397          // Recover by making this an anonymous redefinition.
2398          Name = 0;
2399          PrevDecl = 0;
2400        } else {
2401          // If this is a use, return the original decl.
2402
2403          // FIXME: In the future, return a variant or some other clue
2404          //  for the consumer of this Decl to know it doesn't own it.
2405          //  For our current ASTs this shouldn't be a problem, but will
2406          //  need to be changed with DeclGroups.
2407          if (TK == TK_Reference)
2408            return PrevDecl;
2409
2410          // The new decl is a definition?
2411          if (TK == TK_Definition) {
2412            // Diagnose attempts to redefine a tag.
2413            if (RecordDecl* DefRecord =
2414                cast<RecordDecl>(PrevTagDecl)->getDefinition(Context)) {
2415              Diag(NameLoc, diag::err_redefinition) << Name;
2416              Diag(DefRecord->getLocation(), diag::note_previous_definition);
2417              // If this is a redefinition, recover by making this struct be
2418              // anonymous, which will make any later references get the previous
2419              // definition.
2420              Name = 0;
2421              PrevDecl = 0;
2422            }
2423            // Okay, this is definition of a previously declared or referenced
2424            // tag.  We're going to create a new Decl.
2425          }
2426        }
2427        // If we get here we have (another) forward declaration.  Just create
2428        // a new decl.
2429      }
2430      else {
2431        // If we get here, this is a definition of a new struct type in a nested
2432        // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
2433        // new decl/type.  We set PrevDecl to NULL so that the Records
2434        // have distinct types.
2435        PrevDecl = 0;
2436      }
2437    } else {
2438      // PrevDecl is a namespace.
2439      if (isDeclInScope(PrevDecl, DC, S)) {
2440        // The tag name clashes with a namespace name, issue an error and
2441        // recover by making this tag be anonymous.
2442        Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
2443        Diag(PrevDecl->getLocation(), diag::note_previous_definition);
2444        Name = 0;
2445      }
2446    }
2447  }
2448
2449  CreateNewDecl:
2450
2451  // If there is an identifier, use the location of the identifier as the
2452  // location of the decl, otherwise use the location of the struct/union
2453  // keyword.
2454  SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
2455
2456  // Otherwise, if this is the first time we've seen this tag, create the decl.
2457  TagDecl *New;
2458
2459  // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2460  // struct X { int A; } D;    D should chain to X.
2461  if (getLangOptions().CPlusPlus)
2462    // FIXME: Look for a way to use RecordDecl for simple structs.
2463    New = CXXRecordDecl::Create(Context, Kind, DC, Loc, Name,
2464                                dyn_cast_or_null<CXXRecordDecl>(PrevDecl));
2465  else
2466    New = RecordDecl::Create(Context, Kind, DC, Loc, Name,
2467                             dyn_cast_or_null<RecordDecl>(PrevDecl));
2468
2469  // If this has an identifier, add it to the scope stack.
2470  if ((TK == TK_Definition || !PrevDecl) && Name) {
2471    // The scope passed in may not be a decl scope.  Zip up the scope tree until
2472    // we find one that is.
2473    while ((S->getFlags() & Scope::DeclScope) == 0)
2474      S = S->getParent();
2475
2476    // Add it to the decl chain.
2477    PushOnScopeChains(New, S);
2478  }
2479
2480  // Handle #pragma pack: if the #pragma pack stack has non-default
2481  // alignment, make up a packed attribute for this decl. These
2482  // attributes are checked when the ASTContext lays out the
2483  // structure.
2484  //
2485  // It is important for implementing the correct semantics that this
2486  // happen here (in act on tag decl). The #pragma pack stack is
2487  // maintained as a result of parser callbacks which can occur at
2488  // many points during the parsing of a struct declaration (because
2489  // the #pragma tokens are effectively skipped over during the
2490  // parsing of the struct).
2491  if (unsigned Alignment = PackContext.getAlignment())
2492    New->addAttr(new PackedAttr(Alignment * 8));
2493
2494  if (Attr)
2495    ProcessDeclAttributeList(New, Attr);
2496
2497  // Set the lexical context. If the tag has a C++ scope specifier, the
2498  // lexical context will be different from the semantic context.
2499  New->setLexicalDeclContext(CurContext);
2500
2501  return New;
2502}
2503
2504
2505/// Collect the instance variables declared in an Objective-C object.  Used in
2506/// the creation of structures from objects using the @defs directive.
2507static void CollectIvars(ObjCInterfaceDecl *Class, ASTContext& Ctx,
2508                         llvm::SmallVectorImpl<Sema::DeclTy*> &ivars) {
2509  if (Class->getSuperClass())
2510    CollectIvars(Class->getSuperClass(), Ctx, ivars);
2511
2512  // For each ivar, create a fresh ObjCAtDefsFieldDecl.
2513  for (ObjCInterfaceDecl::ivar_iterator
2514        I=Class->ivar_begin(), E=Class->ivar_end(); I!=E; ++I) {
2515
2516    ObjCIvarDecl* ID = *I;
2517    ivars.push_back(ObjCAtDefsFieldDecl::Create(Ctx, ID->getLocation(),
2518                                                ID->getIdentifier(),
2519                                                ID->getType(),
2520                                                ID->getBitWidth()));
2521  }
2522}
2523
2524/// Called whenever @defs(ClassName) is encountered in the source.  Inserts the
2525/// instance variables of ClassName into Decls.
2526void Sema::ActOnDefs(Scope *S, SourceLocation DeclStart,
2527                     IdentifierInfo *ClassName,
2528                     llvm::SmallVectorImpl<DeclTy*> &Decls) {
2529  // Check that ClassName is a valid class
2530  ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName);
2531  if (!Class) {
2532    Diag(DeclStart, diag::err_undef_interface) << ClassName;
2533    return;
2534  }
2535  // Collect the instance variables
2536  CollectIvars(Class, Context, Decls);
2537}
2538
2539/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
2540/// types into constant array types in certain situations which would otherwise
2541/// be errors (for GCC compatibility).
2542static QualType TryToFixInvalidVariablyModifiedType(QualType T,
2543                                                    ASTContext &Context) {
2544  // This method tries to turn a variable array into a constant
2545  // array even when the size isn't an ICE.  This is necessary
2546  // for compatibility with code that depends on gcc's buggy
2547  // constant expression folding, like struct {char x[(int)(char*)2];}
2548  const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
2549  if (!VLATy) return QualType();
2550
2551  APValue Result;
2552  if (!VLATy->getSizeExpr() ||
2553      !VLATy->getSizeExpr()->Evaluate(Result, Context))
2554    return QualType();
2555
2556  assert(Result.isInt() && "Size expressions must be integers!");
2557  llvm::APSInt &Res = Result.getInt();
2558  if (Res > llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
2559    return Context.getConstantArrayType(VLATy->getElementType(),
2560                                        Res, ArrayType::Normal, 0);
2561  return QualType();
2562}
2563
2564/// ActOnField - Each field of a struct/union/class is passed into this in order
2565/// to create a FieldDecl object for it.
2566Sema::DeclTy *Sema::ActOnField(Scope *S,
2567                               SourceLocation DeclStart,
2568                               Declarator &D, ExprTy *BitfieldWidth) {
2569  IdentifierInfo *II = D.getIdentifier();
2570  Expr *BitWidth = (Expr*)BitfieldWidth;
2571  SourceLocation Loc = DeclStart;
2572  if (II) Loc = D.getIdentifierLoc();
2573
2574  // FIXME: Unnamed fields can be handled in various different ways, for
2575  // example, unnamed unions inject all members into the struct namespace!
2576
2577  if (BitWidth) {
2578    // TODO: Validate.
2579    //printf("WARNING: BITFIELDS IGNORED!\n");
2580
2581    // 6.7.2.1p3
2582    // 6.7.2.1p4
2583
2584  } else {
2585    // Not a bitfield.
2586
2587    // validate II.
2588
2589  }
2590
2591  QualType T = GetTypeForDeclarator(D, S);
2592  assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
2593  bool InvalidDecl = false;
2594
2595  // C99 6.7.2.1p8: A member of a structure or union may have any type other
2596  // than a variably modified type.
2597  if (T->isVariablyModifiedType()) {
2598    QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context);
2599    if (!FixedTy.isNull()) {
2600      Diag(Loc, diag::warn_illegal_constant_array_size);
2601      T = FixedTy;
2602    } else {
2603      Diag(Loc, diag::err_typecheck_field_variable_size);
2604      T = Context.IntTy;
2605      InvalidDecl = true;
2606    }
2607  }
2608  // FIXME: Chain fielddecls together.
2609  FieldDecl *NewFD;
2610
2611  if (getLangOptions().CPlusPlus) {
2612    // FIXME: Replace CXXFieldDecls with FieldDecls for simple structs.
2613    NewFD = CXXFieldDecl::Create(Context, cast<CXXRecordDecl>(CurContext),
2614                                 Loc, II, T,
2615                                 D.getDeclSpec().getStorageClassSpec() ==
2616                                   DeclSpec::SCS_mutable, BitWidth);
2617    if (II)
2618      PushOnScopeChains(NewFD, S);
2619  }
2620  else
2621    NewFD = FieldDecl::Create(Context, Loc, II, T, BitWidth);
2622
2623  ProcessDeclAttributes(NewFD, D);
2624
2625  if (D.getInvalidType() || InvalidDecl)
2626    NewFD->setInvalidDecl();
2627  return NewFD;
2628}
2629
2630/// TranslateIvarVisibility - Translate visibility from a token ID to an
2631///  AST enum value.
2632static ObjCIvarDecl::AccessControl
2633TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
2634  switch (ivarVisibility) {
2635  default: assert(0 && "Unknown visitibility kind");
2636  case tok::objc_private: return ObjCIvarDecl::Private;
2637  case tok::objc_public: return ObjCIvarDecl::Public;
2638  case tok::objc_protected: return ObjCIvarDecl::Protected;
2639  case tok::objc_package: return ObjCIvarDecl::Package;
2640  }
2641}
2642
2643/// ActOnIvar - Each ivar field of an objective-c class is passed into this
2644/// in order to create an IvarDecl object for it.
2645Sema::DeclTy *Sema::ActOnIvar(Scope *S,
2646                              SourceLocation DeclStart,
2647                              Declarator &D, ExprTy *BitfieldWidth,
2648                              tok::ObjCKeywordKind Visibility) {
2649  IdentifierInfo *II = D.getIdentifier();
2650  Expr *BitWidth = (Expr*)BitfieldWidth;
2651  SourceLocation Loc = DeclStart;
2652  if (II) Loc = D.getIdentifierLoc();
2653
2654  // FIXME: Unnamed fields can be handled in various different ways, for
2655  // example, unnamed unions inject all members into the struct namespace!
2656
2657
2658  if (BitWidth) {
2659    // TODO: Validate.
2660    //printf("WARNING: BITFIELDS IGNORED!\n");
2661
2662    // 6.7.2.1p3
2663    // 6.7.2.1p4
2664
2665  } else {
2666    // Not a bitfield.
2667
2668    // validate II.
2669
2670  }
2671
2672  QualType T = GetTypeForDeclarator(D, S);
2673  assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
2674  bool InvalidDecl = false;
2675
2676  // C99 6.7.2.1p8: A member of a structure or union may have any type other
2677  // than a variably modified type.
2678  if (T->isVariablyModifiedType()) {
2679    // FIXME: This diagnostic needs work
2680    Diag(Loc, diag::err_typecheck_illegal_vla) << SourceRange(Loc);
2681    InvalidDecl = true;
2682  }
2683
2684  // Get the visibility (access control) for this ivar.
2685  ObjCIvarDecl::AccessControl ac =
2686    Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
2687                                        : ObjCIvarDecl::None;
2688
2689  // Construct the decl.
2690  ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
2691                                             (Expr *)BitfieldWidth);
2692
2693  // Process attributes attached to the ivar.
2694  ProcessDeclAttributes(NewID, D);
2695
2696  if (D.getInvalidType() || InvalidDecl)
2697    NewID->setInvalidDecl();
2698
2699  return NewID;
2700}
2701
2702void Sema::ActOnFields(Scope* S,
2703                       SourceLocation RecLoc, DeclTy *RecDecl,
2704                       DeclTy **Fields, unsigned NumFields,
2705                       SourceLocation LBrac, SourceLocation RBrac,
2706                       AttributeList *Attr) {
2707  Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
2708  assert(EnclosingDecl && "missing record or interface decl");
2709  RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
2710
2711  if (Record)
2712    if (RecordDecl* DefRecord = Record->getDefinition(Context)) {
2713      // Diagnose code like:
2714      //     struct S { struct S {} X; };
2715      // We discover this when we complete the outer S.  Reject and ignore the
2716      // outer S.
2717      Diag(DefRecord->getLocation(), diag::err_nested_redefinition)
2718        << DefRecord->getDeclName();
2719      Diag(RecLoc, diag::note_previous_definition);
2720      Record->setInvalidDecl();
2721      return;
2722    }
2723
2724  // Verify that all the fields are okay.
2725  unsigned NumNamedMembers = 0;
2726  llvm::SmallVector<FieldDecl*, 32> RecFields;
2727  llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
2728
2729  for (unsigned i = 0; i != NumFields; ++i) {
2730
2731    FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
2732    assert(FD && "missing field decl");
2733
2734    // Remember all fields.
2735    RecFields.push_back(FD);
2736
2737    // Get the type for the field.
2738    Type *FDTy = FD->getType().getTypePtr();
2739
2740    // C99 6.7.2.1p2 - A field may not be a function type.
2741    if (FDTy->isFunctionType()) {
2742      Diag(FD->getLocation(), diag::err_field_declared_as_function)
2743        << FD->getDeclName();
2744      FD->setInvalidDecl();
2745      EnclosingDecl->setInvalidDecl();
2746      continue;
2747    }
2748    // C99 6.7.2.1p2 - A field may not be an incomplete type except...
2749    if (FDTy->isIncompleteType()) {
2750      if (!Record) {  // Incomplete ivar type is always an error.
2751        Diag(FD->getLocation(), diag::err_field_incomplete) <<FD->getDeclName();
2752        FD->setInvalidDecl();
2753        EnclosingDecl->setInvalidDecl();
2754        continue;
2755      }
2756      if (i != NumFields-1 ||                   // ... that the last member ...
2757          !Record->isStruct() ||  // ... of a structure ...
2758          !FDTy->isArrayType()) {         //... may have incomplete array type.
2759        Diag(FD->getLocation(), diag::err_field_incomplete) <<FD->getDeclName();
2760        FD->setInvalidDecl();
2761        EnclosingDecl->setInvalidDecl();
2762        continue;
2763      }
2764      if (NumNamedMembers < 1) {  //... must have more than named member ...
2765        Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
2766          << FD->getDeclName();
2767        FD->setInvalidDecl();
2768        EnclosingDecl->setInvalidDecl();
2769        continue;
2770      }
2771      // Okay, we have a legal flexible array member at the end of the struct.
2772      if (Record)
2773        Record->setHasFlexibleArrayMember(true);
2774    }
2775    /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
2776    /// field of another structure or the element of an array.
2777    if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
2778      if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
2779        // If this is a member of a union, then entire union becomes "flexible".
2780        if (Record && Record->isUnion()) {
2781          Record->setHasFlexibleArrayMember(true);
2782        } else {
2783          // If this is a struct/class and this is not the last element, reject
2784          // it.  Note that GCC supports variable sized arrays in the middle of
2785          // structures.
2786          if (i != NumFields-1) {
2787            Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
2788              << FD->getDeclName();
2789            FD->setInvalidDecl();
2790            EnclosingDecl->setInvalidDecl();
2791            continue;
2792          }
2793          // We support flexible arrays at the end of structs in other structs
2794          // as an extension.
2795          Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
2796            << FD->getDeclName();
2797          if (Record)
2798            Record->setHasFlexibleArrayMember(true);
2799        }
2800      }
2801    }
2802    /// A field cannot be an Objective-c object
2803    if (FDTy->isObjCInterfaceType()) {
2804      Diag(FD->getLocation(), diag::err_statically_allocated_object)
2805        << FD->getDeclName();
2806      FD->setInvalidDecl();
2807      EnclosingDecl->setInvalidDecl();
2808      continue;
2809    }
2810    // Keep track of the number of named members.
2811    if (IdentifierInfo *II = FD->getIdentifier()) {
2812      // Detect duplicate member names.
2813      if (!FieldIDs.insert(II)) {
2814        Diag(FD->getLocation(), diag::err_duplicate_member) << II;
2815        // Find the previous decl.
2816        SourceLocation PrevLoc;
2817        for (unsigned i = 0; ; ++i) {
2818          assert(i != RecFields.size() && "Didn't find previous def!");
2819          if (RecFields[i]->getIdentifier() == II) {
2820            PrevLoc = RecFields[i]->getLocation();
2821            break;
2822          }
2823        }
2824        Diag(PrevLoc, diag::note_previous_definition);
2825        FD->setInvalidDecl();
2826        EnclosingDecl->setInvalidDecl();
2827        continue;
2828      }
2829      ++NumNamedMembers;
2830    }
2831  }
2832
2833  // Okay, we successfully defined 'Record'.
2834  if (Record) {
2835    Record->defineBody(Context, &RecFields[0], RecFields.size());
2836    // If this is a C++ record, HandleTagDeclDefinition will be invoked in
2837    // Sema::ActOnFinishCXXClassDef.
2838    if (!isa<CXXRecordDecl>(Record))
2839      Consumer.HandleTagDeclDefinition(Record);
2840  } else {
2841    ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
2842    if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
2843      ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
2844    else if (ObjCImplementationDecl *IMPDecl =
2845               dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
2846      assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
2847      IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
2848      CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
2849    }
2850  }
2851
2852  if (Attr)
2853    ProcessDeclAttributeList(Record, Attr);
2854}
2855
2856Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
2857                                      DeclTy *lastEnumConst,
2858                                      SourceLocation IdLoc, IdentifierInfo *Id,
2859                                      SourceLocation EqualLoc, ExprTy *val) {
2860  EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
2861  EnumConstantDecl *LastEnumConst =
2862    cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
2863  Expr *Val = static_cast<Expr*>(val);
2864
2865  // The scope passed in may not be a decl scope.  Zip up the scope tree until
2866  // we find one that is.
2867  while ((S->getFlags() & Scope::DeclScope) == 0)
2868    S = S->getParent();
2869
2870  // Verify that there isn't already something declared with this name in this
2871  // scope.
2872  if (Decl *PrevDecl = LookupDecl(Id, Decl::IDNS_Ordinary, S)) {
2873    // When in C++, we may get a TagDecl with the same name; in this case the
2874    // enum constant will 'hide' the tag.
2875    assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
2876           "Received TagDecl when not in C++!");
2877    if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
2878      if (isa<EnumConstantDecl>(PrevDecl))
2879        Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
2880      else
2881        Diag(IdLoc, diag::err_redefinition) << Id;
2882      Diag(PrevDecl->getLocation(), diag::note_previous_definition);
2883      delete Val;
2884      return 0;
2885    }
2886  }
2887
2888  llvm::APSInt EnumVal(32);
2889  QualType EltTy;
2890  if (Val) {
2891    // Make sure to promote the operand type to int.
2892    UsualUnaryConversions(Val);
2893
2894    // C99 6.7.2.2p2: Make sure we have an integer constant expression.
2895    SourceLocation ExpLoc;
2896    if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
2897      Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr) << Id;
2898      delete Val;
2899      Val = 0;  // Just forget about it.
2900    } else {
2901      EltTy = Val->getType();
2902    }
2903  }
2904
2905  if (!Val) {
2906    if (LastEnumConst) {
2907      // Assign the last value + 1.
2908      EnumVal = LastEnumConst->getInitVal();
2909      ++EnumVal;
2910
2911      // Check for overflow on increment.
2912      if (EnumVal < LastEnumConst->getInitVal())
2913        Diag(IdLoc, diag::warn_enum_value_overflow);
2914
2915      EltTy = LastEnumConst->getType();
2916    } else {
2917      // First value, set to zero.
2918      EltTy = Context.IntTy;
2919      EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
2920    }
2921  }
2922
2923  EnumConstantDecl *New =
2924    EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
2925                             Val, EnumVal,
2926                             LastEnumConst);
2927
2928  // Register this decl in the current scope stack.
2929  PushOnScopeChains(New, S);
2930  return New;
2931}
2932
2933// FIXME: For consistency with ActOnFields(), we should have the parser
2934// pass in the source location for the left/right braces.
2935void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
2936                         DeclTy **Elements, unsigned NumElements) {
2937  EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
2938
2939  if (Enum && Enum->isDefinition()) {
2940    // Diagnose code like:
2941    //   enum e0 {
2942    //     E0 = sizeof(enum e0 { E1 })
2943    //   };
2944    Diag(Enum->getLocation(), diag::err_nested_redefinition)
2945      << Enum->getDeclName();
2946    Diag(EnumLoc, diag::note_previous_definition);
2947    Enum->setInvalidDecl();
2948    return;
2949  }
2950  // TODO: If the result value doesn't fit in an int, it must be a long or long
2951  // long value.  ISO C does not support this, but GCC does as an extension,
2952  // emit a warning.
2953  unsigned IntWidth = Context.Target.getIntWidth();
2954
2955  // Verify that all the values are okay, compute the size of the values, and
2956  // reverse the list.
2957  unsigned NumNegativeBits = 0;
2958  unsigned NumPositiveBits = 0;
2959
2960  // Keep track of whether all elements have type int.
2961  bool AllElementsInt = true;
2962
2963  EnumConstantDecl *EltList = 0;
2964  for (unsigned i = 0; i != NumElements; ++i) {
2965    EnumConstantDecl *ECD =
2966      cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
2967    if (!ECD) continue;  // Already issued a diagnostic.
2968
2969    // If the enum value doesn't fit in an int, emit an extension warning.
2970    const llvm::APSInt &InitVal = ECD->getInitVal();
2971    assert(InitVal.getBitWidth() >= IntWidth &&
2972           "Should have promoted value to int");
2973    if (InitVal.getBitWidth() > IntWidth) {
2974      llvm::APSInt V(InitVal);
2975      V.trunc(IntWidth);
2976      V.extend(InitVal.getBitWidth());
2977      if (V != InitVal)
2978        Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
2979          << InitVal.toString(10);
2980    }
2981
2982    // Keep track of the size of positive and negative values.
2983    if (InitVal.isUnsigned() || InitVal.isNonNegative())
2984      NumPositiveBits = std::max(NumPositiveBits,
2985                                 (unsigned)InitVal.getActiveBits());
2986    else
2987      NumNegativeBits = std::max(NumNegativeBits,
2988                                 (unsigned)InitVal.getMinSignedBits());
2989
2990    // Keep track of whether every enum element has type int (very commmon).
2991    if (AllElementsInt)
2992      AllElementsInt = ECD->getType() == Context.IntTy;
2993
2994    ECD->setNextDeclarator(EltList);
2995    EltList = ECD;
2996  }
2997
2998  // Figure out the type that should be used for this enum.
2999  // FIXME: Support attribute(packed) on enums and -fshort-enums.
3000  QualType BestType;
3001  unsigned BestWidth;
3002
3003  if (NumNegativeBits) {
3004    // If there is a negative value, figure out the smallest integer type (of
3005    // int/long/longlong) that fits.
3006    if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
3007      BestType = Context.IntTy;
3008      BestWidth = IntWidth;
3009    } else {
3010      BestWidth = Context.Target.getLongWidth();
3011
3012      if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
3013        BestType = Context.LongTy;
3014      else {
3015        BestWidth = Context.Target.getLongLongWidth();
3016
3017        if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
3018          Diag(Enum->getLocation(), diag::warn_enum_too_large);
3019        BestType = Context.LongLongTy;
3020      }
3021    }
3022  } else {
3023    // If there is no negative value, figure out which of uint, ulong, ulonglong
3024    // fits.
3025    if (NumPositiveBits <= IntWidth) {
3026      BestType = Context.UnsignedIntTy;
3027      BestWidth = IntWidth;
3028    } else if (NumPositiveBits <=
3029               (BestWidth = Context.Target.getLongWidth())) {
3030      BestType = Context.UnsignedLongTy;
3031    } else {
3032      BestWidth = Context.Target.getLongLongWidth();
3033      assert(NumPositiveBits <= BestWidth &&
3034             "How could an initializer get larger than ULL?");
3035      BestType = Context.UnsignedLongLongTy;
3036    }
3037  }
3038
3039  // Loop over all of the enumerator constants, changing their types to match
3040  // the type of the enum if needed.
3041  for (unsigned i = 0; i != NumElements; ++i) {
3042    EnumConstantDecl *ECD =
3043      cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3044    if (!ECD) continue;  // Already issued a diagnostic.
3045
3046    // Standard C says the enumerators have int type, but we allow, as an
3047    // extension, the enumerators to be larger than int size.  If each
3048    // enumerator value fits in an int, type it as an int, otherwise type it the
3049    // same as the enumerator decl itself.  This means that in "enum { X = 1U }"
3050    // that X has type 'int', not 'unsigned'.
3051    if (ECD->getType() == Context.IntTy) {
3052      // Make sure the init value is signed.
3053      llvm::APSInt IV = ECD->getInitVal();
3054      IV.setIsSigned(true);
3055      ECD->setInitVal(IV);
3056      continue;  // Already int type.
3057    }
3058
3059    // Determine whether the value fits into an int.
3060    llvm::APSInt InitVal = ECD->getInitVal();
3061    bool FitsInInt;
3062    if (InitVal.isUnsigned() || !InitVal.isNegative())
3063      FitsInInt = InitVal.getActiveBits() < IntWidth;
3064    else
3065      FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3066
3067    // If it fits into an integer type, force it.  Otherwise force it to match
3068    // the enum decl type.
3069    QualType NewTy;
3070    unsigned NewWidth;
3071    bool NewSign;
3072    if (FitsInInt) {
3073      NewTy = Context.IntTy;
3074      NewWidth = IntWidth;
3075      NewSign = true;
3076    } else if (ECD->getType() == BestType) {
3077      // Already the right type!
3078      continue;
3079    } else {
3080      NewTy = BestType;
3081      NewWidth = BestWidth;
3082      NewSign = BestType->isSignedIntegerType();
3083    }
3084
3085    // Adjust the APSInt value.
3086    InitVal.extOrTrunc(NewWidth);
3087    InitVal.setIsSigned(NewSign);
3088    ECD->setInitVal(InitVal);
3089
3090    // Adjust the Expr initializer and type.
3091    ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3092                                          /*isLvalue=*/false));
3093    ECD->setType(NewTy);
3094  }
3095
3096  Enum->defineElements(EltList, BestType);
3097  Consumer.HandleTagDeclDefinition(Enum);
3098}
3099
3100Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
3101                                          ExprTy *expr) {
3102  StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr);
3103
3104  return FileScopeAsmDecl::Create(Context, Loc, AsmString);
3105}
3106
3107Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
3108                                     SourceLocation LBrace,
3109                                     SourceLocation RBrace,
3110                                     const char *Lang,
3111                                     unsigned StrSize,
3112                                     DeclTy *D) {
3113  LinkageSpecDecl::LanguageIDs Language;
3114  Decl *dcl = static_cast<Decl *>(D);
3115  if (strncmp(Lang, "\"C\"", StrSize) == 0)
3116    Language = LinkageSpecDecl::lang_c;
3117  else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
3118    Language = LinkageSpecDecl::lang_cxx;
3119  else {
3120    Diag(Loc, diag::err_bad_language);
3121    return 0;
3122  }
3123
3124  // FIXME: Add all the various semantics of linkage specifications
3125  return LinkageSpecDecl::Create(Context, Loc, Language, dcl);
3126}
3127
3128void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
3129                           ExprTy *alignment, SourceLocation PragmaLoc,
3130                           SourceLocation LParenLoc, SourceLocation RParenLoc) {
3131  Expr *Alignment = static_cast<Expr *>(alignment);
3132
3133  // If specified then alignment must be a "small" power of two.
3134  unsigned AlignmentVal = 0;
3135  if (Alignment) {
3136    llvm::APSInt Val;
3137    if (!Alignment->isIntegerConstantExpr(Val, Context) ||
3138        !Val.isPowerOf2() ||
3139        Val.getZExtValue() > 16) {
3140      Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
3141      delete Alignment;
3142      return; // Ignore
3143    }
3144
3145    AlignmentVal = (unsigned) Val.getZExtValue();
3146  }
3147
3148  switch (Kind) {
3149  case Action::PPK_Default: // pack([n])
3150    PackContext.setAlignment(AlignmentVal);
3151    break;
3152
3153  case Action::PPK_Show: // pack(show)
3154    // Show the current alignment, making sure to show the right value
3155    // for the default.
3156    AlignmentVal = PackContext.getAlignment();
3157    // FIXME: This should come from the target.
3158    if (AlignmentVal == 0)
3159      AlignmentVal = 8;
3160    Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
3161    break;
3162
3163  case Action::PPK_Push: // pack(push [, id] [, [n])
3164    PackContext.push(Name);
3165    // Set the new alignment if specified.
3166    if (Alignment)
3167      PackContext.setAlignment(AlignmentVal);
3168    break;
3169
3170  case Action::PPK_Pop: // pack(pop [, id] [,  n])
3171    // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
3172    // "#pragma pack(pop, identifier, n) is undefined"
3173    if (Alignment && Name)
3174      Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
3175
3176    // Do the pop.
3177    if (!PackContext.pop(Name)) {
3178      // If a name was specified then failure indicates the name
3179      // wasn't found. Otherwise failure indicates the stack was
3180      // empty.
3181      Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed)
3182        << (Name ? "no record matching name" : "stack empty");
3183
3184      // FIXME: Warn about popping named records as MSVC does.
3185    } else {
3186      // Pop succeeded, set the new alignment if specified.
3187      if (Alignment)
3188        PackContext.setAlignment(AlignmentVal);
3189    }
3190    break;
3191
3192  default:
3193    assert(0 && "Invalid #pragma pack kind.");
3194  }
3195}
3196
3197bool PragmaPackStack::pop(IdentifierInfo *Name) {
3198  if (Stack.empty())
3199    return false;
3200
3201  // If name is empty just pop top.
3202  if (!Name) {
3203    Alignment = Stack.back().first;
3204    Stack.pop_back();
3205    return true;
3206  }
3207
3208  // Otherwise, find the named record.
3209  for (unsigned i = Stack.size(); i != 0; ) {
3210    --i;
3211    if (Stack[i].second == Name) {
3212      // Found it, pop up to and including this record.
3213      Alignment = Stack[i].first;
3214      Stack.erase(Stack.begin() + i, Stack.end());
3215      return true;
3216    }
3217  }
3218
3219  return false;
3220}
3221