blob: 07966399da87827461fd883ac750fde3ac2277a9 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Anders Carlssonc44eec62008-07-03 04:20:39 +000015#include "clang/AST/APValue.h"
Chris Lattnere1e79852008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000019#include "clang/AST/ExprCXX.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Parse/DeclSpec.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000021#include "clang/Basic/Diagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/Basic/TargetInfo.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000023#include "clang/Basic/SourceManager.h"
24// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
Chris Lattnere1e79852008-02-06 00:51:33 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000026#include "clang/Lex/HeaderSearch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027#include "llvm/ADT/SmallSet.h"
Douglas Gregore267ff32008-12-11 20:41:00 +000028#include "llvm/ADT/STLExtras.h"
Douglas Gregor6ed40e32008-12-23 21:05:05 +000029#include <algorithm>
30#include <functional>
Douglas Gregore267ff32008-12-11 20:41:00 +000031
Reid Spencer5f016e22007-07-11 17:01:13 +000032using namespace clang;
33
Douglas Gregor2def4832008-11-17 20:34:05 +000034Sema::TypeTy *Sema::isTypeName(IdentifierInfo &II, Scope *S,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +000035 const CXXScopeSpec *SS) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000036 DeclContext *DC = 0;
37 if (SS) {
38 if (SS->isInvalid())
39 return 0;
40 DC = static_cast<DeclContext*>(SS->getScopeRep());
41 }
Douglas Gregor7176fff2009-01-15 00:26:24 +000042 LookupResult Result = LookupDecl(&II, Decl::IDNS_Ordinary, S, DC, false);
Steve Naroffb327ce02008-04-02 14:35:35 +000043
Douglas Gregor7176fff2009-01-15 00:26:24 +000044 Decl *IIDecl = 0;
45 switch (Result.getKind()) {
46 case LookupResult::NotFound:
47 case LookupResult::FoundOverloaded:
48 case LookupResult::AmbiguousBaseSubobjectTypes:
49 case LookupResult::AmbiguousBaseSubobjects:
50 // FIXME: In the event of an ambiguous lookup, we could visit all of
51 // the entities found to determine whether they are all types. This
52 // might provide better diagnostics.
53 return 0;
54
55 case LookupResult::Found:
56 IIDecl = Result.getAsDecl();
57 break;
58 }
59
60 if (isa<TypedefDecl>(IIDecl) ||
61 isa<ObjCInterfaceDecl>(IIDecl) ||
62 isa<TagDecl>(IIDecl) ||
63 isa<TemplateTypeParmDecl>(IIDecl))
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000064 return IIDecl;
Steve Naroff3536b442007-09-06 21:24:23 +000065 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000066}
67
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000068DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000069 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000070 // A C++ out-of-line method will return to the file declaration context.
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +000071 if (MD->isOutOfLineDefinition())
72 return MD->getLexicalDeclContext();
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000073
74 // A C++ inline method is parsed *after* the topmost class it was declared in
75 // is fully parsed (it's "complete").
76 // The parsing of a C++ inline method happens at the declaration context of
Argyrios Kyrtzidis77407b82008-11-19 18:01:13 +000077 // the topmost (non-nested) class it is lexically declared in.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000078 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
79 DC = MD->getParent();
Argyrios Kyrtzidis77407b82008-11-19 18:01:13 +000080 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000081 DC = RD;
82
83 // Return the declaration context of the topmost class the inline method is
84 // declared in.
85 return DC;
86 }
87
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +000088 if (isa<ObjCMethodDecl>(DC))
89 return Context.getTranslationUnitDecl();
90
91 if (ScopedDecl *SD = dyn_cast<ScopedDecl>(DC))
92 return SD->getLexicalDeclContext();
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000093
Argyrios Kyrtzidis77407b82008-11-19 18:01:13 +000094 return DC->getLexicalParent();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000095}
96
Douglas Gregor44b43212008-12-11 16:49:14 +000097void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000098 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xue50897a2008-12-08 07:14:51 +000099 "The next DeclContext should be lexically contained in the current one.");
Chris Lattner9fdf9c62008-04-22 18:39:57 +0000100 CurContext = DC;
Douglas Gregor44b43212008-12-11 16:49:14 +0000101 S->setEntity(DC);
Chris Lattner0ed844b2008-04-04 06:12:32 +0000102}
103
Chris Lattnerb048c982008-04-06 04:47:34 +0000104void Sema::PopDeclContext() {
105 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor44b43212008-12-11 16:49:14 +0000106
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000107 CurContext = getContainingDC(CurContext);
Chris Lattner0ed844b2008-04-04 06:12:32 +0000108}
109
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000110/// Add this decl to the scope shadowed decl chains.
111void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000112 // Move up the scope chain until we find the nearest enclosing
113 // non-transparent context. The declaration will be introduced into this
114 // scope.
115 while (S->getEntity() &&
116 ((DeclContext *)S->getEntity())->isTransparentContext())
117 S = S->getParent();
118
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000119 S->AddDecl(D);
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000120
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000121 // Add scoped declarations into their context, so that they can be
122 // found later. Declarations without a context won't be inserted
123 // into any context.
124 if (ScopedDecl *SD = dyn_cast<ScopedDecl>(D))
Douglas Gregor482b77d2009-01-12 23:27:07 +0000125 CurContext->addDecl(SD);
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000126
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000127 // C++ [basic.scope]p4:
128 // -- exactly one declaration shall declare a class name or
129 // enumeration name that is not a typedef name and the other
130 // declarations shall all refer to the same object or
131 // enumerator, or all refer to functions and function templates;
132 // in this case the class name or enumeration name is hidden.
133 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
134 // We are pushing the name of a tag (enum or class).
Douglas Gregore21b9942009-01-07 16:34:42 +0000135 if (CurContext->getLookupContext()
136 == TD->getDeclContext()->getLookupContext()) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000137 // We're pushing the tag into the current context, which might
138 // require some reshuffling in the identifier resolver.
139 IdentifierResolver::iterator
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000140 I = IdResolver.begin(TD->getDeclName(), CurContext,
141 false/*LookInParentCtx*/),
142 IEnd = IdResolver.end();
143 if (I != IEnd && isDeclInScope(*I, CurContext, S)) {
144 NamedDecl *PrevDecl = *I;
145 for (; I != IEnd && isDeclInScope(*I, CurContext, S);
146 PrevDecl = *I, ++I) {
147 if (TD->declarationReplaces(*I)) {
148 // This is a redeclaration. Remove it from the chain and
149 // break out, so that we'll add in the shadowed
150 // declaration.
151 S->RemoveDecl(*I);
152 if (PrevDecl == *I) {
153 IdResolver.RemoveDecl(*I);
154 IdResolver.AddDecl(TD);
155 return;
156 } else {
157 IdResolver.RemoveDecl(*I);
158 break;
159 }
160 }
161 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000162
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000163 // There is already a declaration with the same name in the same
164 // scope, which is not a tag declaration. It must be found
165 // before we find the new declaration, so insert the new
166 // declaration at the end of the chain.
167 IdResolver.AddShadowedDecl(TD, PrevDecl);
168
169 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000170 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000171 }
Argyrios Kyrtzidisf1af6a72008-10-22 23:08:24 +0000172 } else if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000173 // We are pushing the name of a function, which might be an
174 // overloaded name.
Douglas Gregor44b43212008-12-11 16:49:14 +0000175 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregorce356072009-01-06 23:51:29 +0000176 DeclContext *DC = FD->getDeclContext()->getLookupContext();
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000177 IdentifierResolver::iterator Redecl
Douglas Gregor074149e2009-01-05 19:45:36 +0000178 = std::find_if(IdResolver.begin(FD->getDeclName(), DC,
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000179 false/*LookInParentCtx*/),
180 IdResolver.end(),
181 std::bind1st(std::mem_fun(&ScopedDecl::declarationReplaces),
182 FD));
183 if (Redecl != IdResolver.end()) {
184 // There is already a declaration of a function on our
185 // IdResolver chain. Replace it with this declaration.
186 S->RemoveDecl(*Redecl);
187 IdResolver.RemoveDecl(*Redecl);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000188 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000189 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000190
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000191 IdResolver.AddDecl(D);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000192}
193
Steve Naroffb216c882007-10-09 22:01:59 +0000194void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner31e05722007-08-26 06:24:45 +0000195 if (S->decl_empty()) return;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000196 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
197 "Scope shouldn't contain decls!");
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000198
Reid Spencer5f016e22007-07-11 17:01:13 +0000199 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
200 I != E; ++I) {
Steve Naroffc752d042007-09-13 18:10:37 +0000201 Decl *TmpD = static_cast<Decl*>(*I);
202 assert(TmpD && "This decl didn't get pushed??");
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000203
Douglas Gregor44b43212008-12-11 16:49:14 +0000204 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
205 NamedDecl *D = cast<NamedDecl>(TmpD);
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000206
Douglas Gregor44b43212008-12-11 16:49:14 +0000207 if (!D->getDeclName()) continue;
Chris Lattner7f925cc2008-04-11 07:00:53 +0000208
Douglas Gregor44b43212008-12-11 16:49:14 +0000209 // Remove this name from our lexical scope.
210 IdResolver.RemoveDecl(D);
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 }
212}
213
Steve Naroffe8043c32008-04-01 23:04:06 +0000214/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
215/// return 0 if one not found.
Steve Naroffe8043c32008-04-01 23:04:06 +0000216ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff31102512008-04-02 18:30:49 +0000217 // The third "scope" argument is 0 since we aren't enabling lazy built-in
218 // creation from this context.
219 Decl *IDecl = LookupDecl(Id, Decl::IDNS_Ordinary, 0, false);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000220
Steve Naroffb327ce02008-04-02 14:35:35 +0000221 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000222}
223
Douglas Gregor1a0d31a2009-01-12 18:45:55 +0000224/// getNonFieldDeclScope - Retrieves the innermost scope, starting
225/// from S, where a non-field would be declared. This routine copes
226/// with the difference between C and C++ scoping rules in structs and
227/// unions. For example, the following code is well-formed in C but
228/// ill-formed in C++:
229/// @code
230/// struct S6 {
231/// enum { BAR } e;
232/// };
233///
234/// void test_S6() {
235/// struct S6 a;
236/// a.e = BAR;
237/// }
238/// @endcode
239/// For the declaration of BAR, this routine will return a different
240/// scope. The scope S will be the scope of the unnamed enumeration
241/// within S6. In C++, this routine will return the scope associated
242/// with S6, because the enumeration's scope is a transparent
243/// context but structures can contain non-field names. In C, this
244/// routine will return the translation unit scope, since the
245/// enumeration's scope is a transparent context and structures cannot
246/// contain non-field names.
247Scope *Sema::getNonFieldDeclScope(Scope *S) {
248 while (((S->getFlags() & Scope::DeclScope) == 0) ||
249 (S->getEntity() &&
250 ((DeclContext *)S->getEntity())->isTransparentContext()) ||
251 (S->isClassScope() && !getLangOptions().CPlusPlus))
252 S = S->getParent();
253 return S;
254}
255
Steve Naroffe8043c32008-04-01 23:04:06 +0000256/// LookupDecl - Look up the inner-most declaration in the specified
Douglas Gregorf780abc2008-12-30 03:27:21 +0000257/// namespace. NamespaceNameOnly - during lookup only namespace names
258/// are considered as required in C++ [basic.lookup.udir] 3.4.6.p1
259/// 'When looking up a namespace-name in a using-directive or
260/// namespace-alias-definition, only namespace names are considered.'
Douglas Gregoreb11cd02009-01-14 22:20:51 +0000261///
262/// Note: The use of this routine is deprecated. Please use
263/// LookupName, LookupQualifiedName, or LookupParsedName instead.
264Sema::LookupResult
265Sema::LookupDecl(DeclarationName Name, unsigned NSI, Scope *S,
266 const DeclContext *LookupCtx,
267 bool enableLazyBuiltinCreation,
268 bool LookInParent,
269 bool NamespaceNameOnly) {
270 LookupCriteria::NameKind Kind;
271 if (NSI == Decl::IDNS_Ordinary) {
272 if (NamespaceNameOnly)
273 Kind = LookupCriteria::Namespace;
274 else
275 Kind = LookupCriteria::Ordinary;
276 } else if (NSI == Decl::IDNS_Tag)
277 Kind = LookupCriteria::Tag;
278 else if (NSI == Decl::IDNS_Member)
279 Kind = LookupCriteria::Member;
280 else
281 assert(false && "Unable to grok LookupDecl NSI argument");
Chris Lattner7f925cc2008-04-11 07:00:53 +0000282
Douglas Gregoreb11cd02009-01-14 22:20:51 +0000283 if (LookupCtx)
284 return LookupQualifiedName(const_cast<DeclContext *>(LookupCtx), Name,
285 LookupCriteria(Kind, !LookInParent,
286 getLangOptions().CPlusPlus));
Douglas Gregor72de6672009-01-08 20:45:30 +0000287
Douglas Gregoreb11cd02009-01-14 22:20:51 +0000288 // Unqualified lookup
289 return LookupName(S, Name,
290 LookupCriteria(Kind, !LookInParent,
291 getLangOptions().CPlusPlus));
Reid Spencer5f016e22007-07-11 17:01:13 +0000292}
293
Chris Lattner95e2c712008-05-05 22:18:14 +0000294void Sema::InitBuiltinVaListType() {
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000295 if (!Context.getBuiltinVaListType().isNull())
296 return;
297
298 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Steve Naroffb327ce02008-04-02 14:35:35 +0000299 Decl *VaDecl = LookupDecl(VaIdent, Decl::IDNS_Ordinary, TUScope);
Steve Naroff733002f2007-10-18 22:17:45 +0000300 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000301 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
302}
303
Reid Spencer5f016e22007-07-11 17:01:13 +0000304/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
305/// lazily create a decl for it.
Chris Lattner22b73ba2007-10-10 23:42:28 +0000306ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
307 Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000308 Builtin::ID BID = (Builtin::ID)bid;
309
Chris Lattnerbd7eb1c2008-09-28 05:54:29 +0000310 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000311 InitBuiltinVaListType();
312
Anders Carlssonb2cf3572007-10-11 01:00:40 +0000313 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Argyrios Kyrtzidisff898cd2008-04-17 14:47:13 +0000314 FunctionDecl *New = FunctionDecl::Create(Context,
315 Context.getTranslationUnitDecl(),
Chris Lattner0ed844b2008-04-04 06:12:32 +0000316 SourceLocation(), II, R,
Chris Lattnera98e58d2008-03-15 21:24:04 +0000317 FunctionDecl::Extern, false, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000318
Chris Lattner95e2c712008-05-05 22:18:14 +0000319 // Create Decl objects for each parameter, adding them to the
320 // FunctionDecl.
321 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
322 llvm::SmallVector<ParmVarDecl*, 16> Params;
323 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
324 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
325 FT->getArgType(i), VarDecl::None, 0,
326 0));
Ted Kremenekfc767612009-01-14 00:42:25 +0000327 New->setParams(Context, &Params[0], Params.size());
Chris Lattner95e2c712008-05-05 22:18:14 +0000328 }
329
330
331
Chris Lattner7f925cc2008-04-11 07:00:53 +0000332 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregora8cc8ce2009-01-09 18:51:29 +0000333 // FIXME: This is hideous. We need to teach PushOnScopeChains to
334 // relate Scopes to DeclContexts, and probably eliminate CurContext
335 // entirely, but we're not there yet.
336 DeclContext *SavedContext = CurContext;
337 CurContext = Context.getTranslationUnitDecl();
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000338 PushOnScopeChains(New, TUScope);
Douglas Gregora8cc8ce2009-01-09 18:51:29 +0000339 CurContext = SavedContext;
Reid Spencer5f016e22007-07-11 17:01:13 +0000340 return New;
341}
342
Sebastian Redlc42e1182008-11-11 11:37:55 +0000343/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
344/// everything from the standard library is defined.
345NamespaceDecl *Sema::GetStdNamespace() {
346 if (!StdNamespace) {
Chris Lattner8edea832008-11-20 05:45:14 +0000347 IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
Sebastian Redlc42e1182008-11-11 11:37:55 +0000348 DeclContext *Global = Context.getTranslationUnitDecl();
Douglas Gregoreb11cd02009-01-14 22:20:51 +0000349 Decl *Std = LookupDecl(StdIdent, Decl::IDNS_Ordinary,
Sebastian Redlc42e1182008-11-11 11:37:55 +0000350 0, Global, /*enableLazyBuiltinCreation=*/false);
351 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
352 }
353 return StdNamespace;
354}
355
Reid Spencer5f016e22007-07-11 17:01:13 +0000356/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
357/// and scope as a previous declaration 'Old'. Figure out how to resolve this
358/// situation, merging decls or emitting diagnostics as appropriate.
359///
Steve Naroffe8043c32008-04-01 23:04:06 +0000360TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Steve Naroff2b255c42008-09-09 14:32:20 +0000361 // Allow multiple definitions for ObjC built-in typedefs.
362 // FIXME: Verify the underlying types are equivalent!
363 if (getLangOptions().ObjC1) {
Chris Lattner2bac0f62008-11-20 05:41:43 +0000364 const IdentifierInfo *TypeID = New->getIdentifier();
365 switch (TypeID->getLength()) {
366 default: break;
367 case 2:
368 if (!TypeID->isStr("id"))
369 break;
Steve Naroff2b255c42008-09-09 14:32:20 +0000370 Context.setObjCIdType(New);
371 return New;
Chris Lattner2bac0f62008-11-20 05:41:43 +0000372 case 5:
373 if (!TypeID->isStr("Class"))
374 break;
Steve Naroff2b255c42008-09-09 14:32:20 +0000375 Context.setObjCClassType(New);
376 return New;
Chris Lattner2bac0f62008-11-20 05:41:43 +0000377 case 3:
378 if (!TypeID->isStr("SEL"))
379 break;
Steve Naroff2b255c42008-09-09 14:32:20 +0000380 Context.setObjCSelType(New);
381 return New;
Chris Lattner2bac0f62008-11-20 05:41:43 +0000382 case 8:
383 if (!TypeID->isStr("Protocol"))
384 break;
Steve Naroff2b255c42008-09-09 14:32:20 +0000385 Context.setObjCProtoType(New->getUnderlyingType());
386 return New;
387 }
388 // Fall through - the typedef name was not a builtin type.
389 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000390 // Verify the old decl was also a typedef.
391 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
392 if (!Old) {
Chris Lattner5dc266a2008-11-20 06:13:02 +0000393 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattner08631c52008-11-23 21:45:46 +0000394 << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000395 Diag(OldD->getLocation(), diag::note_previous_definition);
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 return New;
397 }
398
Chris Lattner99cb9972008-07-25 18:44:27 +0000399 // If the typedef types are not identical, reject them in all languages and
400 // with any extensions enabled.
401 if (Old->getUnderlyingType() != New->getUnderlyingType() &&
402 Context.getCanonicalType(Old->getUnderlyingType()) !=
403 Context.getCanonicalType(New->getUnderlyingType())) {
Chris Lattner5dc266a2008-11-20 06:13:02 +0000404 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
Chris Lattnerd1625842008-11-24 06:25:27 +0000405 << New->getUnderlyingType() << Old->getUnderlyingType();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000406 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000407 return New;
Chris Lattner99cb9972008-07-25 18:44:27 +0000408 }
409
Eli Friedman54ecfce2008-06-11 06:20:39 +0000410 if (getLangOptions().Microsoft) return New;
411
Douglas Gregorbbe27432008-11-21 16:29:06 +0000412 // C++ [dcl.typedef]p2:
413 // In a given non-class scope, a typedef specifier can be used to
414 // redefine the name of any type declared in that scope to refer
415 // to the type to which it already refers.
416 if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext))
417 return New;
418
419 // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000420 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
421 // *either* declaration is in a system header. The code below implements
422 // this adhoc compatibility rule. FIXME: The following code will not
423 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar2fe09972008-09-12 18:10:20 +0000424 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
425 SourceManager &SrcMgr = Context.getSourceManager();
426 if (SrcMgr.isInSystemHeader(Old->getLocation()))
427 return New;
428 if (SrcMgr.isInSystemHeader(New->getLocation()))
429 return New;
430 }
Eli Friedman54ecfce2008-06-11 06:20:39 +0000431
Chris Lattner08631c52008-11-23 21:45:46 +0000432 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000433 Diag(Old->getLocation(), diag::note_previous_definition);
Reid Spencer5f016e22007-07-11 17:01:13 +0000434 return New;
435}
436
Chris Lattner6b6b5372008-06-26 18:38:35 +0000437/// DeclhasAttr - returns true if decl Declaration already has the target
438/// attribute.
Chris Lattnerddee4232008-03-03 03:28:21 +0000439static bool DeclHasAttr(const Decl *decl, const Attr *target) {
440 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
441 if (attr->getKind() == target->getKind())
442 return true;
443
444 return false;
445}
446
447/// MergeAttributes - append attributes from the Old decl to the New one.
448static void MergeAttributes(Decl *New, Decl *Old) {
449 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
450
Chris Lattnerddee4232008-03-03 03:28:21 +0000451 while (attr) {
452 tmp = attr;
453 attr = attr->getNext();
454
455 if (!DeclHasAttr(New, tmp)) {
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000456 tmp->setInherited(true);
Chris Lattnerddee4232008-03-03 03:28:21 +0000457 New->addAttr(tmp);
458 } else {
459 tmp->setNext(0);
460 delete(tmp);
461 }
462 }
Nuno Lopes9141bee2008-06-01 22:53:53 +0000463
464 Old->invalidateAttrs();
Chris Lattnerddee4232008-03-03 03:28:21 +0000465}
466
Chris Lattner04421082008-04-08 04:40:51 +0000467/// MergeFunctionDecl - We just parsed a function 'New' from
468/// declarator D which has the same name and scope as a previous
469/// declaration 'Old'. Figure out how to resolve this situation,
470/// merging decls or emitting diagnostics as appropriate.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000471/// Redeclaration will be set true if this New is a redeclaration OldD.
472///
473/// In C++, New and Old must be declarations that are not
474/// overloaded. Use IsOverload to determine whether New and Old are
475/// overloaded, and to select the Old declaration that New should be
476/// merged with.
Douglas Gregorf0097952008-04-21 02:02:58 +0000477FunctionDecl *
478Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000479 assert(!isa<OverloadedFunctionDecl>(OldD) &&
480 "Cannot merge with an overloaded function declaration");
481
Douglas Gregorf0097952008-04-21 02:02:58 +0000482 Redeclaration = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000483 // Verify the old decl was also a function.
484 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
485 if (!Old) {
Chris Lattner5dc266a2008-11-20 06:13:02 +0000486 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattner08631c52008-11-23 21:45:46 +0000487 << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000488 Diag(OldD->getLocation(), diag::note_previous_definition);
Reid Spencer5f016e22007-07-11 17:01:13 +0000489 return New;
490 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000491
492 // Determine whether the previous declaration was a definition,
493 // implicit declaration, or a declaration.
494 diag::kind PrevDiag;
495 if (Old->isThisDeclarationADefinition())
Chris Lattner5f4a6822008-11-23 23:12:31 +0000496 PrevDiag = diag::note_previous_definition;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000497 else if (Old->isImplicit())
Chris Lattner5f4a6822008-11-23 23:12:31 +0000498 PrevDiag = diag::note_previous_implicit_declaration;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000499 else
Chris Lattner5f4a6822008-11-23 23:12:31 +0000500 PrevDiag = diag::note_previous_declaration;
Chris Lattner04421082008-04-08 04:40:51 +0000501
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000502 QualType OldQType = Context.getCanonicalType(Old->getType());
503 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner55196442007-11-20 19:04:50 +0000504
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000505 if (getLangOptions().CPlusPlus) {
506 // (C++98 13.1p2):
507 // Certain function declarations cannot be overloaded:
508 // -- Function declarations that differ only in the return type
509 // cannot be overloaded.
510 QualType OldReturnType
511 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
512 QualType NewReturnType
513 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
514 if (OldReturnType != NewReturnType) {
515 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
516 Diag(Old->getLocation(), PrevDiag);
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000517 Redeclaration = true;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000518 return New;
519 }
520
521 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
522 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
523 if (OldMethod && NewMethod) {
524 // -- Member function declarations with the same name and the
525 // same parameter types cannot be overloaded if any of them
526 // is a static member function declaration.
527 if (OldMethod->isStatic() || NewMethod->isStatic()) {
528 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
529 Diag(Old->getLocation(), PrevDiag);
530 return New;
531 }
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000532
533 // C++ [class.mem]p1:
534 // [...] A member shall not be declared twice in the
535 // member-specification, except that a nested class or member
536 // class template can be declared and then later defined.
537 if (OldMethod->getLexicalDeclContext() ==
538 NewMethod->getLexicalDeclContext()) {
539 unsigned NewDiag;
540 if (isa<CXXConstructorDecl>(OldMethod))
541 NewDiag = diag::err_constructor_redeclared;
542 else if (isa<CXXDestructorDecl>(NewMethod))
543 NewDiag = diag::err_destructor_redeclared;
544 else if (isa<CXXConversionDecl>(NewMethod))
545 NewDiag = diag::err_conv_function_redeclared;
546 else
547 NewDiag = diag::err_member_redeclared;
548
549 Diag(New->getLocation(), NewDiag);
550 Diag(Old->getLocation(), PrevDiag);
551 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000552 }
553
554 // (C++98 8.3.5p3):
555 // All declarations for a function shall agree exactly in both the
556 // return type and the parameter-type-list.
557 if (OldQType == NewQType) {
558 // We have a redeclaration.
559 MergeAttributes(New, Old);
560 Redeclaration = true;
561 return MergeCXXFunctionDecl(New, Old);
562 }
563
564 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregorf0097952008-04-21 02:02:58 +0000565 }
Chris Lattner04421082008-04-08 04:40:51 +0000566
567 // C: Function types need to be compatible, not identical. This handles
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000568 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner04421082008-04-08 04:40:51 +0000569 if (!getLangOptions().CPlusPlus &&
Eli Friedman3d815e72008-08-22 00:56:42 +0000570 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregorf0097952008-04-21 02:02:58 +0000571 MergeAttributes(New, Old);
572 Redeclaration = true;
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000573 return New;
Chris Lattner04421082008-04-08 04:40:51 +0000574 }
Chris Lattnere3995fe2007-11-06 06:07:26 +0000575
Steve Naroff837618c2008-01-16 15:01:34 +0000576 // A function that has already been declared has been redeclared or defined
577 // with a different type- show appropriate diagnostic
Steve Naroff837618c2008-01-16 15:01:34 +0000578
Reid Spencer5f016e22007-07-11 17:01:13 +0000579 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
580 // TODO: This is totally simplistic. It should handle merging functions
581 // together etc, merging extern int X; int X; ...
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000582 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Steve Naroff837618c2008-01-16 15:01:34 +0000583 Diag(Old->getLocation(), PrevDiag);
Reid Spencer5f016e22007-07-11 17:01:13 +0000584 return New;
585}
586
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000587/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd4d46cd2008-08-10 15:28:06 +0000588static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000589 if (VD->isFileVarDecl())
590 return (!VD->getInit() &&
591 (VD->getStorageClass() == VarDecl::None ||
592 VD->getStorageClass() == VarDecl::Static));
593 return false;
594}
595
596/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
597/// when dealing with C "tentative" external object definitions (C99 6.9.2).
598void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
599 bool VDIsTentative = isTentativeDefinition(VD);
Steve Narofff855e6f2008-08-10 15:20:13 +0000600 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000601
Douglas Gregore21b9942009-01-07 16:34:42 +0000602 // FIXME: I don't think this will actually see all of the
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000603 // redefinitions. Can't we check this property on-the-fly?
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000604 for (IdentifierResolver::iterator
605 I = IdResolver.begin(VD->getIdentifier(),
606 VD->getDeclContext(), false/*LookInParentCtx*/),
607 E = IdResolver.end(); I != E; ++I) {
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +0000608 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000609 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
610
Steve Narofff855e6f2008-08-10 15:20:13 +0000611 // Handle the following case:
612 // int a[10];
613 // int a[]; - the code below makes sure we set the correct type.
614 // int a[11]; - this is an error, size isn't 10.
615 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
616 OldDecl->getType()->isConstantArrayType())
617 VD->setType(OldDecl->getType());
618
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000619 // Check for "tentative" definitions. We can't accomplish this in
620 // MergeVarDecl since the initializer hasn't been attached.
621 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
622 continue;
623
624 // Handle __private_extern__ just like extern.
625 if (OldDecl->getStorageClass() != VarDecl::Extern &&
626 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
627 VD->getStorageClass() != VarDecl::Extern &&
628 VD->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner08631c52008-11-23 21:45:46 +0000629 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000630 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000631 }
632 }
633 }
634}
635
Reid Spencer5f016e22007-07-11 17:01:13 +0000636/// MergeVarDecl - We just parsed a variable 'New' which has the same name
637/// and scope as a previous declaration 'Old'. Figure out how to resolve this
638/// situation, merging decls or emitting diagnostics as appropriate.
639///
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000640/// Tentative definition rules (C99 6.9.2p2) are checked by
641/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
642/// definitions here, since the initializer hasn't been attached.
Reid Spencer5f016e22007-07-11 17:01:13 +0000643///
Steve Naroffe8043c32008-04-01 23:04:06 +0000644VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000645 // Verify the old decl was also a variable.
646 VarDecl *Old = dyn_cast<VarDecl>(OldD);
647 if (!Old) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000648 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattner08631c52008-11-23 21:45:46 +0000649 << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000650 Diag(OldD->getLocation(), diag::note_previous_definition);
Reid Spencer5f016e22007-07-11 17:01:13 +0000651 return New;
652 }
Chris Lattnerddee4232008-03-03 03:28:21 +0000653
654 MergeAttributes(New, Old);
655
Reid Spencer5f016e22007-07-11 17:01:13 +0000656 // Verify the types match.
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000657 QualType OldCType = Context.getCanonicalType(Old->getType());
658 QualType NewCType = Context.getCanonicalType(New->getType());
Steve Naroff907747b2008-08-09 16:04:40 +0000659 if (OldCType != NewCType && !Context.typesAreCompatible(OldCType, NewCType)) {
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000660 Diag(New->getLocation(), diag::err_redefinition_different_type)
661 << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000662 Diag(Old->getLocation(), diag::note_previous_definition);
Reid Spencer5f016e22007-07-11 17:01:13 +0000663 return New;
664 }
Steve Naroffb7b032e2008-01-30 00:44:01 +0000665 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
666 if (New->getStorageClass() == VarDecl::Static &&
667 (Old->getStorageClass() == VarDecl::None ||
668 Old->getStorageClass() == VarDecl::Extern)) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000669 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000670 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroffb7b032e2008-01-30 00:44:01 +0000671 return New;
672 }
673 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
674 if (New->getStorageClass() != VarDecl::Static &&
675 Old->getStorageClass() == VarDecl::Static) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000676 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000677 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroffb7b032e2008-01-30 00:44:01 +0000678 return New;
679 }
Steve Naroff094cefb2008-09-17 14:05:40 +0000680 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
681 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattner08631c52008-11-23 21:45:46 +0000682 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000683 Diag(Old->getLocation(), diag::note_previous_definition);
Reid Spencer5f016e22007-07-11 17:01:13 +0000684 }
685 return New;
686}
687
Chris Lattner04421082008-04-08 04:40:51 +0000688/// CheckParmsForFunctionDef - Check that the parameters of the given
689/// function are appropriate for the definition of a function. This
690/// takes care of any checks that cannot be performed on the
691/// declaration itself, e.g., that the types of each of the function
692/// parameters are complete.
693bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
694 bool HasInvalidParm = false;
695 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
696 ParmVarDecl *Param = FD->getParamDecl(p);
697
698 // C99 6.7.5.3p4: the parameters in a parameter type list in a
699 // function declarator that is part of a function definition of
700 // that function shall not have incomplete type.
701 if (Param->getType()->isIncompleteType() &&
702 !Param->isInvalidDecl()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000703 Diag(Param->getLocation(), diag::err_typecheck_decl_incomplete_type)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000704 << Param->getType();
Chris Lattner04421082008-04-08 04:40:51 +0000705 Param->setInvalidDecl();
706 HasInvalidParm = true;
707 }
Chris Lattner777f07b2008-12-17 07:32:46 +0000708
709 // C99 6.9.1p5: If the declarator includes a parameter type list, the
710 // declaration of each parameter shall include an identifier.
711 if (Param->getIdentifier() == 0 && !getLangOptions().CPlusPlus)
712 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattner04421082008-04-08 04:40:51 +0000713 }
714
715 return HasInvalidParm;
716}
717
Reid Spencer5f016e22007-07-11 17:01:13 +0000718/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
719/// no declarator (e.g. "struct foo;") is parsed.
720Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
Douglas Gregor4920f1f2009-01-12 22:49:06 +0000721 TagDecl *Tag
722 = dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
723 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
724 if (!Record->getDeclName() && Record->isDefinition() &&
725 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
726 return BuildAnonymousStructOrUnion(S, DS, Record);
727
728 // Microsoft allows unnamed struct/union fields. Don't complain
729 // about them.
730 // FIXME: Should we support Microsoft's extensions in this area?
731 if (Record->getDeclName() && getLangOptions().Microsoft)
732 return Tag;
733 }
734
Douglas Gregoree159c12009-01-13 23:10:51 +0000735 // Permit typedefs without declarators as a Microsoft extension.
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000736 if (!DS.isMissingDeclaratorOk()) {
Douglas Gregoree159c12009-01-13 23:10:51 +0000737 if (getLangOptions().Microsoft &&
738 DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
739 Diag(DS.getSourceRange().getBegin(), diag::ext_no_declarators)
740 << DS.getSourceRange();
741 return Tag;
742 }
743
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000744 // FIXME: This diagnostic is emitted even when various previous
745 // errors occurred (see e.g. test/Sema/decl-invalid.c). However,
746 // DeclSpec has no means of communicating this information, and the
747 // responsible parser functions are quite far apart.
748 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
749 << DS.getSourceRange();
750 return 0;
751 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000752
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000753 return Tag;
754}
755
756/// InjectAnonymousStructOrUnionMembers - Inject the members of the
757/// anonymous struct or union AnonRecord into the owning context Owner
758/// and scope S. This routine will be invoked just after we realize
759/// that an unnamed union or struct is actually an anonymous union or
760/// struct, e.g.,
761///
762/// @code
763/// union {
764/// int i;
765/// float f;
766/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
767/// // f into the surrounding scope.x
768/// @endcode
769///
770/// This routine is recursive, injecting the names of nested anonymous
771/// structs/unions into the owning context and scope as well.
772bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
773 RecordDecl *AnonRecord) {
774 bool Invalid = false;
775 for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
776 FEnd = AnonRecord->field_end();
777 F != FEnd; ++F) {
778 if ((*F)->getDeclName()) {
779 Decl *PrevDecl = LookupDecl((*F)->getDeclName(), Decl::IDNS_Ordinary,
780 S, Owner, false, false, false);
781 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
782 // C++ [class.union]p2:
783 // The names of the members of an anonymous union shall be
784 // distinct from the names of any other entity in the
785 // scope in which the anonymous union is declared.
786 unsigned diagKind
787 = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl
788 : diag::err_anonymous_struct_member_redecl;
789 Diag((*F)->getLocation(), diagKind)
790 << (*F)->getDeclName();
791 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
792 Invalid = true;
793 } else {
794 // C++ [class.union]p2:
795 // For the purpose of name lookup, after the anonymous union
796 // definition, the members of the anonymous union are
797 // considered to have been defined in the scope in which the
798 // anonymous union is declared.
Douglas Gregor482b77d2009-01-12 23:27:07 +0000799 Owner->insert(*F);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000800 S->AddDecl(*F);
801 IdResolver.AddDecl(*F);
802 }
803 } else if (const RecordType *InnerRecordType
804 = (*F)->getType()->getAsRecordType()) {
805 RecordDecl *InnerRecord = InnerRecordType->getDecl();
806 if (InnerRecord->isAnonymousStructOrUnion())
807 Invalid = Invalid ||
808 InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
809 }
810 }
811
812 return Invalid;
813}
814
815/// ActOnAnonymousStructOrUnion - Handle the declaration of an
816/// anonymous structure or union. Anonymous unions are a C++ feature
817/// (C++ [class.union]) and a GNU C extension; anonymous structures
818/// are a GNU C and GNU C++ extension.
819Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
820 RecordDecl *Record) {
821 DeclContext *Owner = Record->getDeclContext();
822
823 // Diagnose whether this anonymous struct/union is an extension.
824 if (Record->isUnion() && !getLangOptions().CPlusPlus)
825 Diag(Record->getLocation(), diag::ext_anonymous_union);
826 else if (!Record->isUnion())
827 Diag(Record->getLocation(), diag::ext_anonymous_struct);
828
829 // C and C++ require different kinds of checks for anonymous
830 // structs/unions.
831 bool Invalid = false;
832 if (getLangOptions().CPlusPlus) {
833 const char* PrevSpec = 0;
834 // C++ [class.union]p3:
835 // Anonymous unions declared in a named namespace or in the
836 // global namespace shall be declared static.
837 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
838 (isa<TranslationUnitDecl>(Owner) ||
839 (isa<NamespaceDecl>(Owner) &&
840 cast<NamespaceDecl>(Owner)->getDeclName()))) {
841 Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
842 Invalid = true;
843
844 // Recover by adding 'static'.
845 DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec);
846 }
847 // C++ [class.union]p3:
848 // A storage class is not allowed in a declaration of an
849 // anonymous union in a class scope.
850 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
851 isa<RecordDecl>(Owner)) {
852 Diag(DS.getStorageClassSpecLoc(),
853 diag::err_anonymous_union_with_storage_spec);
854 Invalid = true;
855
856 // Recover by removing the storage specifier.
857 DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
858 PrevSpec);
859 }
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000860
861 // C++ [class.union]p2:
862 // The member-specification of an anonymous union shall only
863 // define non-static data members. [Note: nested types and
864 // functions cannot be declared within an anonymous union. ]
865 for (DeclContext::decl_iterator Mem = Record->decls_begin(),
866 MemEnd = Record->decls_end();
867 Mem != MemEnd; ++Mem) {
868 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
869 // C++ [class.union]p3:
870 // An anonymous union shall not have private or protected
871 // members (clause 11).
872 if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
873 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
874 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
875 Invalid = true;
876 }
877 } else if ((*Mem)->isImplicit()) {
878 // Any implicit members are fine.
879 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
880 if (!MemRecord->isAnonymousStructOrUnion() &&
881 MemRecord->getDeclName()) {
882 // This is a nested type declaration.
883 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
884 << (int)Record->isUnion();
885 Invalid = true;
886 }
887 } else {
888 // We have something that isn't a non-static data
889 // member. Complain about it.
890 unsigned DK = diag::err_anonymous_record_bad_member;
891 if (isa<TypeDecl>(*Mem))
892 DK = diag::err_anonymous_record_with_type;
893 else if (isa<FunctionDecl>(*Mem))
894 DK = diag::err_anonymous_record_with_function;
895 else if (isa<VarDecl>(*Mem))
896 DK = diag::err_anonymous_record_with_static;
897 Diag((*Mem)->getLocation(), DK)
898 << (int)Record->isUnion();
899 Invalid = true;
900 }
901 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000902 } else {
903 // FIXME: Check GNU C semantics
Douglas Gregor4920f1f2009-01-12 22:49:06 +0000904 if (Record->isUnion() && !Owner->isRecord()) {
905 Diag(Record->getLocation(), diag::err_anonymous_union_not_member)
906 << (int)getLangOptions().CPlusPlus;
907 Invalid = true;
908 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000909 }
910
911 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregor4920f1f2009-01-12 22:49:06 +0000912 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
913 << (int)getLangOptions().CPlusPlus;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000914 Invalid = true;
915 }
916
917 // Create a declaration for this anonymous struct/union.
918 ScopedDecl *Anon = 0;
919 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
920 Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
921 /*IdentifierInfo=*/0,
922 Context.getTypeDeclType(Record),
923 /*BitWidth=*/0, /*Mutable=*/false,
924 /*PrevDecl=*/0);
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000925 Anon->setAccess(AS_public);
926 if (getLangOptions().CPlusPlus)
927 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000928 } else {
929 VarDecl::StorageClass SC;
930 switch (DS.getStorageClassSpec()) {
931 default: assert(0 && "Unknown storage class!");
932 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
933 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
934 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
935 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
936 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
937 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
938 case DeclSpec::SCS_mutable:
939 // mutable can only appear on non-static class members, so it's always
940 // an error here
941 Diag(Record->getLocation(), diag::err_mutable_nonmember);
942 Invalid = true;
943 SC = VarDecl::None;
944 break;
945 }
946
947 Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
948 /*IdentifierInfo=*/0,
949 Context.getTypeDeclType(Record),
950 SC, /*FIXME:LastDeclarator=*/0,
951 DS.getSourceRange().getBegin());
952 }
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000953 Anon->setImplicit();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000954
955 // Add the anonymous struct/union object to the current
956 // context. We'll be referencing this object when we refer to one of
957 // its members.
Douglas Gregor482b77d2009-01-12 23:27:07 +0000958 Owner->addDecl(Anon);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000959
960 // Inject the members of the anonymous struct/union into the owning
961 // context and into the identifier resolver chain for name lookup
962 // purposes.
Douglas Gregor4920f1f2009-01-12 22:49:06 +0000963 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
964 Invalid = true;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000965
966 // Mark this as an anonymous struct/union type. Note that we do not
967 // do this until after we have already checked and injected the
968 // members of this anonymous struct/union type, because otherwise
969 // the members could be injected twice: once by DeclContext when it
970 // builds its lookup table, and once by
971 // InjectAnonymousStructOrUnionMembers.
972 Record->setAnonymousStructOrUnion(true);
973
974 if (Invalid)
975 Anon->setInvalidDecl();
976
977 return Anon;
Reid Spencer5f016e22007-07-11 17:01:13 +0000978}
979
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000980bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType,
981 bool DirectInit) {
Steve Narofff0090632007-09-02 02:04:30 +0000982 // Get the type before calling CheckSingleAssignmentConstraints(), since
983 // it can promote the expression.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000984 QualType InitType = Init->getType();
Douglas Gregor45920e82008-12-19 17:40:08 +0000985
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000986 if (getLangOptions().CPlusPlus) {
987 // FIXME: I dislike this error message. A lot.
988 if (PerformImplicitConversion(Init, DeclType, "initializing", DirectInit))
989 return Diag(Init->getSourceRange().getBegin(),
990 diag::err_typecheck_convert_incompatible)
991 << DeclType << Init->getType() << "initializing"
992 << Init->getSourceRange();
993
994 return false;
995 }
Douglas Gregor45920e82008-12-19 17:40:08 +0000996
Chris Lattner5cf216b2008-01-04 18:04:52 +0000997 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
998 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
999 InitType, Init, "initializing");
Steve Narofff0090632007-09-02 02:04:30 +00001000}
1001
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001002bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001003 const ArrayType *AT = Context.getAsArrayType(DeclT);
1004
1005 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001006 // C99 6.7.8p14. We have an array of character type with unknown size
1007 // being initialized to a string literal.
1008 llvm::APSInt ConstVal(32);
1009 ConstVal = strLiteral->getByteLength() + 1;
1010 // Return a new array type (C99 6.7.8p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +00001011 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001012 ArrayType::Normal, 0);
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001013 } else {
1014 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001015 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001016 // FIXME: Avoid truncation for 64-bit length strings.
1017 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001018 Diag(strLiteral->getSourceRange().getBegin(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001019 diag::warn_initializer_string_for_char_array_too_long)
1020 << strLiteral->getSourceRange();
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001021 }
1022 // Set type from "char *" to "constant array of char".
1023 strLiteral->setType(DeclT);
1024 // For now, we always return false (meaning success).
1025 return false;
1026}
1027
1028StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001029 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Naroffa9960332008-01-25 00:51:06 +00001030 if (AT && AT->getElementType()->isCharType()) {
1031 return dyn_cast<StringLiteral>(Init);
1032 }
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001033 return 0;
1034}
1035
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001036bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
1037 SourceLocation InitLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001038 DeclarationName InitEntity,
1039 bool DirectInit) {
Douglas Gregor264c8ed2008-12-18 21:49:58 +00001040 if (DeclType->isDependentType() || Init->isTypeDependent())
1041 return false;
1042
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001043 // C++ [dcl.init.ref]p1:
Sebastian Redld14094d2008-11-24 20:06:50 +00001044 // A variable declared to be a T&, that is "reference to type T"
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001045 // (8.3.2), shall be initialized by an object, or function, of
1046 // type T or by an object that can be converted into a T.
1047 if (DeclType->isReferenceType())
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001048 return CheckReferenceInit(Init, DeclType, 0, false, DirectInit);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001049
Steve Naroffca107302008-01-21 23:53:58 +00001050 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
1051 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001052 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001053 return Diag(InitLoc, diag::err_variable_object_no_init)
1054 << VAT->getSizeExpr()->getSourceRange();
Steve Naroffca107302008-01-21 23:53:58 +00001055
Steve Naroff2fdc3742007-12-10 22:44:33 +00001056 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
1057 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001058 // FIXME: Handle wide strings
1059 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
1060 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedmana312ce22008-02-08 00:48:24 +00001061
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001062 // C++ [dcl.init]p14:
1063 // -- If the destination type is a (possibly cv-qualified) class
1064 // type:
1065 if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
1066 QualType DeclTypeC = Context.getCanonicalType(DeclType);
1067 QualType InitTypeC = Context.getCanonicalType(Init->getType());
1068
1069 // -- If the initialization is direct-initialization, or if it is
1070 // copy-initialization where the cv-unqualified version of the
1071 // source type is the same class as, or a derived class of, the
1072 // class of the destination, constructors are considered.
1073 if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
1074 IsDerivedFrom(InitTypeC, DeclTypeC)) {
1075 CXXConstructorDecl *Constructor
1076 = PerformInitializationByConstructor(DeclType, &Init, 1,
1077 InitLoc, Init->getSourceRange(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001078 InitEntity,
1079 DirectInit? IK_Direct : IK_Copy);
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001080 return Constructor == 0;
1081 }
1082
1083 // -- Otherwise (i.e., for the remaining copy-initialization
1084 // cases), user-defined conversion sequences that can
1085 // convert from the source type to the destination type or
1086 // (when a conversion function is used) to a derived class
1087 // thereof are enumerated as described in 13.3.1.4, and the
1088 // best one is chosen through overload resolution
1089 // (13.3). If the conversion cannot be done or is
1090 // ambiguous, the initialization is ill-formed. The
1091 // function selected is called with the initializer
1092 // expression as its argument; if the function is a
1093 // constructor, the call initializes a temporary of the
1094 // destination type.
1095 // FIXME: We're pretending to do copy elision here; return to
1096 // this when we have ASTs for such things.
Douglas Gregor45920e82008-12-19 17:40:08 +00001097 if (!PerformImplicitConversion(Init, DeclType, "initializing"))
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001098 return false;
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00001099
Douglas Gregor61366e92008-12-24 00:01:03 +00001100 if (InitEntity)
1101 return Diag(InitLoc, diag::err_cannot_initialize_decl)
1102 << InitEntity << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1103 << Init->getType() << Init->getSourceRange();
1104 else
1105 return Diag(InitLoc, diag::err_cannot_initialize_decl_noname)
1106 << DeclType << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1107 << Init->getType() << Init->getSourceRange();
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001108 }
1109
Steve Naroff1ac6fdd2008-09-29 20:07:05 +00001110 // C99 6.7.8p16.
Eli Friedmana312ce22008-02-08 00:48:24 +00001111 if (DeclType->isArrayType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001112 return Diag(Init->getLocStart(), diag::err_array_init_list_required)
1113 << Init->getSourceRange();
Eli Friedmana312ce22008-02-08 00:48:24 +00001114
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001115 return CheckSingleInitializer(Init, DeclType, DirectInit);
Douglas Gregor64bffa92008-11-05 16:20:31 +00001116 } else if (getLangOptions().CPlusPlus) {
1117 // C++ [dcl.init]p14:
1118 // [...] If the class is an aggregate (8.5.1), and the initializer
1119 // is a brace-enclosed list, see 8.5.1.
1120 //
1121 // Note: 8.5.1 is handled below; here, we diagnose the case where
1122 // we have an initializer list and a destination type that is not
1123 // an aggregate.
1124 // FIXME: In C++0x, this is yet another form of initialization.
1125 if (const RecordType *ClassRec = DeclType->getAsRecordType()) {
1126 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
1127 if (!ClassDecl->isAggregate())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001128 return Diag(InitLoc, diag::err_init_non_aggr_init_list)
Chris Lattnerd1625842008-11-24 06:25:27 +00001129 << DeclType << Init->getSourceRange();
Douglas Gregor64bffa92008-11-05 16:20:31 +00001130 }
Steve Naroff2fdc3742007-12-10 22:44:33 +00001131 }
Eli Friedmane6f058f2008-06-06 19:40:52 +00001132
Steve Naroff0cca7492008-05-01 22:18:59 +00001133 InitListChecker CheckInitList(this, InitList, DeclType);
1134 return CheckInitList.HadError();
Steve Narofff0090632007-09-02 02:04:30 +00001135}
1136
Douglas Gregor10bd3682008-11-17 22:58:34 +00001137/// GetNameForDeclarator - Determine the full declaration name for the
1138/// given Declarator.
1139DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1140 switch (D.getKind()) {
1141 case Declarator::DK_Abstract:
1142 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
1143 return DeclarationName();
1144
1145 case Declarator::DK_Normal:
1146 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
1147 return DeclarationName(D.getIdentifier());
1148
1149 case Declarator::DK_Constructor: {
1150 QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
1151 Ty = Context.getCanonicalType(Ty);
1152 return Context.DeclarationNames.getCXXConstructorName(Ty);
1153 }
1154
1155 case Declarator::DK_Destructor: {
1156 QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
1157 Ty = Context.getCanonicalType(Ty);
1158 return Context.DeclarationNames.getCXXDestructorName(Ty);
1159 }
1160
1161 case Declarator::DK_Conversion: {
1162 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1163 Ty = Context.getCanonicalType(Ty);
1164 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
1165 }
Douglas Gregore94ca9e42008-11-18 14:39:36 +00001166
1167 case Declarator::DK_Operator:
1168 assert(D.getIdentifier() == 0 && "operator names have no identifier");
1169 return Context.DeclarationNames.getCXXOperatorName(
1170 D.getOverloadedOperator());
Douglas Gregor10bd3682008-11-17 22:58:34 +00001171 }
1172
1173 assert(false && "Unknown name kind");
1174 return DeclarationName();
1175}
1176
Douglas Gregor584049d2008-12-15 23:53:10 +00001177/// isNearlyMatchingMemberFunction - Determine whether the C++ member
1178/// functions Declaration and Definition are "nearly" matching. This
1179/// heuristic is used to improve diagnostics in the case where an
1180/// out-of-line member function definition doesn't match any
1181/// declaration within the class.
1182static bool isNearlyMatchingMemberFunction(ASTContext &Context,
1183 FunctionDecl *Declaration,
1184 FunctionDecl *Definition) {
1185 if (Declaration->param_size() != Definition->param_size())
1186 return false;
1187 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1188 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1189 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1190
1191 DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType());
1192 DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType());
1193 if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType())
1194 return false;
1195 }
1196
1197 return true;
1198}
1199
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001200Sema::DeclTy *
Douglas Gregor584049d2008-12-15 23:53:10 +00001201Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1202 bool IsFunctionDefinition) {
Steve Naroff94745042007-09-13 23:52:58 +00001203 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Douglas Gregor10bd3682008-11-17 22:58:34 +00001204 DeclarationName Name = GetNameForDeclarator(D);
1205
Chris Lattnere80a59c2007-07-25 00:24:17 +00001206 // All of these full declarators require an identifier. If it doesn't have
1207 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor10bd3682008-11-17 22:58:34 +00001208 if (!Name) {
Chris Lattner1f6f54b2008-11-11 06:13:16 +00001209 if (!D.getInvalidType()) // Reject this if we think it is valid.
1210 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001211 diag::err_declarator_need_ident)
1212 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattnere80a59c2007-07-25 00:24:17 +00001213 return 0;
1214 }
1215
Chris Lattner31e05722007-08-26 06:24:45 +00001216 // The scope passed in may not be a decl scope. Zip up the scope tree until
1217 // we find one that is.
Douglas Gregor44b43212008-12-11 16:49:14 +00001218 while ((S->getFlags() & Scope::DeclScope) == 0 ||
1219 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattner31e05722007-08-26 06:24:45 +00001220 S = S->getParent();
1221
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001222 DeclContext *DC;
1223 Decl *PrevDecl;
Steve Naroffc752d042007-09-13 18:10:37 +00001224 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +00001225 bool InvalidDecl = false;
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001226
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001227 // See if this is a redefinition of a variable in the same scope.
1228 if (!D.getCXXScopeSpec().isSet()) {
1229 DC = CurContext;
Douglas Gregor10bd3682008-11-17 22:58:34 +00001230 PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001231 } else { // Something like "int foo::x;"
1232 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregor10bd3682008-11-17 22:58:34 +00001233 PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S, DC);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001234
1235 // C++ 7.3.1.2p2:
1236 // Members (including explicit specializations of templates) of a named
1237 // namespace can also be defined outside that namespace by explicit
1238 // qualification of the name being defined, provided that the entity being
1239 // defined was already declared in the namespace and the definition appears
1240 // after the point of declaration in a namespace that encloses the
1241 // declarations namespace.
1242 //
Douglas Gregor584049d2008-12-15 23:53:10 +00001243 // Note that we only check the context at this point. We don't yet
1244 // have enough information to make sure that PrevDecl is actually
1245 // the declaration we want to match. For example, given:
1246 //
Douglas Gregor9d350972008-12-12 08:25:50 +00001247 // class X {
1248 // void f();
Douglas Gregor584049d2008-12-15 23:53:10 +00001249 // void f(float);
Douglas Gregor9d350972008-12-12 08:25:50 +00001250 // };
1251 //
Douglas Gregor584049d2008-12-15 23:53:10 +00001252 // void X::f(int) { } // ill-formed
1253 //
1254 // In this case, PrevDecl will point to the overload set
1255 // containing the two f's declared in X, but neither of them
1256 // matches.
1257 if (!CurContext->Encloses(DC)) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001258 // The qualifying scope doesn't enclose the original declaration.
1259 // Emit diagnostic based on current scope.
1260 SourceLocation L = D.getIdentifierLoc();
1261 SourceRange R = D.getCXXScopeSpec().getRange();
1262 if (isa<FunctionDecl>(CurContext)) {
Chris Lattner011bb4e2008-11-23 20:28:15 +00001263 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001264 } else {
Chris Lattner011bb4e2008-11-23 20:28:15 +00001265 Diag(L, diag::err_invalid_declarator_scope)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001266 << Name << cast<NamedDecl>(DC)->getDeclName() << R;
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001267 }
Douglas Gregor44b43212008-12-11 16:49:14 +00001268 InvalidDecl = true;
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001269 }
1270 }
1271
Douglas Gregorf57172b2008-12-08 18:40:42 +00001272 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00001273 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor898574e2008-12-05 23:32:09 +00001274 InvalidDecl = InvalidDecl
1275 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregor72c3f312008-12-05 18:15:24 +00001276 // Just pretend that we didn't see the previous declaration.
1277 PrevDecl = 0;
1278 }
1279
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001280 // In C++, the previous declaration we find might be a tag type
1281 // (class or enum). In this case, the new declaration will hide the
1282 // tag type.
1283 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
1284 PrevDecl = 0;
1285
Chris Lattner41af0932007-11-14 06:34:38 +00001286 QualType R = GetTypeForDeclarator(D, S);
1287 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
1288
Reid Spencer5f016e22007-07-11 17:01:13 +00001289 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregor584049d2008-12-15 23:53:10 +00001290 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1291 if (D.getCXXScopeSpec().isSet()) {
1292 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1293 << D.getCXXScopeSpec().getRange();
1294 InvalidDecl = true;
1295 // Pretend we didn't see the scope specifier.
1296 DC = 0;
1297 }
1298
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001299 // Check that there are no default arguments (C++ only).
1300 if (getLangOptions().CPlusPlus)
1301 CheckExtraCXXDefaultArguments(D);
1302
Chris Lattner41af0932007-11-14 06:34:38 +00001303 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +00001304 if (!NewTD) return 0;
1305
1306 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner3ff30c82008-06-29 00:02:00 +00001307 ProcessDeclAttributes(NewTD, D);
Steve Naroffffce4d52008-01-09 23:34:55 +00001308 // Merge the decl with the existing one if appropriate. If the decl is
1309 // in an outer scope, it isn't the same thing.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001310 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001311 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
1312 if (NewTD == 0) return 0;
1313 }
1314 New = NewTD;
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001315 if (S->getFnParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001316 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1317 // then it shall have block scope.
Eli Friedman9db13972008-02-15 12:53:51 +00001318 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
Anders Carlsson96e05bc2008-12-07 00:20:55 +00001319 if (NewTD->getUnderlyingType()->isVariableArrayType())
1320 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1321 else
1322 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1323
Steve Naroffd7444aa2007-08-31 17:20:07 +00001324 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001325 }
1326 }
Chris Lattner41af0932007-11-14 06:34:38 +00001327 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattner271f1a62007-09-27 15:15:46 +00001328 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +00001329 switch (D.getDeclSpec().getStorageClassSpec()) {
1330 default: assert(0 && "Unknown storage class!");
Sebastian Redl64b45f72009-01-05 20:52:13 +00001331 case DeclSpec::SCS_auto:
Reid Spencer5f016e22007-07-11 17:01:13 +00001332 case DeclSpec::SCS_register:
Sebastian Redl669d5d72008-11-14 23:42:31 +00001333 case DeclSpec::SCS_mutable:
Chris Lattnerd1625842008-11-24 06:25:27 +00001334 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func);
Steve Naroff5912a352007-08-28 20:14:24 +00001335 InvalidDecl = true;
1336 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001337 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1338 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
1339 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff7dd0bd42008-01-28 21:57:15 +00001340 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001341 }
1342
Chris Lattnera98e58d2008-03-15 21:24:04 +00001343 bool isInline = D.getDeclSpec().isInlineSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001344 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregorb48fe382008-10-31 09:07:45 +00001345 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1346
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001347 FunctionDecl *NewFD;
Douglas Gregor42a552f2008-11-05 20:51:48 +00001348 if (D.getKind() == Declarator::DK_Constructor) {
Douglas Gregorb48fe382008-10-31 09:07:45 +00001349 // This is a C++ constructor declaration.
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001350 assert(DC->isRecord() &&
Douglas Gregorb48fe382008-10-31 09:07:45 +00001351 "Constructors can only be declared in a member context");
1352
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001353 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
Douglas Gregorb48fe382008-10-31 09:07:45 +00001354
1355 // Create the new declaration
1356 NewFD = CXXConstructorDecl::Create(Context,
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001357 cast<CXXRecordDecl>(DC),
Douglas Gregor10bd3682008-11-17 22:58:34 +00001358 D.getIdentifierLoc(), Name, R,
Douglas Gregorb48fe382008-10-31 09:07:45 +00001359 isExplicit, isInline,
1360 /*isImplicitlyDeclared=*/false);
1361
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001362 if (InvalidDecl)
Douglas Gregor42a552f2008-11-05 20:51:48 +00001363 NewFD->setInvalidDecl();
1364 } else if (D.getKind() == Declarator::DK_Destructor) {
1365 // This is a C++ destructor declaration.
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001366 if (DC->isRecord()) {
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001367 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001368
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00001369 NewFD = CXXDestructorDecl::Create(Context,
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001370 cast<CXXRecordDecl>(DC),
Douglas Gregor10bd3682008-11-17 22:58:34 +00001371 D.getIdentifierLoc(), Name, R,
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00001372 isInline,
1373 /*isImplicitlyDeclared=*/false);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001374
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001375 if (InvalidDecl)
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00001376 NewFD->setInvalidDecl();
1377 } else {
1378 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001379
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00001380 // Create a FunctionDecl to satisfy the function definition parsing
1381 // code path.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001382 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregor10bd3682008-11-17 22:58:34 +00001383 Name, R, SC, isInline, LastDeclarator,
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00001384 // FIXME: Move to DeclGroup...
1385 D.getDeclSpec().getSourceRange().getBegin());
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001386 InvalidDecl = true;
Douglas Gregor42a552f2008-11-05 20:51:48 +00001387 NewFD->setInvalidDecl();
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +00001388 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001389 } else if (D.getKind() == Declarator::DK_Conversion) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001390 if (!DC->isRecord()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001391 Diag(D.getIdentifierLoc(),
1392 diag::err_conv_function_not_member);
1393 return 0;
1394 } else {
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001395 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001396
Douglas Gregor70316a02008-12-26 15:00:45 +00001397 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
Douglas Gregor10bd3682008-11-17 22:58:34 +00001398 D.getIdentifierLoc(), Name, R,
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001399 isInline, isExplicit);
1400
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001401 if (InvalidDecl)
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001402 NewFD->setInvalidDecl();
1403 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001404 } else if (DC->isRecord()) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001405 // This is a C++ method declaration.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001406 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
Douglas Gregor10bd3682008-11-17 22:58:34 +00001407 D.getIdentifierLoc(), Name, R,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001408 (SC == FunctionDecl::Static), isInline,
1409 LastDeclarator);
1410 } else {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001411 NewFD = FunctionDecl::Create(Context, DC,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001412 D.getIdentifierLoc(),
Douglas Gregor10bd3682008-11-17 22:58:34 +00001413 Name, R, SC, isInline, LastDeclarator,
Steve Naroff0eb07bf2008-10-03 00:02:03 +00001414 // FIXME: Move to DeclGroup...
1415 D.getDeclSpec().getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001416 }
Douglas Gregor584049d2008-12-15 23:53:10 +00001417
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00001418 // Set the lexical context. If the declarator has a C++
1419 // scope specifier, the lexical context will be different
1420 // from the semantic context.
1421 NewFD->setLexicalDeclContext(CurContext);
1422
Daniel Dunbara80f8742008-08-05 01:35:17 +00001423 // Handle GNU asm-label extension (encoded as an attribute).
Daniel Dunbar914701e2008-08-05 16:28:08 +00001424 if (Expr *E = (Expr*) D.getAsmLabel()) {
Daniel Dunbara80f8742008-08-05 01:35:17 +00001425 // The parser guarantees this is a string.
1426 StringLiteral *SE = cast<StringLiteral>(E);
1427 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1428 SE->getByteLength())));
1429 }
1430
Chris Lattner04421082008-04-08 04:40:51 +00001431 // Copy the parameter declarations from the declarator D to
1432 // the function declaration NewFD, if they are available.
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001433 if (D.getNumTypeObjects() > 0) {
Chris Lattner04421082008-04-08 04:40:51 +00001434 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1435
1436 // Create Decl objects for each parameter, adding them to the
1437 // FunctionDecl.
1438 llvm::SmallVector<ParmVarDecl*, 16> Params;
1439
1440 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1441 // function that takes no arguments, not a function that takes a
Chris Lattner8123a952008-04-10 02:22:51 +00001442 // single void argument.
Eli Friedman6d1e4b52008-05-22 08:54:03 +00001443 // We let through "const void" here because Sema::GetTypeForDeclarator
1444 // already checks for that case.
Chris Lattner04421082008-04-08 04:40:51 +00001445 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1446 FTI.ArgInfo[0].Param &&
Chris Lattner04421082008-04-08 04:40:51 +00001447 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1448 // empty arg list, don't push any params.
Chris Lattner8123a952008-04-10 02:22:51 +00001449 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1450
Chris Lattnerdef026a2008-04-10 02:26:16 +00001451 // In C++, the empty parameter-type-list must be spelled "void"; a
1452 // typedef of void is not permitted.
1453 if (getLangOptions().CPlusPlus &&
Eli Friedman6d1e4b52008-05-22 08:54:03 +00001454 Param->getType().getUnqualifiedType() != Context.VoidTy) {
Chris Lattner8123a952008-04-10 02:22:51 +00001455 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1456 }
Eli Friedmaneb4b7052008-08-25 21:31:01 +00001457 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
Chris Lattner04421082008-04-08 04:40:51 +00001458 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1459 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1460 }
1461
Ted Kremenekfc767612009-01-14 00:42:25 +00001462 NewFD->setParams(Context, &Params[0], Params.size());
Douglas Gregor6cbd3df2008-10-24 18:09:54 +00001463 } else if (R->getAsTypedefType()) {
1464 // When we're declaring a function with a typedef, as in the
1465 // following example, we'll need to synthesize (unnamed)
1466 // parameters for use in the declaration.
1467 //
1468 // @code
1469 // typedef void fn(int);
1470 // fn f;
1471 // @endcode
1472 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1473 if (!FT) {
1474 // This is a typedef of a function with no prototype, so we
1475 // don't need to do anything.
1476 } else if ((FT->getNumArgs() == 0) ||
1477 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1478 FT->getArgType(0)->isVoidType())) {
1479 // This is a zero-argument function. We don't need to do anything.
1480 } else {
1481 // Synthesize a parameter for each argument type.
1482 llvm::SmallVector<ParmVarDecl*, 16> Params;
1483 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1484 ArgType != FT->arg_type_end(); ++ArgType) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001485 Params.push_back(ParmVarDecl::Create(Context, DC,
Douglas Gregor6cbd3df2008-10-24 18:09:54 +00001486 SourceLocation(), 0,
1487 *ArgType, VarDecl::None,
1488 0, 0));
1489 }
1490
Ted Kremenekfc767612009-01-14 00:42:25 +00001491 NewFD->setParams(Context, &Params[0], Params.size());
Douglas Gregor6cbd3df2008-10-24 18:09:54 +00001492 }
Chris Lattner04421082008-04-08 04:40:51 +00001493 }
1494
Douglas Gregor72b505b2008-12-16 21:30:33 +00001495 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1496 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001497 else if (isa<CXXDestructorDecl>(NewFD)) {
1498 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1499 Record->setUserDeclaredDestructor(true);
1500 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1501 // user-defined destructor.
1502 Record->setPOD(false);
1503 } else if (CXXConversionDecl *Conversion =
1504 dyn_cast<CXXConversionDecl>(NewFD))
Douglas Gregor2def4832008-11-17 20:34:05 +00001505 ActOnConversionDeclarator(Conversion);
Douglas Gregorb48fe382008-10-31 09:07:45 +00001506
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001507 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1508 if (NewFD->isOverloadedOperator() &&
1509 CheckOverloadedOperatorDeclaration(NewFD))
1510 NewFD->setInvalidDecl();
1511
Steve Naroffffce4d52008-01-09 23:34:55 +00001512 // Merge the decl with the existing one if appropriate. Since C functions
1513 // are in a flat namespace, make sure we consider decls in outer scopes.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001514 if (PrevDecl &&
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001515 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
Douglas Gregorf0097952008-04-21 02:02:58 +00001516 bool Redeclaration = false;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001517
1518 // If C++, determine whether NewFD is an overload of PrevDecl or
1519 // a declaration that requires merging. If it's an overload,
1520 // there's no more work to do here; we'll just add the new
1521 // function to the scope.
1522 OverloadedFunctionDecl::function_iterator MatchedDecl;
1523 if (!getLangOptions().CPlusPlus ||
1524 !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
1525 Decl *OldDecl = PrevDecl;
1526
1527 // If PrevDecl was an overloaded function, extract the
1528 // FunctionDecl that matched.
1529 if (isa<OverloadedFunctionDecl>(PrevDecl))
1530 OldDecl = *MatchedDecl;
1531
1532 // NewFD and PrevDecl represent declarations that need to be
1533 // merged.
1534 NewFD = MergeFunctionDecl(NewFD, OldDecl, Redeclaration);
1535
1536 if (NewFD == 0) return 0;
1537 if (Redeclaration) {
1538 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1539
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001540 // An out-of-line member function declaration must also be a
1541 // definition (C++ [dcl.meaning]p1).
1542 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1543 !InvalidDecl) {
1544 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1545 << D.getCXXScopeSpec().getRange();
1546 NewFD->setInvalidDecl();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001547 }
1548 }
Douglas Gregorf0097952008-04-21 02:02:58 +00001549 }
Douglas Gregor584049d2008-12-15 23:53:10 +00001550
1551 if (!Redeclaration && D.getCXXScopeSpec().isSet()) {
1552 // The user tried to provide an out-of-line definition for a
1553 // member function, but there was no such member function
1554 // declared (C++ [class.mfct]p2). For example:
1555 //
1556 // class X {
1557 // void f() const;
1558 // };
1559 //
1560 // void X::f() { } // ill-formed
1561 //
1562 // Complain about this problem, and attempt to suggest close
1563 // matches (e.g., those that differ only in cv-qualifiers and
1564 // whether the parameter types are references).
1565 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
1566 << cast<CXXRecordDecl>(DC)->getDeclName()
1567 << D.getCXXScopeSpec().getRange();
1568 InvalidDecl = true;
1569
1570 PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S, DC);
1571 if (!PrevDecl) {
1572 // Nothing to suggest.
1573 } else if (OverloadedFunctionDecl *Ovl
1574 = dyn_cast<OverloadedFunctionDecl>(PrevDecl)) {
1575 for (OverloadedFunctionDecl::function_iterator
1576 Func = Ovl->function_begin(),
1577 FuncEnd = Ovl->function_end();
1578 Func != FuncEnd; ++Func) {
1579 if (isNearlyMatchingMemberFunction(Context, *Func, NewFD))
1580 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
1581
1582 }
1583 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(PrevDecl)) {
1584 // Suggest this no matter how mismatched it is; it's the only
1585 // thing we have.
1586 unsigned diag;
1587 if (isNearlyMatchingMemberFunction(Context, Method, NewFD))
1588 diag = diag::note_member_def_close_match;
1589 else if (Method->getBody())
1590 diag = diag::note_previous_definition;
1591 else
1592 diag = diag::note_previous_declaration;
1593 Diag(Method->getLocation(), diag);
1594 }
1595
1596 PrevDecl = 0;
1597 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001598 }
Anton Korobeynikov2f402702008-12-26 00:52:02 +00001599 // Handle attributes. We need to have merged decls when handling attributes
1600 // (for example to check for conflicts, etc).
1601 ProcessDeclAttributes(NewFD, D);
Reid Spencer5f016e22007-07-11 17:01:13 +00001602 New = NewFD;
Chris Lattner04421082008-04-08 04:40:51 +00001603
Douglas Gregor584049d2008-12-15 23:53:10 +00001604 if (getLangOptions().CPlusPlus) {
1605 // In C++, check default arguments now that we have merged decls.
Chris Lattner04421082008-04-08 04:40:51 +00001606 CheckCXXDefaultArguments(NewFD);
Douglas Gregor584049d2008-12-15 23:53:10 +00001607
1608 // An out-of-line member function declaration must also be a
1609 // definition (C++ [dcl.meaning]p1).
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001610 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
Douglas Gregor584049d2008-12-15 23:53:10 +00001611 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1612 << D.getCXXScopeSpec().getRange();
1613 InvalidDecl = true;
1614 }
1615 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001616 } else {
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001617 // Check that there are no default arguments (C++ only).
1618 if (getLangOptions().CPlusPlus)
1619 CheckExtraCXXDefaultArguments(D);
1620
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001621 if (R.getTypePtr()->isObjCInterfaceType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001622 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object)
1623 << D.getIdentifier();
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001624 InvalidDecl = true;
1625 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001626
1627 VarDecl *NewVD;
1628 VarDecl::StorageClass SC;
1629 switch (D.getDeclSpec().getStorageClassSpec()) {
Chris Lattner9e151e12008-03-15 21:10:16 +00001630 default: assert(0 && "Unknown storage class!");
1631 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1632 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1633 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1634 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1635 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1636 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001637 case DeclSpec::SCS_mutable:
1638 // mutable can only appear on non-static class members, so it's always
1639 // an error here
1640 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1641 InvalidDecl = true;
Douglas Gregore89b0282008-12-01 22:46:22 +00001642 SC = VarDecl::None;
Sebastian Redla11f42f2008-11-17 23:24:37 +00001643 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001644 }
Douglas Gregor10bd3682008-11-17 22:58:34 +00001645
1646 IdentifierInfo *II = Name.getAsIdentifierInfo();
1647 if (!II) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00001648 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1649 << Name.getAsString();
Douglas Gregor10bd3682008-11-17 22:58:34 +00001650 return 0;
1651 }
1652
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001653 if (DC->isRecord()) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001654 // This is a static data member for a C++ class.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001655 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001656 D.getIdentifierLoc(), II,
1657 R, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +00001658 } else {
Daniel Dunbar6f0200e2008-09-08 20:05:47 +00001659 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001660 if (S->getFnParent() == 0) {
1661 // C99 6.9p2: The storage-class specifiers auto and register shall not
1662 // appear in the declaration specifiers in an external declaration.
1663 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
Chris Lattnerd1625842008-11-24 06:25:27 +00001664 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001665 InvalidDecl = true;
1666 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001667 }
Sebastian Redl669d5d72008-11-14 23:42:31 +00001668 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
1669 II, R, SC, LastDeclarator,
1670 // FIXME: Move to DeclGroup...
1671 D.getDeclSpec().getSourceRange().getBegin());
1672 NewVD->setThreadSpecified(ThreadSpecified);
Steve Naroff53a32342007-08-28 18:45:29 +00001673 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001674 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner3ff30c82008-06-29 00:02:00 +00001675 ProcessDeclAttributes(NewVD, D);
Nate Begemanc8e89a82008-03-14 18:07:10 +00001676
Daniel Dunbara735ad82008-08-06 00:03:29 +00001677 // Handle GNU asm-label extension (encoded as an attribute).
1678 if (Expr *E = (Expr*) D.getAsmLabel()) {
1679 // The parser guarantees this is a string.
1680 StringLiteral *SE = cast<StringLiteral>(E);
1681 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1682 SE->getByteLength())));
1683 }
1684
Nate Begemanc8e89a82008-03-14 18:07:10 +00001685 // Emit an error if an address space was applied to decl with local storage.
1686 // This includes arrays of objects with address space qualifiers, but not
1687 // automatic variables that point to other address spaces.
1688 // ISO/IEC TR 18037 S5.1.2
Nate Begeman8e7dafe2008-03-25 18:36:32 +00001689 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1690 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1691 InvalidDecl = true;
Nate Begeman5af27e02008-03-14 00:22:18 +00001692 }
Steve Naroffffce4d52008-01-09 23:34:55 +00001693 // Merge the decl with the existing one if appropriate. If the decl is
1694 // in an outer scope, it isn't the same thing.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001695 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Douglas Gregor584049d2008-12-15 23:53:10 +00001696 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1697 // The user tried to define a non-static data member
1698 // out-of-line (C++ [dcl.meaning]p1).
1699 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1700 << D.getCXXScopeSpec().getRange();
1701 NewVD->Destroy(Context);
1702 return 0;
1703 }
1704
Reid Spencer5f016e22007-07-11 17:01:13 +00001705 NewVD = MergeVarDecl(NewVD, PrevDecl);
1706 if (NewVD == 0) return 0;
Douglas Gregor584049d2008-12-15 23:53:10 +00001707
1708 if (D.getCXXScopeSpec().isSet()) {
1709 // No previous declaration in the qualifying scope.
1710 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1711 << Name << D.getCXXScopeSpec().getRange();
1712 InvalidDecl = true;
1713 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001714 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001715 New = NewVD;
1716 }
1717
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +00001718 // Set the lexical context. If the declarator has a C++ scope specifier, the
1719 // lexical context will be different from the semantic context.
1720 New->setLexicalDeclContext(CurContext);
1721
Reid Spencer5f016e22007-07-11 17:01:13 +00001722 // If this has an identifier, add it to the scope stack.
Douglas Gregor10bd3682008-11-17 22:58:34 +00001723 if (Name)
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001724 PushOnScopeChains(New, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001725 // If any semantic error occurred, mark the decl as invalid.
1726 if (D.getInvalidType() || InvalidDecl)
1727 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001728
1729 return New;
1730}
1731
Steve Naroff6594a702008-10-27 11:34:16 +00001732void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001733 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1734 << Init->getSourceRange();
Steve Naroff6594a702008-10-27 11:34:16 +00001735}
1736
Eli Friedmanc594b322008-05-20 13:48:25 +00001737bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1738 switch (Init->getStmtClass()) {
1739 default:
Steve Naroff6594a702008-10-27 11:34:16 +00001740 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001741 return true;
1742 case Expr::ParenExprClass: {
1743 const ParenExpr* PE = cast<ParenExpr>(Init);
1744 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1745 }
1746 case Expr::CompoundLiteralExprClass:
1747 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregor1a49af92009-01-06 05:10:23 +00001748 case Expr::DeclRefExprClass:
1749 case Expr::QualifiedDeclRefExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00001750 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman97c0a392008-05-21 03:39:11 +00001751 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1752 if (VD->hasGlobalStorage())
1753 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00001754 InitializerElementNotConstant(Init);
Eli Friedman97c0a392008-05-21 03:39:11 +00001755 return true;
1756 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001757 if (isa<FunctionDecl>(D))
1758 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00001759 InitializerElementNotConstant(Init);
Steve Naroffd0091aa2008-01-10 22:15:12 +00001760 return true;
1761 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001762 case Expr::MemberExprClass: {
1763 const MemberExpr *M = cast<MemberExpr>(Init);
1764 if (M->isArrow())
1765 return CheckAddressConstantExpression(M->getBase());
1766 return CheckAddressConstantExpressionLValue(M->getBase());
1767 }
1768 case Expr::ArraySubscriptExprClass: {
1769 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1770 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1771 return CheckAddressConstantExpression(ASE->getBase()) ||
1772 CheckArithmeticConstantExpression(ASE->getIdx());
1773 }
1774 case Expr::StringLiteralClass:
Chris Lattnerd9f69102008-08-10 01:53:14 +00001775 case Expr::PredefinedExprClass:
Eli Friedmanc594b322008-05-20 13:48:25 +00001776 return false;
1777 case Expr::UnaryOperatorClass: {
1778 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1779
1780 // C99 6.6p9
1781 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman97c0a392008-05-21 03:39:11 +00001782 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedmanc594b322008-05-20 13:48:25 +00001783
Steve Naroff6594a702008-10-27 11:34:16 +00001784 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001785 return true;
1786 }
1787 }
1788}
1789
1790bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1791 switch (Init->getStmtClass()) {
1792 default:
Steve Naroff6594a702008-10-27 11:34:16 +00001793 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001794 return true;
Chris Lattner506ff882008-10-06 07:26:43 +00001795 case Expr::ParenExprClass:
1796 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedmanc594b322008-05-20 13:48:25 +00001797 case Expr::StringLiteralClass:
1798 case Expr::ObjCStringLiteralClass:
1799 return false;
Chris Lattner506ff882008-10-06 07:26:43 +00001800 case Expr::CallExprClass:
Douglas Gregorb4609802008-11-14 16:09:21 +00001801 case Expr::CXXOperatorCallExprClass:
Chris Lattner506ff882008-10-06 07:26:43 +00001802 // __builtin___CFStringMakeConstantString is a valid constant l-value.
1803 if (cast<CallExpr>(Init)->isBuiltinCall() ==
1804 Builtin::BI__builtin___CFStringMakeConstantString)
1805 return false;
1806
Steve Naroff6594a702008-10-27 11:34:16 +00001807 InitializerElementNotConstant(Init);
Chris Lattner506ff882008-10-06 07:26:43 +00001808 return true;
1809
Eli Friedmanc594b322008-05-20 13:48:25 +00001810 case Expr::UnaryOperatorClass: {
1811 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1812
1813 // C99 6.6p9
1814 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1815 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1816
1817 if (Exp->getOpcode() == UnaryOperator::Extension)
1818 return CheckAddressConstantExpression(Exp->getSubExpr());
1819
Steve Naroff6594a702008-10-27 11:34:16 +00001820 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001821 return true;
1822 }
1823 case Expr::BinaryOperatorClass: {
1824 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1825 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1826
1827 Expr *PExp = Exp->getLHS();
1828 Expr *IExp = Exp->getRHS();
1829 if (IExp->getType()->isPointerType())
1830 std::swap(PExp, IExp);
1831
1832 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1833 return CheckAddressConstantExpression(PExp) ||
1834 CheckArithmeticConstantExpression(IExp);
1835 }
Eli Friedmanc3f07642008-08-25 20:46:57 +00001836 case Expr::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001837 case Expr::CStyleCastExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00001838 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedmanc3f07642008-08-25 20:46:57 +00001839 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1840 // Check for implicit promotion
1841 if (SubExpr->getType()->isFunctionType() ||
1842 SubExpr->getType()->isArrayType())
1843 return CheckAddressConstantExpressionLValue(SubExpr);
1844 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001845
1846 // Check for pointer->pointer cast
1847 if (SubExpr->getType()->isPointerType())
1848 return CheckAddressConstantExpression(SubExpr);
1849
Eli Friedmanc3f07642008-08-25 20:46:57 +00001850 if (SubExpr->getType()->isIntegralType()) {
1851 // Check for the special-case of a pointer->int->pointer cast;
1852 // this isn't standard, but some code requires it. See
1853 // PR2720 for an example.
1854 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1855 if (SubCast->getSubExpr()->getType()->isPointerType()) {
1856 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1857 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1858 if (IntWidth >= PointerWidth) {
1859 return CheckAddressConstantExpression(SubCast->getSubExpr());
1860 }
1861 }
1862 }
1863 }
1864 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedmanc594b322008-05-20 13:48:25 +00001865 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedmanc3f07642008-08-25 20:46:57 +00001866 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001867
Steve Naroff6594a702008-10-27 11:34:16 +00001868 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001869 return true;
1870 }
1871 case Expr::ConditionalOperatorClass: {
1872 // FIXME: Should we pedwarn here?
1873 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1874 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Naroff6594a702008-10-27 11:34:16 +00001875 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001876 return true;
1877 }
1878 if (CheckArithmeticConstantExpression(Exp->getCond()))
1879 return true;
1880 if (Exp->getLHS() &&
1881 CheckAddressConstantExpression(Exp->getLHS()))
1882 return true;
1883 return CheckAddressConstantExpression(Exp->getRHS());
1884 }
1885 case Expr::AddrLabelExprClass:
1886 return false;
1887 }
1888}
1889
Eli Friedman4caf0552008-06-09 05:05:07 +00001890static const Expr* FindExpressionBaseAddress(const Expr* E);
1891
1892static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
1893 switch (E->getStmtClass()) {
1894 default:
1895 return E;
1896 case Expr::ParenExprClass: {
1897 const ParenExpr* PE = cast<ParenExpr>(E);
1898 return FindExpressionBaseAddressLValue(PE->getSubExpr());
1899 }
1900 case Expr::MemberExprClass: {
1901 const MemberExpr *M = cast<MemberExpr>(E);
1902 if (M->isArrow())
1903 return FindExpressionBaseAddress(M->getBase());
1904 return FindExpressionBaseAddressLValue(M->getBase());
1905 }
1906 case Expr::ArraySubscriptExprClass: {
1907 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1908 return FindExpressionBaseAddress(ASE->getBase());
1909 }
1910 case Expr::UnaryOperatorClass: {
1911 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1912
1913 if (Exp->getOpcode() == UnaryOperator::Deref)
1914 return FindExpressionBaseAddress(Exp->getSubExpr());
1915
1916 return E;
1917 }
1918 }
1919}
1920
1921static const Expr* FindExpressionBaseAddress(const Expr* E) {
1922 switch (E->getStmtClass()) {
1923 default:
1924 return E;
1925 case Expr::ParenExprClass: {
1926 const ParenExpr* PE = cast<ParenExpr>(E);
1927 return FindExpressionBaseAddress(PE->getSubExpr());
1928 }
1929 case Expr::UnaryOperatorClass: {
1930 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1931
1932 // C99 6.6p9
1933 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1934 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
1935
1936 if (Exp->getOpcode() == UnaryOperator::Extension)
1937 return FindExpressionBaseAddress(Exp->getSubExpr());
1938
1939 return E;
1940 }
1941 case Expr::BinaryOperatorClass: {
1942 const BinaryOperator *Exp = cast<BinaryOperator>(E);
1943
1944 Expr *PExp = Exp->getLHS();
1945 Expr *IExp = Exp->getRHS();
1946 if (IExp->getType()->isPointerType())
1947 std::swap(PExp, IExp);
1948
1949 return FindExpressionBaseAddress(PExp);
1950 }
1951 case Expr::ImplicitCastExprClass: {
1952 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
1953
1954 // Check for implicit promotion
1955 if (SubExpr->getType()->isFunctionType() ||
1956 SubExpr->getType()->isArrayType())
1957 return FindExpressionBaseAddressLValue(SubExpr);
1958
1959 // Check for pointer->pointer cast
1960 if (SubExpr->getType()->isPointerType())
1961 return FindExpressionBaseAddress(SubExpr);
1962
1963 // We assume that we have an arithmetic expression here;
1964 // if we don't, we'll figure it out later
1965 return 0;
1966 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001967 case Expr::CStyleCastExprClass: {
Eli Friedman4caf0552008-06-09 05:05:07 +00001968 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
1969
1970 // Check for pointer->pointer cast
1971 if (SubExpr->getType()->isPointerType())
1972 return FindExpressionBaseAddress(SubExpr);
1973
1974 // We assume that we have an arithmetic expression here;
1975 // if we don't, we'll figure it out later
1976 return 0;
1977 }
1978 }
1979}
1980
Anders Carlsson51fe9962008-11-22 21:04:56 +00001981bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedmanc594b322008-05-20 13:48:25 +00001982 switch (Init->getStmtClass()) {
1983 default:
Steve Naroff6594a702008-10-27 11:34:16 +00001984 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001985 return true;
1986 case Expr::ParenExprClass: {
1987 const ParenExpr* PE = cast<ParenExpr>(Init);
1988 return CheckArithmeticConstantExpression(PE->getSubExpr());
1989 }
1990 case Expr::FloatingLiteralClass:
1991 case Expr::IntegerLiteralClass:
1992 case Expr::CharacterLiteralClass:
1993 case Expr::ImaginaryLiteralClass:
1994 case Expr::TypesCompatibleExprClass:
1995 case Expr::CXXBoolLiteralExprClass:
1996 return false;
Douglas Gregorb4609802008-11-14 16:09:21 +00001997 case Expr::CallExprClass:
1998 case Expr::CXXOperatorCallExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00001999 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002000
2001 // Allow any constant foldable calls to builtins.
2002 if (CE->isBuiltinCall() && CE->isEvaluatable(Context))
Eli Friedmanc594b322008-05-20 13:48:25 +00002003 return false;
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002004
Steve Naroff6594a702008-10-27 11:34:16 +00002005 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002006 return true;
2007 }
Douglas Gregor1a49af92009-01-06 05:10:23 +00002008 case Expr::DeclRefExprClass:
2009 case Expr::QualifiedDeclRefExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00002010 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2011 if (isa<EnumConstantDecl>(D))
2012 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00002013 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002014 return true;
2015 }
2016 case Expr::CompoundLiteralExprClass:
2017 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2018 // but vectors are allowed to be magic.
2019 if (Init->getType()->isVectorType())
2020 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00002021 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002022 return true;
2023 case Expr::UnaryOperatorClass: {
2024 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2025
2026 switch (Exp->getOpcode()) {
2027 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2028 // See C99 6.6p3.
2029 default:
Steve Naroff6594a702008-10-27 11:34:16 +00002030 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002031 return true;
Eli Friedmanc594b322008-05-20 13:48:25 +00002032 case UnaryOperator::OffsetOf:
Eli Friedmanc594b322008-05-20 13:48:25 +00002033 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2034 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00002035 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002036 return true;
2037 case UnaryOperator::Extension:
2038 case UnaryOperator::LNot:
2039 case UnaryOperator::Plus:
2040 case UnaryOperator::Minus:
2041 case UnaryOperator::Not:
2042 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2043 }
2044 }
Sebastian Redl05189992008-11-11 17:56:53 +00002045 case Expr::SizeOfAlignOfExprClass: {
2046 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002047 // Special check for void types, which are allowed as an extension
Sebastian Redl05189992008-11-11 17:56:53 +00002048 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedmanc594b322008-05-20 13:48:25 +00002049 return false;
2050 // alignof always evaluates to a constant.
2051 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl05189992008-11-11 17:56:53 +00002052 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Naroff6594a702008-10-27 11:34:16 +00002053 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002054 return true;
2055 }
2056 return false;
2057 }
2058 case Expr::BinaryOperatorClass: {
2059 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2060
2061 if (Exp->getLHS()->getType()->isArithmeticType() &&
2062 Exp->getRHS()->getType()->isArithmeticType()) {
2063 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2064 CheckArithmeticConstantExpression(Exp->getRHS());
2065 }
2066
Eli Friedman4caf0552008-06-09 05:05:07 +00002067 if (Exp->getLHS()->getType()->isPointerType() &&
2068 Exp->getRHS()->getType()->isPointerType()) {
2069 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2070 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2071
2072 // Only allow a null (constant integer) base; we could
2073 // allow some additional cases if necessary, but this
2074 // is sufficient to cover offsetof-like constructs.
2075 if (!LHSBase && !RHSBase) {
2076 return CheckAddressConstantExpression(Exp->getLHS()) ||
2077 CheckAddressConstantExpression(Exp->getRHS());
2078 }
2079 }
2080
Steve Naroff6594a702008-10-27 11:34:16 +00002081 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002082 return true;
2083 }
2084 case Expr::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00002085 case Expr::CStyleCastExprClass: {
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002086 const Expr *SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman6d4abe12008-09-01 22:08:17 +00002087 if (SubExpr->getType()->isArithmeticType())
2088 return CheckArithmeticConstantExpression(SubExpr);
2089
Eli Friedmanb529d832008-09-02 09:37:00 +00002090 if (SubExpr->getType()->isPointerType()) {
2091 const Expr* Base = FindExpressionBaseAddress(SubExpr);
2092 // If the pointer has a null base, this is an offsetof-like construct
2093 if (!Base)
2094 return CheckAddressConstantExpression(SubExpr);
2095 }
2096
Steve Naroff6594a702008-10-27 11:34:16 +00002097 InitializerElementNotConstant(Init);
Eli Friedman6d4abe12008-09-01 22:08:17 +00002098 return true;
Eli Friedmanc594b322008-05-20 13:48:25 +00002099 }
2100 case Expr::ConditionalOperatorClass: {
2101 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner46cfefa2008-10-06 05:42:39 +00002102
2103 // If GNU extensions are disabled, we require all operands to be arithmetic
2104 // constant expressions.
2105 if (getLangOptions().NoExtensions) {
2106 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2107 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2108 CheckArithmeticConstantExpression(Exp->getRHS());
2109 }
2110
2111 // Otherwise, we have to emulate some of the behavior of fold here.
2112 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2113 // because it can constant fold things away. To retain compatibility with
2114 // GCC code, we see if we can fold the condition to a constant (which we
2115 // should always be able to do in theory). If so, we only require the
2116 // specified arm of the conditional to be a constant. This is a horrible
2117 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002118 Expr::EvalResult EvalResult;
2119 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2120 EvalResult.HasSideEffects) {
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002121 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattner46cfefa2008-10-06 05:42:39 +00002122 // won't be able to either. Use it to emit the diagnostic though.
2123 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002124 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattner46cfefa2008-10-06 05:42:39 +00002125 return Res;
2126 }
2127
2128 // Verify that the side following the condition is also a constant.
2129 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002130 if (EvalResult.Val.getInt() == 0)
Chris Lattner46cfefa2008-10-06 05:42:39 +00002131 std::swap(TrueSide, FalseSide);
2132
2133 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedmanc594b322008-05-20 13:48:25 +00002134 return true;
Chris Lattner46cfefa2008-10-06 05:42:39 +00002135
2136 // Okay, the evaluated side evaluates to a constant, so we accept this.
2137 // Check to see if the other side is obviously not a constant. If so,
2138 // emit a warning that this is a GNU extension.
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002139 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner46cfefa2008-10-06 05:42:39 +00002140 Diag(Init->getExprLoc(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00002141 diag::ext_typecheck_expression_not_constant_but_accepted)
2142 << FalseSide->getSourceRange();
Chris Lattner46cfefa2008-10-06 05:42:39 +00002143 return false;
Eli Friedmanc594b322008-05-20 13:48:25 +00002144 }
2145 }
2146}
2147
2148bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Anders Carlsson9e09f5d2008-12-05 05:09:56 +00002149 Expr::EvalResult Result;
2150
Nuno Lopes9a979c32008-07-07 16:46:50 +00002151 Init = Init->IgnoreParens();
2152
Anders Carlsson9e09f5d2008-12-05 05:09:56 +00002153 if (Init->Evaluate(Result, Context) && !Result.HasSideEffects)
2154 return false;
2155
Eli Friedmanc594b322008-05-20 13:48:25 +00002156 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2157 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2158 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2159
Nuno Lopes9a979c32008-07-07 16:46:50 +00002160 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2161 return CheckForConstantInitializer(e->getInitializer(), DclT);
2162
Eli Friedmanc594b322008-05-20 13:48:25 +00002163 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2164 unsigned numInits = Exp->getNumInits();
2165 for (unsigned i = 0; i < numInits; i++) {
2166 // FIXME: Need to get the type of the declaration for C++,
2167 // because it could be a reference?
2168 if (CheckForConstantInitializer(Exp->getInit(i),
2169 Exp->getInit(i)->getType()))
2170 return true;
2171 }
2172 return false;
2173 }
2174
Anders Carlsson9e09f5d2008-12-05 05:09:56 +00002175 // FIXME: We can probably remove some of this code below, now that
2176 // Expr::Evaluate is doing the heavy lifting for scalars.
2177
Eli Friedmanc594b322008-05-20 13:48:25 +00002178 if (Init->isNullPointerConstant(Context))
2179 return false;
2180 if (Init->getType()->isArithmeticType()) {
Chris Lattnerb77792e2008-07-26 22:17:49 +00002181 QualType InitTy = Context.getCanonicalType(Init->getType())
2182 .getUnqualifiedType();
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00002183 if (InitTy == Context.BoolTy) {
2184 // Special handling for pointers implicitly cast to bool;
2185 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2186 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2187 Expr* SubE = ICE->getSubExpr();
2188 if (SubE->getType()->isPointerType() ||
2189 SubE->getType()->isArrayType() ||
2190 SubE->getType()->isFunctionType()) {
2191 return CheckAddressConstantExpression(Init);
2192 }
2193 }
2194 } else if (InitTy->isIntegralType()) {
2195 Expr* SubE = 0;
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002196 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00002197 SubE = CE->getSubExpr();
2198 // Special check for pointer cast to int; we allow as an extension
2199 // an address constant cast to an integer if the integer
2200 // is of an appropriate width (this sort of code is apparently used
2201 // in some places).
2202 // FIXME: Add pedwarn?
2203 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2204 if (SubE && (SubE->getType()->isPointerType() ||
2205 SubE->getType()->isArrayType() ||
2206 SubE->getType()->isFunctionType())) {
2207 unsigned IntWidth = Context.getTypeSize(Init->getType());
2208 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2209 if (IntWidth >= PointerWidth)
2210 return CheckAddressConstantExpression(Init);
2211 }
Eli Friedmanc594b322008-05-20 13:48:25 +00002212 }
2213
2214 return CheckArithmeticConstantExpression(Init);
2215 }
2216
2217 if (Init->getType()->isPointerType())
2218 return CheckAddressConstantExpression(Init);
2219
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00002220 // An array type at the top level that isn't an init-list must
2221 // be a string literal
Eli Friedmanc594b322008-05-20 13:48:25 +00002222 if (Init->getType()->isArrayType())
2223 return false;
2224
Nuno Lopes73419bf2008-09-01 18:42:41 +00002225 if (Init->getType()->isFunctionType())
2226 return false;
2227
Steve Naroff8af6a452008-10-02 17:12:56 +00002228 // Allow block exprs at top level.
2229 if (Init->getType()->isBlockPointerType())
2230 return false;
Nuno Lopes6ed2ef82009-01-15 16:44:45 +00002231
2232 // GCC cast to union extension
2233 // note: the validity of the cast expr is checked by CheckCastTypes()
2234 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2235 QualType T = C->getType();
2236 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2237 }
2238
Steve Naroff6594a702008-10-27 11:34:16 +00002239 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002240 return true;
Steve Naroffd0091aa2008-01-10 22:15:12 +00002241}
2242
Sebastian Redl798d1192008-12-13 16:23:55 +00002243void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002244 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2245}
2246
2247/// AddInitializerToDecl - Adds the initializer Init to the
2248/// declaration dcl. If DirectInit is true, this is C++ direct
2249/// initialization rather than copy initialization.
2250void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff410e3e22007-09-12 20:13:48 +00002251 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redl798d1192008-12-13 16:23:55 +00002252 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattner9a11b9a2007-10-19 20:10:30 +00002253 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +00002254
Chris Lattner9a11b9a2007-10-19 20:10:30 +00002255 // If there is no declaration, there was an error parsing it. Just ignore
2256 // the initializer.
2257 if (RealDecl == 0) {
2258 delete Init;
2259 return;
2260 }
Steve Naroffbb204692007-09-12 14:07:44 +00002261
Steve Naroff410e3e22007-09-12 20:13:48 +00002262 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2263 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +00002264 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
2265 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +00002266 RealDecl->setInvalidDecl();
2267 return;
2268 }
Steve Naroffbb204692007-09-12 14:07:44 +00002269 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +00002270 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +00002271 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff248a7532008-04-15 22:42:06 +00002272 if (VDecl->isBlockVarDecl()) {
2273 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroffbb204692007-09-12 14:07:44 +00002274 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +00002275 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff248a7532008-04-15 22:42:06 +00002276 VDecl->setInvalidDecl();
2277 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002278 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002279 VDecl->getDeclName(), DirectInit))
Steve Naroff248a7532008-04-15 22:42:06 +00002280 VDecl->setInvalidDecl();
Anders Carlssonc5eb7312008-08-22 05:00:02 +00002281
2282 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2283 if (!getLangOptions().CPlusPlus) {
2284 if (SC == VarDecl::Static) // C99 6.7.8p4.
2285 CheckForConstantInitializer(Init, DclT);
2286 }
Steve Naroffbb204692007-09-12 14:07:44 +00002287 }
Steve Naroff248a7532008-04-15 22:42:06 +00002288 } else if (VDecl->isFileVarDecl()) {
2289 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +00002290 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff248a7532008-04-15 22:42:06 +00002291 if (!VDecl->isInvalidDecl())
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002292 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002293 VDecl->getDeclName(), DirectInit))
Steve Naroff248a7532008-04-15 22:42:06 +00002294 VDecl->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +00002295
Anders Carlssonc5eb7312008-08-22 05:00:02 +00002296 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2297 if (!getLangOptions().CPlusPlus) {
2298 // C99 6.7.8p4. All file scoped initializers need to be constant.
2299 CheckForConstantInitializer(Init, DclT);
2300 }
Steve Naroffbb204692007-09-12 14:07:44 +00002301 }
2302 // If the type changed, it means we had an incomplete type that was
2303 // completed by the initializer. For example:
2304 // int ary[] = { 1, 3, 5 };
2305 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +00002306 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +00002307 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +00002308 Init->setType(DclT);
2309 }
Steve Naroffbb204692007-09-12 14:07:44 +00002310
2311 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +00002312 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +00002313 return;
2314}
2315
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002316void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2317 Decl *RealDecl = static_cast<Decl *>(dcl);
2318
Argyrios Kyrtzidis48c2e902008-11-07 13:01:22 +00002319 // If there is no declaration, there was an error parsing it. Just ignore it.
2320 if (RealDecl == 0)
2321 return;
2322
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002323 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2324 QualType Type = Var->getType();
2325 // C++ [dcl.init.ref]p3:
2326 // The initializer can be omitted for a reference only in a
2327 // parameter declaration (8.3.5), in the declaration of a
2328 // function return type, in the declaration of a class member
2329 // within its class declaration (9.2), and where the extern
2330 // specifier is explicitly used.
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002331 if (Type->isReferenceType() &&
2332 Var->getStorageClass() != VarDecl::Extern &&
2333 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00002334 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002335 << Var->getDeclName()
2336 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor18fe5682008-11-03 20:45:27 +00002337 Var->setInvalidDecl();
2338 return;
2339 }
2340
2341 // C++ [dcl.init]p9:
2342 //
2343 // If no initializer is specified for an object, and the object
2344 // is of (possibly cv-qualified) non-POD class type (or array
2345 // thereof), the object shall be default-initialized; if the
2346 // object is of const-qualified type, the underlying class type
2347 // shall have a user-declared default constructor.
2348 if (getLangOptions().CPlusPlus) {
2349 QualType InitType = Type;
2350 if (const ArrayType *Array = Context.getAsArrayType(Type))
2351 InitType = Array->getElementType();
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002352 if (Var->getStorageClass() != VarDecl::Extern &&
2353 Var->getStorageClass() != VarDecl::PrivateExtern &&
2354 InitType->isRecordType()) {
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002355 const CXXConstructorDecl *Constructor
2356 = PerformInitializationByConstructor(InitType, 0, 0,
2357 Var->getLocation(),
2358 SourceRange(Var->getLocation(),
2359 Var->getLocation()),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002360 Var->getDeclName(),
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002361 IK_Default);
Douglas Gregor18fe5682008-11-03 20:45:27 +00002362 if (!Constructor)
2363 Var->setInvalidDecl();
2364 }
2365 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002366
Douglas Gregor818ce482008-10-29 13:50:18 +00002367#if 0
2368 // FIXME: Temporarily disabled because we are not properly parsing
2369 // linkage specifications on declarations, e.g.,
2370 //
2371 // extern "C" const CGPoint CGPointerZero;
2372 //
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002373 // C++ [dcl.init]p9:
2374 //
2375 // If no initializer is specified for an object, and the
2376 // object is of (possibly cv-qualified) non-POD class type (or
2377 // array thereof), the object shall be default-initialized; if
2378 // the object is of const-qualified type, the underlying class
2379 // type shall have a user-declared default
2380 // constructor. Otherwise, if no initializer is specified for
2381 // an object, the object and its subobjects, if any, have an
2382 // indeterminate initial value; if the object or any of its
2383 // subobjects are of const-qualified type, the program is
2384 // ill-formed.
2385 //
2386 // This isn't technically an error in C, so we don't diagnose it.
2387 //
2388 // FIXME: Actually perform the POD/user-defined default
2389 // constructor check.
2390 if (getLangOptions().CPlusPlus &&
Douglas Gregor818ce482008-10-29 13:50:18 +00002391 Context.getCanonicalType(Type).isConstQualified() &&
2392 Var->getStorageClass() != VarDecl::Extern)
Chris Lattnerf3a41af2008-11-20 06:38:18 +00002393 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2394 << Var->getName()
2395 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor818ce482008-10-29 13:50:18 +00002396#endif
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002397 }
2398}
2399
Reid Spencer5f016e22007-07-11 17:01:13 +00002400/// The declarators are chained together backwards, reverse the list.
2401Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2402 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +00002403 Decl *GroupDecl = static_cast<Decl*>(group);
2404 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +00002405 return 0;
Steve Naroff94745042007-09-13 23:52:58 +00002406
2407 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
2408 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +00002409 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +00002410 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +00002411 else { // reverse the list.
2412 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +00002413 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +00002414 Group->setNextDeclarator(NewGroup);
2415 NewGroup = Group;
2416 Group = Next;
2417 }
2418 }
2419 // Perform semantic analysis that depends on having fully processed both
2420 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +00002421 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +00002422 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2423 if (!IDecl)
2424 continue;
Steve Naroffbb204692007-09-12 14:07:44 +00002425 QualType T = IDecl->getType();
2426
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002427 if (T->isVariableArrayType()) {
Anders Carlssonfcdbb932008-12-20 21:51:53 +00002428 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlsson7fd1df22008-12-07 00:49:48 +00002429
2430 // FIXME: This won't give the correct result for
2431 // int a[10][n];
2432 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002433 if (IDecl->isFileVarDecl()) {
Anders Carlsson7fd1df22008-12-07 00:49:48 +00002434 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2435 SizeRange;
2436
Eli Friedmanc5773c42008-02-15 18:16:39 +00002437 IDecl->setInvalidDecl();
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002438 } else {
2439 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2440 // static storage duration, it shall not have a variable length array.
2441 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlsson7fd1df22008-12-07 00:49:48 +00002442 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2443 << SizeRange;
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002444 IDecl->setInvalidDecl();
2445 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlsson7fd1df22008-12-07 00:49:48 +00002446 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2447 << SizeRange;
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002448 IDecl->setInvalidDecl();
2449 }
2450 }
2451 } else if (T->isVariablyModifiedType()) {
2452 if (IDecl->isFileVarDecl()) {
2453 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2454 IDecl->setInvalidDecl();
2455 } else {
2456 if (IDecl->getStorageClass() == VarDecl::Extern) {
2457 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2458 IDecl->setInvalidDecl();
2459 }
Steve Naroffbb204692007-09-12 14:07:44 +00002460 }
2461 }
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002462
Steve Naroffbb204692007-09-12 14:07:44 +00002463 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2464 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff248a7532008-04-15 22:42:06 +00002465 if (IDecl->isBlockVarDecl() &&
2466 IDecl->getStorageClass() != VarDecl::Extern) {
Chris Lattnerfd89bc82008-04-02 01:05:10 +00002467 if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002468 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type)<<T;
Steve Naroffbb204692007-09-12 14:07:44 +00002469 IDecl->setInvalidDecl();
2470 }
2471 }
2472 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2473 // object that has file scope without an initializer, and without a
2474 // storage-class specifier or with the storage-class specifier "static",
2475 // constitutes a tentative definition. Note: A tentative definition with
2476 // external linkage is valid (C99 6.2.2p5).
Steve Naroffff9eb1f2008-08-08 17:50:35 +00002477 if (isTentativeDefinition(IDecl)) {
Eli Friedman9db13972008-02-15 12:53:51 +00002478 if (T->isIncompleteArrayType()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00002479 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2480 // array to be completed. Don't issue a diagnostic.
Chris Lattnerfd89bc82008-04-02 01:05:10 +00002481 } else if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00002482 // C99 6.9.2p3: If the declaration of an identifier for an object is
2483 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2484 // declared type shall not be an incomplete type.
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002485 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type)<<T;
Steve Naroffbb204692007-09-12 14:07:44 +00002486 IDecl->setInvalidDecl();
2487 }
2488 }
Steve Naroffff9eb1f2008-08-08 17:50:35 +00002489 if (IDecl->isFileVarDecl())
2490 CheckForFileScopedRedefinitions(S, IDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00002491 }
2492 return NewGroup;
2493}
Steve Naroffe1223f72007-08-28 03:03:08 +00002494
Chris Lattner04421082008-04-08 04:40:51 +00002495/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2496/// to introduce parameters into function prototype scope.
2497Sema::DeclTy *
2498Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner985abd92008-06-26 06:49:43 +00002499 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor584049d2008-12-15 23:53:10 +00002500
Chris Lattner04421082008-04-08 04:40:51 +00002501 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbar33ad0122008-09-03 21:54:21 +00002502 VarDecl::StorageClass StorageClass = VarDecl::None;
2503 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2504 StorageClass = VarDecl::Register;
2505 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner04421082008-04-08 04:40:51 +00002506 Diag(DS.getStorageClassSpecLoc(),
2507 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00002508 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00002509 }
2510 if (DS.isThreadSpecified()) {
2511 Diag(DS.getThreadSpecLoc(),
2512 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00002513 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00002514 }
2515
Douglas Gregor6d6eb572008-05-07 04:49:29 +00002516 // Check that there are no default arguments inside the type of this
2517 // parameter (C++ only).
2518 if (getLangOptions().CPlusPlus)
2519 CheckExtraCXXDefaultArguments(D);
2520
Chris Lattner04421082008-04-08 04:40:51 +00002521 // In this context, we *do not* check D.getInvalidType(). If the declarator
2522 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2523 // though it will not reflect the user specified type.
2524 QualType parmDeclType = GetTypeForDeclarator(D, S);
2525
2526 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2527
Reid Spencer5f016e22007-07-11 17:01:13 +00002528 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2529 // Can this happen for params? We already checked that they don't conflict
2530 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner04421082008-04-08 04:40:51 +00002531 IdentifierInfo *II = D.getIdentifier();
2532 if (Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S)) {
Douglas Gregorf57172b2008-12-08 18:40:42 +00002533 if (PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00002534 // Maybe we will complain about the shadowed template parameter.
2535 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2536 // Just pretend that we didn't see the previous declaration.
2537 PrevDecl = 0;
2538 } else if (S->isDeclScope(PrevDecl)) {
Chris Lattner08631c52008-11-23 21:45:46 +00002539 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattner04421082008-04-08 04:40:51 +00002540
2541 // Recover by removing the name
2542 II = 0;
2543 D.SetIdentifier(0, D.getIdentifierLoc());
2544 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002545 }
Steve Naroff6a9f3e32007-08-07 22:44:21 +00002546
2547 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2548 // Doing the promotion here has a win and a loss. The win is the type for
2549 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2550 // code generator). The loss is the orginal type isn't preserved. For example:
2551 //
2552 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2553 // int blockvardecl[5];
2554 // sizeof(parmvardecl); // size == 4
2555 // sizeof(blockvardecl); // size == 20
2556 // }
2557 //
2558 // For expressions, all implicit conversions are captured using the
2559 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2560 //
2561 // FIXME: If a source translation tool needs to see the original type, then
2562 // we need to consider storing both types (in ParmVarDecl)...
2563 //
Chris Lattnere6327742008-04-02 05:18:44 +00002564 if (parmDeclType->isArrayType()) {
Chris Lattner529bd022008-01-02 22:50:48 +00002565 // int x[restrict 4] -> int *restrict
Chris Lattnere6327742008-04-02 05:18:44 +00002566 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattner529bd022008-01-02 22:50:48 +00002567 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +00002568 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor44b43212008-12-11 16:49:14 +00002569
Chris Lattner04421082008-04-08 04:40:51 +00002570 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2571 D.getIdentifierLoc(), II,
Daniel Dunbar33ad0122008-09-03 21:54:21 +00002572 parmDeclType, StorageClass,
Chris Lattner04421082008-04-08 04:40:51 +00002573 0, 0);
Anders Carlssonf78915f2008-02-15 07:04:12 +00002574
Chris Lattner04421082008-04-08 04:40:51 +00002575 if (D.getInvalidType())
Steve Naroff53a32342007-08-28 18:45:29 +00002576 New->setInvalidDecl();
Douglas Gregor44b43212008-12-11 16:49:14 +00002577
Douglas Gregor584049d2008-12-15 23:53:10 +00002578 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2579 if (D.getCXXScopeSpec().isSet()) {
2580 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2581 << D.getCXXScopeSpec().getRange();
2582 New->setInvalidDecl();
2583 }
2584
Douglas Gregor44b43212008-12-11 16:49:14 +00002585 // Add the parameter declaration into this scope.
2586 S->AddDecl(New);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00002587 if (II)
Douglas Gregor44b43212008-12-11 16:49:14 +00002588 IdResolver.AddDecl(New);
Nate Begemanb7894b52008-02-17 21:20:31 +00002589
Chris Lattner3ff30c82008-06-29 00:02:00 +00002590 ProcessDeclAttributes(New, D);
Reid Spencer5f016e22007-07-11 17:01:13 +00002591 return New;
Chris Lattner04421082008-04-08 04:40:51 +00002592
Reid Spencer5f016e22007-07-11 17:01:13 +00002593}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00002594
Chris Lattnerb652cea2007-10-09 17:14:05 +00002595Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00002596 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Reid Spencer5f016e22007-07-11 17:01:13 +00002597 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2598 "Not a function declarator!");
2599 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner04421082008-04-08 04:40:51 +00002600
Reid Spencer5f016e22007-07-11 17:01:13 +00002601 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2602 // for a K&R function.
2603 if (!FTI.hasPrototype) {
2604 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner04421082008-04-08 04:40:51 +00002605 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002606 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2607 << FTI.ArgInfo[i].Ident;
Reid Spencer5f016e22007-07-11 17:01:13 +00002608 // Implicitly declare the argument as type 'int' for lack of a better
2609 // type.
Chris Lattner04421082008-04-08 04:40:51 +00002610 DeclSpec DS;
2611 const char* PrevSpec; // unused
2612 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2613 PrevSpec);
2614 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2615 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
2616 FTI.ArgInfo[i].Param = ActOnParamDeclarator(FnBodyScope, ParamD);
Reid Spencer5f016e22007-07-11 17:01:13 +00002617 }
2618 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002619 } else {
Chris Lattner04421082008-04-08 04:40:51 +00002620 // FIXME: Diagnose arguments without names in C.
Reid Spencer5f016e22007-07-11 17:01:13 +00002621 }
2622
Douglas Gregor584049d2008-12-15 23:53:10 +00002623 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00002624
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002625 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregor584049d2008-12-15 23:53:10 +00002626 ActOnDeclarator(ParentScope, D, 0,
2627 /*IsFunctionDefinition=*/true));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002628}
2629
2630Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2631 Decl *decl = static_cast<Decl*>(D);
Chris Lattnere9ba3232008-02-16 01:20:36 +00002632 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregor6fc17ff2008-10-29 15:10:40 +00002633
2634 // See if this is a redefinition.
2635 const FunctionDecl *Definition;
2636 if (FD->getBody(Definition)) {
Chris Lattner08631c52008-11-23 21:45:46 +00002637 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002638 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregor6fc17ff2008-10-29 15:10:40 +00002639 }
2640
Douglas Gregor44b43212008-12-11 16:49:14 +00002641 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikov2f402702008-12-26 00:52:02 +00002642
Chris Lattner04421082008-04-08 04:40:51 +00002643 // Check the validity of our function parameters
2644 CheckParmsForFunctionDef(FD);
2645
2646 // Introduce our parameters into the function scope
2647 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2648 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregora8cc8ce2009-01-09 18:51:29 +00002649 Param->setOwningFunction(FD);
2650
Chris Lattner04421082008-04-08 04:40:51 +00002651 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00002652 if (Param->getIdentifier())
2653 PushOnScopeChains(Param, FnBodyScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00002654 }
Chris Lattner04421082008-04-08 04:40:51 +00002655
Anton Korobeynikov2f402702008-12-26 00:52:02 +00002656 // Checking attributes of current function definition
2657 // dllimport attribute.
2658 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2659 // dllimport attribute cannot be applied to definition.
2660 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2661 Diag(FD->getLocation(),
2662 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2663 << "dllimport";
2664 FD->setInvalidDecl();
2665 return FD;
2666 } else {
2667 // If a symbol previously declared dllimport is later defined, the
2668 // attribute is ignored in subsequent references, and a warning is
2669 // emitted.
2670 Diag(FD->getLocation(),
2671 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2672 << FD->getNameAsCString() << "dllimport";
2673 }
2674 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002675 return FD;
2676}
2677
Sebastian Redl798d1192008-12-13 16:23:55 +00002678Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00002679 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redl798d1192008-12-13 16:23:55 +00002680 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff394f3f42008-07-25 17:57:26 +00002681 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redl798d1192008-12-13 16:23:55 +00002682 FD->setBody(Body);
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00002683 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff394f3f42008-07-25 17:57:26 +00002684 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00002685 MD->setBody((Stmt*)Body);
Steve Naroff394f3f42008-07-25 17:57:26 +00002686 } else
2687 return 0;
Chris Lattnerb048c982008-04-06 04:47:34 +00002688 PopDeclContext();
Reid Spencer5f016e22007-07-11 17:01:13 +00002689 // Verify and clean out per-function state.
2690
2691 // Check goto/label use.
2692 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2693 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
2694 // Verify that we have no forward references left. If so, there was a goto
2695 // or address of a label taken, but no definition of it. Label fwd
2696 // definitions are indicated with a null substmt.
2697 if (I->second->getSubStmt() == 0) {
2698 LabelStmt *L = I->second;
2699 // Emit error.
Chris Lattnerf3a41af2008-11-20 06:38:18 +00002700 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Reid Spencer5f016e22007-07-11 17:01:13 +00002701
2702 // At this point, we have gotos that use the bogus label. Stitch it into
2703 // the function body so that they aren't leaked and that the AST is well
2704 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00002705 if (Body) {
2706 L->setSubStmt(new NullStmt(L->getIdentLoc()));
Sebastian Redl798d1192008-12-13 16:23:55 +00002707 cast<CompoundStmt>(Body)->push_back(L);
Chris Lattner0cbc2152008-01-25 00:01:10 +00002708 } else {
2709 // The whole function wasn't parsed correctly, just delete this.
2710 delete L;
2711 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002712 }
2713 }
2714 LabelMap.clear();
2715
Steve Naroffd6d054d2007-11-11 23:20:51 +00002716 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00002717}
2718
Reid Spencer5f016e22007-07-11 17:01:13 +00002719/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2720/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +00002721ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2722 IdentifierInfo &II, Scope *S) {
Chris Lattner37d10842008-05-05 21:18:06 +00002723 // Extension in C99. Legal in C90, but warn about it.
2724 if (getLangOptions().C99)
Chris Lattner3c73c412008-11-19 08:23:25 +00002725 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattner37d10842008-05-05 21:18:06 +00002726 else
Chris Lattner3c73c412008-11-19 08:23:25 +00002727 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Reid Spencer5f016e22007-07-11 17:01:13 +00002728
2729 // FIXME: handle stuff like:
2730 // void foo() { extern float X(); }
2731 // void bar() { X(); } <-- implicit decl for X in another scope.
2732
2733 // Set a Declarator for the implicit definition: int foo();
2734 const char *Dummy;
2735 DeclSpec DS;
2736 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
2737 Error = Error; // Silence warning.
2738 assert(!Error && "Error setting up implicit decl!");
2739 Declarator D(DS, Declarator::BlockContext);
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +00002740 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc));
Reid Spencer5f016e22007-07-11 17:01:13 +00002741 D.SetIdentifier(&II, Loc);
2742
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +00002743 // Insert this function into translation-unit scope.
2744
2745 DeclContext *PrevDC = CurContext;
2746 CurContext = Context.getTranslationUnitDecl();
2747
Steve Naroffe2ef8152008-04-04 14:32:09 +00002748 FunctionDecl *FD =
Daniel Dunbar914701e2008-08-05 16:28:08 +00002749 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroffe2ef8152008-04-04 14:32:09 +00002750 FD->setImplicit();
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +00002751
2752 CurContext = PrevDC;
2753
Steve Naroffe2ef8152008-04-04 14:32:09 +00002754 return FD;
Reid Spencer5f016e22007-07-11 17:01:13 +00002755}
2756
2757
Chris Lattner41af0932007-11-14 06:34:38 +00002758TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff94745042007-09-13 23:52:58 +00002759 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002760 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00002761 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00002762
2763 // Scope manipulation handled by caller.
Chris Lattner0ed844b2008-04-04 06:12:32 +00002764 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
2765 D.getIdentifierLoc(),
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00002766 D.getIdentifier(),
Chris Lattnerc63e6602008-03-15 21:32:50 +00002767 T, LastDeclarator);
Steve Naroff5912a352007-08-28 20:14:24 +00002768 if (D.getInvalidType())
2769 NewTD->setInvalidDecl();
2770 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00002771}
2772
Steve Naroff08d92e42007-09-15 18:49:24 +00002773/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00002774/// former case, Name will be non-null. In the later case, Name will be null.
2775/// TagType indicates what kind of tag this is. TK indicates whether this is a
2776/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00002777Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00002778 SourceLocation KWLoc, const CXXScopeSpec &SS,
2779 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +00002780 AttributeList *Attr,
2781 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002782 // If this is not a definition, it must have a name.
Reid Spencer5f016e22007-07-11 17:01:13 +00002783 assert((Name != 0 || TK == TK_Definition) &&
2784 "Nameless record must be a definition!");
2785
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002786 TagDecl::TagKind Kind;
Reid Spencer5f016e22007-07-11 17:01:13 +00002787 switch (TagType) {
2788 default: assert(0 && "Unknown tag type!");
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002789 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
2790 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
2791 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
2792 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002793 }
2794
Douglas Gregor4920f1f2009-01-12 22:49:06 +00002795 DeclContext *SearchDC = CurContext;
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +00002796 DeclContext *DC = CurContext;
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002797 DeclContext *LexicalContext = CurContext;
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +00002798 ScopedDecl *PrevDecl = 0;
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00002799
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00002800 if (Name && SS.isNotEmpty()) {
2801 // We have a nested-name tag ('struct foo::bar').
2802
2803 // Check for invalid 'foo::'.
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +00002804 if (SS.isInvalid()) {
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00002805 Name = 0;
2806 goto CreateNewDecl;
2807 }
2808
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +00002809 DC = static_cast<DeclContext*>(SS.getScopeRep());
2810 // Look-up name inside 'foo::'.
Douglas Gregoreb11cd02009-01-14 22:20:51 +00002811 PrevDecl = dyn_cast_or_null<TagDecl>(LookupDecl(Name, Decl::IDNS_Tag,S,DC)
2812 .getAsDecl());
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00002813
2814 // A tag 'foo::bar' must already exist.
2815 if (PrevDecl == 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002816 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00002817 Name = 0;
2818 goto CreateNewDecl;
2819 }
2820 } else {
2821 // If this is a named struct, check to see if there was a previous forward
2822 // declaration or definition.
2823 // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
Douglas Gregoreb11cd02009-01-14 22:20:51 +00002824 PrevDecl = dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag,S)
2825 .getAsDecl());
Douglas Gregor72de6672009-01-08 20:45:30 +00002826
2827 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
2828 // FIXME: This makes sure that we ignore the contexts associated
2829 // with C structs, unions, and enums when looking for a matching
2830 // tag declaration or definition. See the similar lookup tweak
2831 // in Sema::LookupDecl; is there a better way to deal with this?
Douglas Gregor4920f1f2009-01-12 22:49:06 +00002832 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
2833 SearchDC = SearchDC->getParent();
Douglas Gregor72de6672009-01-08 20:45:30 +00002834 }
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00002835 }
2836
Douglas Gregorf57172b2008-12-08 18:40:42 +00002837 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00002838 // Maybe we will complain about the shadowed template parameter.
2839 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
2840 // Just pretend that we didn't see the previous declaration.
2841 PrevDecl = 0;
2842 }
2843
Ted Kremenek7e8cc572008-09-02 21:26:19 +00002844 if (PrevDecl) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002845 assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
2846 "unexpected Decl type");
2847 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner14943b92008-07-03 03:30:58 +00002848 // If this is a use of a previous tag, or if the tag is already declared
2849 // in the same scope (so that the definition/declaration completes or
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002850 // rementions the tag), reuse the decl.
Douglas Gregor4920f1f2009-01-12 22:49:06 +00002851 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner14943b92008-07-03 03:30:58 +00002852 // Make sure that this wasn't declared as an enum and now used as a
2853 // struct or something similar.
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002854 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002855 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner5f4a6822008-11-23 23:12:31 +00002856 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner14943b92008-07-03 03:30:58 +00002857 // Recover by making this an anonymous redefinition.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002858 Name = 0;
Chris Lattner14943b92008-07-03 03:30:58 +00002859 PrevDecl = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002860 } else {
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002861 // If this is a use, just return the declaration we found.
Chris Lattner14943b92008-07-03 03:30:58 +00002862
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002863 // FIXME: In the future, return a variant or some other clue
2864 // for the consumer of this Decl to know it doesn't own it.
2865 // For our current ASTs this shouldn't be a problem, but will
2866 // need to be changed with DeclGroups.
2867 if (TK == TK_Reference)
Chris Lattner14943b92008-07-03 03:30:58 +00002868 return PrevDecl;
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002869
2870 // Diagnose attempts to redefine a tag.
2871 if (TK == TK_Definition) {
2872 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
2873 Diag(NameLoc, diag::err_redefinition) << Name;
2874 Diag(Def->getLocation(), diag::note_previous_definition);
2875 // If this is a redefinition, recover by making this struct be
2876 // anonymous, which will make any later references get the previous
2877 // definition.
2878 Name = 0;
2879 PrevDecl = 0;
2880 }
2881 // Okay, this is definition of a previously declared or referenced
2882 // tag PrevDecl. We're going to create a new Decl for it.
2883 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002884 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002885 // If we get here we have (another) forward declaration or we
2886 // have a definition. Just create a new decl.
2887 } else {
2888 // If we get here, this is a definition of a new tag type in a nested
2889 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
2890 // new decl/type. We set PrevDecl to NULL so that the entities
2891 // have distinct types.
2892 PrevDecl = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00002893 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002894 // If we get here, we're going to create a new Decl. If PrevDecl
2895 // is non-NULL, it's a definition of the tag declared by
2896 // PrevDecl. If it's NULL, we have a new definition.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002897 } else {
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +00002898 // PrevDecl is a namespace.
Douglas Gregor4920f1f2009-01-12 22:49:06 +00002899 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremeneka89d1972008-09-03 18:03:35 +00002900 // The tag name clashes with a namespace name, issue an error and
2901 // recover by making this tag be anonymous.
Chris Lattner3c73c412008-11-19 08:23:25 +00002902 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner5f4a6822008-11-23 23:12:31 +00002903 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +00002904 Name = 0;
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002905 PrevDecl = 0;
2906 } else {
2907 // The existing declaration isn't relevant to us; we're in a
2908 // new scope, so clear out the previous declaration.
2909 PrevDecl = 0;
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +00002910 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002911 }
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002912 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
2913 (Kind != TagDecl::TK_enum)) {
2914 // C++ [basic.scope.pdecl]p5:
2915 // -- for an elaborated-type-specifier of the form
2916 //
2917 // class-key identifier
2918 //
2919 // if the elaborated-type-specifier is used in the
2920 // decl-specifier-seq or parameter-declaration-clause of a
2921 // function defined in namespace scope, the identifier is
2922 // declared as a class-name in the namespace that contains
2923 // the declaration; otherwise, except as a friend
2924 // declaration, the identifier is declared in the smallest
2925 // non-class, non-function-prototype scope that contains the
2926 // declaration.
2927 //
2928 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
2929 // C structs and unions.
2930
2931 // Find the context where we'll be declaring the tag.
Douglas Gregor4920f1f2009-01-12 22:49:06 +00002932 // FIXME: We would like to maintain the current DeclContext as the
2933 // lexical context,
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002934 while (DC->isRecord())
2935 DC = DC->getParent();
2936 LexicalContext = DC;
2937
2938 // Find the scope where we'll be declaring the tag.
2939 while (S->isClassScope() ||
2940 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00002941 ((S->getFlags() & Scope::DeclScope) == 0) ||
2942 (S->getEntity() &&
2943 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002944 S = S->getParent();
Reid Spencer5f016e22007-07-11 17:01:13 +00002945 }
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00002946
Chris Lattnercc98eac2008-12-17 07:13:27 +00002947CreateNewDecl:
Reid Spencer5f016e22007-07-11 17:01:13 +00002948
2949 // If there is an identifier, use the location of the identifier as the
2950 // location of the decl, otherwise use the location of the struct/union
2951 // keyword.
2952 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
2953
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002954 // Otherwise, create a new declaration. If there is a previous
2955 // declaration of the same entity, the two will be linked via
2956 // PrevDecl.
Reid Spencer5f016e22007-07-11 17:01:13 +00002957 TagDecl *New;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002958
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002959 if (Kind == TagDecl::TK_enum) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002960 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2961 // enum X { A, B, C } D; D should chain to X.
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002962 New = EnumDecl::Create(Context, DC, Loc, Name,
2963 cast_or_null<EnumDecl>(PrevDecl));
Reid Spencer5f016e22007-07-11 17:01:13 +00002964 // If this is an undefined enum, warn.
2965 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002966 } else {
2967 // struct/union/class
2968
Reid Spencer5f016e22007-07-11 17:01:13 +00002969 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2970 // struct X { int A; } D; D should chain to X.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002971 if (getLangOptions().CPlusPlus)
Ted Kremenek2b345eb2008-09-05 17:39:33 +00002972 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002973 New = CXXRecordDecl::Create(Context, Kind, DC, Loc, Name,
2974 cast_or_null<CXXRecordDecl>(PrevDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002975 else
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002976 New = RecordDecl::Create(Context, Kind, DC, Loc, Name,
2977 cast_or_null<RecordDecl>(PrevDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002978 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00002979
2980 if (Kind != TagDecl::TK_enum) {
2981 // Handle #pragma pack: if the #pragma pack stack has non-default
2982 // alignment, make up a packed attribute for this decl. These
2983 // attributes are checked when the ASTContext lays out the
2984 // structure.
2985 //
2986 // It is important for implementing the correct semantics that this
2987 // happen here (in act on tag decl). The #pragma pack stack is
2988 // maintained as a result of parser callbacks which can occur at
2989 // many points during the parsing of a struct declaration (because
2990 // the #pragma tokens are effectively skipped over during the
2991 // parsing of the struct).
2992 if (unsigned Alignment = PackContext.getAlignment())
2993 New->addAttr(new PackedAttr(Alignment * 8));
2994 }
2995
2996 if (Attr)
2997 ProcessDeclAttributeList(New, Attr);
2998
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002999 // If we're declaring or defining
3000 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3001 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3002
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003003 // Set the lexical context. If the tag has a C++ scope specifier, the
3004 // lexical context will be different from the semantic context.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003005 New->setLexicalDeclContext(LexicalContext);
Reid Spencer5f016e22007-07-11 17:01:13 +00003006
3007 // If this has an identifier, add it to the scope stack.
3008 if (Name) {
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00003009 S = getNonFieldDeclScope(S);
Chris Lattner31e05722007-08-26 06:24:45 +00003010
3011 // Add it to the decl chain.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003012 if (LexicalContext != CurContext) {
3013 // FIXME: PushOnScopeChains should not rely on CurContext!
3014 DeclContext *OldContext = CurContext;
3015 CurContext = LexicalContext;
3016 PushOnScopeChains(New, S);
3017 CurContext = OldContext;
3018 } else
3019 PushOnScopeChains(New, S);
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003020 } else {
Douglas Gregor482b77d2009-01-12 23:27:07 +00003021 LexicalContext->addDecl(New);
Reid Spencer5f016e22007-07-11 17:01:13 +00003022 }
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +00003023
Reid Spencer5f016e22007-07-11 17:01:13 +00003024 return New;
3025}
3026
Douglas Gregor72de6672009-01-08 20:45:30 +00003027void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
3028 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3029
3030 // Enter the tag context.
3031 PushDeclContext(S, Tag);
3032
3033 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3034 FieldCollector->StartClass();
3035
3036 if (Record->getIdentifier()) {
3037 // C++ [class]p2:
3038 // [...] The class-name is also inserted into the scope of the
3039 // class itself; this is known as the injected-class-name. For
3040 // purposes of access checking, the injected-class-name is treated
3041 // as if it were a public member name.
3042 RecordDecl *InjectedClassName
3043 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3044 CurContext, Record->getLocation(),
3045 Record->getIdentifier(), Record);
3046 InjectedClassName->setImplicit();
3047 PushOnScopeChains(InjectedClassName, S);
3048 }
3049 }
3050}
3051
3052void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
3053 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3054
3055 if (isa<CXXRecordDecl>(Tag))
3056 FieldCollector->FinishClass();
3057
3058 // Exit this scope of this tag's definition.
3059 PopDeclContext();
3060
3061 // Notify the consumer that we've defined a tag.
3062 Consumer.HandleTagDeclDefinition(Tag);
3063}
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003064
Chris Lattner1d353ba2008-11-12 21:17:48 +00003065/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
3066/// types into constant array types in certain situations which would otherwise
3067/// be errors (for GCC compatibility).
3068static QualType TryToFixInvalidVariablyModifiedType(QualType T,
3069 ASTContext &Context) {
Eli Friedman1b76ada2008-06-03 21:01:11 +00003070 // This method tries to turn a variable array into a constant
3071 // array even when the size isn't an ICE. This is necessary
3072 // for compatibility with code that depends on gcc's buggy
3073 // constant expression folding, like struct {char x[(int)(char*)2];}
Chris Lattner57d57882008-11-12 19:48:13 +00003074 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
3075 if (!VLATy) return QualType();
3076
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00003077 Expr::EvalResult EvalResult;
Chris Lattner57d57882008-11-12 19:48:13 +00003078 if (!VLATy->getSizeExpr() ||
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00003079 !VLATy->getSizeExpr()->Evaluate(EvalResult, Context))
Chris Lattner57d57882008-11-12 19:48:13 +00003080 return QualType();
3081
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00003082 assert(EvalResult.Val.isInt() && "Size expressions must be integers!");
3083 llvm::APSInt &Res = EvalResult.Val.getInt();
Chris Lattner57d57882008-11-12 19:48:13 +00003084 if (Res > llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
3085 return Context.getConstantArrayType(VLATy->getElementType(),
3086 Res, ArrayType::Normal, 0);
Eli Friedman1b76ada2008-06-03 21:01:11 +00003087 return QualType();
3088}
3089
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003090bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattnercd087072008-12-12 04:56:04 +00003091 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003092 // FIXME: 6.7.2.1p4 - verify the field type.
3093
3094 llvm::APSInt Value;
3095 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3096 return true;
3097
Chris Lattnercd087072008-12-12 04:56:04 +00003098 // Zero-width bitfield is ok for anonymous field.
3099 if (Value == 0 && FieldName)
3100 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3101
3102 if (Value.isNegative())
3103 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003104
3105 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3106 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattnercd087072008-12-12 04:56:04 +00003107 if (TypeSize && Value.getZExtValue() > TypeSize)
3108 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3109 << FieldName << (unsigned)TypeSize;
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003110
3111 return false;
3112}
3113
Steve Naroff08d92e42007-09-15 18:49:24 +00003114/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00003115/// to create a FieldDecl object for it.
Douglas Gregor44b43212008-12-11 16:49:14 +00003116Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Reid Spencer5f016e22007-07-11 17:01:13 +00003117 SourceLocation DeclStart,
3118 Declarator &D, ExprTy *BitfieldWidth) {
3119 IdentifierInfo *II = D.getIdentifier();
3120 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00003121 SourceLocation Loc = DeclStart;
Douglas Gregor44b43212008-12-11 16:49:14 +00003122 RecordDecl *Record = (RecordDecl *)TagD;
Reid Spencer5f016e22007-07-11 17:01:13 +00003123 if (II) Loc = D.getIdentifierLoc();
3124
3125 // FIXME: Unnamed fields can be handled in various different ways, for
3126 // example, unnamed unions inject all members into the struct namespace!
Reid Spencer5f016e22007-07-11 17:01:13 +00003127
Reid Spencer5f016e22007-07-11 17:01:13 +00003128 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00003129 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3130 bool InvalidDecl = false;
Sebastian Redl64b45f72009-01-05 20:52:13 +00003131
Reid Spencer5f016e22007-07-11 17:01:13 +00003132 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3133 // than a variably modified type.
Eli Friedman9db13972008-02-15 12:53:51 +00003134 if (T->isVariablyModifiedType()) {
Chris Lattner1d353ba2008-11-12 21:17:48 +00003135 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context);
Eli Friedman1b76ada2008-06-03 21:01:11 +00003136 if (!FixedTy.isNull()) {
Chris Lattner23cd0d92008-11-13 18:49:38 +00003137 Diag(Loc, diag::warn_illegal_constant_array_size);
Eli Friedman1b76ada2008-06-03 21:01:11 +00003138 T = FixedTy;
3139 } else {
Chris Lattner23cd0d92008-11-13 18:49:38 +00003140 Diag(Loc, diag::err_typecheck_field_variable_size);
Chris Lattner3ab55432008-11-12 19:45:49 +00003141 T = Context.IntTy;
Eli Friedman1b76ada2008-06-03 21:01:11 +00003142 InvalidDecl = true;
3143 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003144 }
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003145
3146 if (BitWidth) {
3147 if (VerifyBitField(Loc, II, T, BitWidth))
3148 InvalidDecl = true;
3149 } else {
3150 // Not a bitfield.
3151
3152 // validate II.
3153
3154 }
3155
Reid Spencer5f016e22007-07-11 17:01:13 +00003156 // FIXME: Chain fielddecls together.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00003157 FieldDecl *NewFD;
3158
Douglas Gregor44b43212008-12-11 16:49:14 +00003159 NewFD = FieldDecl::Create(Context, Record,
3160 Loc, II, T, BitWidth,
3161 D.getDeclSpec().getStorageClassSpec() ==
3162 DeclSpec::SCS_mutable,
3163 /*PrevDecl=*/0);
3164
Douglas Gregor72de6672009-01-08 20:45:30 +00003165 if (II) {
3166 Decl *PrevDecl
3167 = LookupDecl(II, Decl::IDNS_Member, S, 0, false, false, false);
3168 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3169 && !isa<TagDecl>(PrevDecl)) {
3170 Diag(Loc, diag::err_duplicate_member) << II;
3171 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3172 NewFD->setInvalidDecl();
3173 Record->setInvalidDecl();
3174 }
3175 }
3176
Sebastian Redl64b45f72009-01-05 20:52:13 +00003177 if (getLangOptions().CPlusPlus) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00003178 CheckExtraCXXDefaultArguments(D);
Sebastian Redl64b45f72009-01-05 20:52:13 +00003179 if (!T->isPODType())
3180 cast<CXXRecordDecl>(Record)->setPOD(false);
3181 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00003182
Chris Lattner3ff30c82008-06-29 00:02:00 +00003183 ProcessDeclAttributes(NewFD, D);
Anders Carlssonad148062008-02-16 00:29:18 +00003184
Steve Naroff5912a352007-08-28 20:14:24 +00003185 if (D.getInvalidType() || InvalidDecl)
3186 NewFD->setInvalidDecl();
Douglas Gregor44b43212008-12-11 16:49:14 +00003187
Douglas Gregor72de6672009-01-08 20:45:30 +00003188 if (II) {
Douglas Gregor44b43212008-12-11 16:49:14 +00003189 PushOnScopeChains(NewFD, S);
Douglas Gregor72de6672009-01-08 20:45:30 +00003190 } else
Douglas Gregor482b77d2009-01-12 23:27:07 +00003191 Record->addDecl(NewFD);
Douglas Gregor44b43212008-12-11 16:49:14 +00003192
Steve Naroff5912a352007-08-28 20:14:24 +00003193 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00003194}
3195
Fariborz Jahanian89204a12007-10-01 16:53:59 +00003196/// TranslateIvarVisibility - Translate visibility from a token ID to an
3197/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003198static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00003199TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00003200 switch (ivarVisibility) {
Chris Lattner33d34a62008-10-12 00:28:42 +00003201 default: assert(0 && "Unknown visitibility kind");
3202 case tok::objc_private: return ObjCIvarDecl::Private;
3203 case tok::objc_public: return ObjCIvarDecl::Public;
3204 case tok::objc_protected: return ObjCIvarDecl::Protected;
3205 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Narofff13271f2007-09-14 23:09:53 +00003206 }
3207}
3208
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00003209/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3210/// in order to create an IvarDecl object for it.
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003211Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00003212 SourceLocation DeclStart,
3213 Declarator &D, ExprTy *BitfieldWidth,
3214 tok::ObjCKeywordKind Visibility) {
Douglas Gregor72de6672009-01-08 20:45:30 +00003215
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003216 IdentifierInfo *II = D.getIdentifier();
3217 Expr *BitWidth = (Expr*)BitfieldWidth;
3218 SourceLocation Loc = DeclStart;
3219 if (II) Loc = D.getIdentifierLoc();
3220
3221 // FIXME: Unnamed fields can be handled in various different ways, for
3222 // example, unnamed unions inject all members into the struct namespace!
3223
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003224 QualType T = GetTypeForDeclarator(D, S);
3225 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3226 bool InvalidDecl = false;
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003227
3228 if (BitWidth) {
3229 // TODO: Validate.
3230 //printf("WARNING: BITFIELDS IGNORED!\n");
3231
3232 // 6.7.2.1p3
3233 // 6.7.2.1p4
3234
3235 } else {
3236 // Not a bitfield.
3237
3238 // validate II.
3239
3240 }
3241
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003242 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3243 // than a variably modified type.
3244 if (T->isVariablyModifiedType()) {
Anders Carlsson96e05bc2008-12-07 00:20:55 +00003245 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003246 InvalidDecl = true;
3247 }
3248
Ted Kremenekb8db21d2008-07-23 18:04:17 +00003249 // Get the visibility (access control) for this ivar.
3250 ObjCIvarDecl::AccessControl ac =
3251 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3252 : ObjCIvarDecl::None;
3253
3254 // Construct the decl.
3255 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroff8f3b2652008-07-16 18:22:22 +00003256 (Expr *)BitfieldWidth);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003257
Douglas Gregor72de6672009-01-08 20:45:30 +00003258 if (II) {
3259 Decl *PrevDecl
3260 = LookupDecl(II, Decl::IDNS_Member, S, 0, false, false, false);
3261 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3262 && !isa<TagDecl>(PrevDecl)) {
3263 Diag(Loc, diag::err_duplicate_member) << II;
3264 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3265 NewID->setInvalidDecl();
3266 }
3267 }
3268
Ted Kremenekb8db21d2008-07-23 18:04:17 +00003269 // Process attributes attached to the ivar.
Chris Lattner3ff30c82008-06-29 00:02:00 +00003270 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003271
3272 if (D.getInvalidType() || InvalidDecl)
3273 NewID->setInvalidDecl();
Ted Kremenekb8db21d2008-07-23 18:04:17 +00003274
Douglas Gregor72de6672009-01-08 20:45:30 +00003275 if (II) {
3276 // FIXME: When interfaces are DeclContexts, we'll need to add
3277 // these to the interface.
3278 S->AddDecl(NewID);
3279 IdResolver.AddDecl(NewID);
3280 }
3281
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003282 return NewID;
3283}
3284
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00003285void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00003286 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00003287 DeclTy **Fields, unsigned NumFields,
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00003288 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar7d076642008-10-03 17:33:35 +00003289 AttributeList *Attr) {
Steve Naroff74216642007-09-14 22:20:54 +00003290 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3291 assert(EnclosingDecl && "missing record or interface decl");
3292 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
3293
Douglas Gregor72de6672009-01-08 20:45:30 +00003294 if (Record) {
3295 QualType RecordType = Context.getTypeDeclType(Record);
3296 if (RecordType->getAsRecordType()->getDecl()->isDefinition()) {
3297 RecordDecl *Def = RecordType->getAsRecordType()->getDecl();
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003298 // Diagnose code like:
3299 // struct S { struct S {} X; };
3300 // We discover this when we complete the outer S. Reject and ignore the
3301 // outer S.
Douglas Gregor72de6672009-01-08 20:45:30 +00003302 Diag(Def->getLocation(), diag::err_nested_redefinition)
3303 << Def->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00003304 Diag(RecLoc, diag::note_previous_definition);
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003305 Record->setInvalidDecl();
3306 return;
3307 }
Douglas Gregor72de6672009-01-08 20:45:30 +00003308 }
Ted Kremenek4b7c9832008-09-05 17:16:31 +00003309
Reid Spencer5f016e22007-07-11 17:01:13 +00003310 // Verify that all the fields are okay.
3311 unsigned NumNamedMembers = 0;
3312 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003313
Reid Spencer5f016e22007-07-11 17:01:13 +00003314 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroff74216642007-09-14 22:20:54 +00003315 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3316 assert(FD && "missing field decl");
3317
Reid Spencer5f016e22007-07-11 17:01:13 +00003318 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00003319 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003320
Douglas Gregor72de6672009-01-08 20:45:30 +00003321 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003322 // Remember all fields written by the user.
3323 RecFields.push_back(FD);
3324 }
Steve Narofff13271f2007-09-14 23:09:53 +00003325
Reid Spencer5f016e22007-07-11 17:01:13 +00003326 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00003327 if (FDTy->isFunctionType()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003328 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003329 << FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +00003330 FD->setInvalidDecl();
3331 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003332 continue;
3333 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003334 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
3335 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003336 if (!Record) { // Incomplete ivar type is always an error.
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003337 Diag(FD->getLocation(), diag::err_field_incomplete) <<FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +00003338 FD->setInvalidDecl();
3339 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00003340 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003341 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003342 if (i != NumFields-1 || // ... that the last member ...
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003343 !Record->isStruct() || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00003344 !FDTy->isArrayType()) { //... may have incomplete array type.
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003345 Diag(FD->getLocation(), diag::err_field_incomplete) <<FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +00003346 FD->setInvalidDecl();
3347 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003348 continue;
3349 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003350 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003351 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003352 << FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +00003353 FD->setInvalidDecl();
3354 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003355 continue;
3356 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003357 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003358 if (Record)
3359 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003360 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003361 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3362 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00003363 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003364 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3365 // If this is a member of a union, then entire union becomes "flexible".
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003366 if (Record && Record->isUnion()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003367 Record->setHasFlexibleArrayMember(true);
3368 } else {
3369 // If this is a struct/class and this is not the last element, reject
3370 // it. Note that GCC supports variable sized arrays in the middle of
3371 // structures.
3372 if (i != NumFields-1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003373 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003374 << FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +00003375 FD->setInvalidDecl();
3376 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003377 continue;
3378 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003379 // We support flexible arrays at the end of structs in other structs
3380 // as an extension.
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003381 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003382 << FD->getDeclName();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00003383 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003384 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003385 }
3386 }
3387 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00003388 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003389 if (FDTy->isObjCInterfaceType()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003390 Diag(FD->getLocation(), diag::err_statically_allocated_object)
Chris Lattner08631c52008-11-23 21:45:46 +00003391 << FD->getDeclName();
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00003392 FD->setInvalidDecl();
3393 EnclosingDecl->setInvalidDecl();
3394 continue;
3395 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003396 // Keep track of the number of named members.
Douglas Gregor72de6672009-01-08 20:45:30 +00003397 if (FD->getIdentifier())
Reid Spencer5f016e22007-07-11 17:01:13 +00003398 ++NumNamedMembers;
Reid Spencer5f016e22007-07-11 17:01:13 +00003399 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00003400
Reid Spencer5f016e22007-07-11 17:01:13 +00003401 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +00003402 if (Record) {
Douglas Gregor44b43212008-12-11 16:49:14 +00003403 Record->completeDefinition(Context);
Chris Lattnere1e79852008-02-06 00:51:33 +00003404 } else {
Chris Lattnera91d3812008-02-05 22:40:55 +00003405 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian60f8c862008-12-13 20:28:25 +00003406 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattnera91d3812008-02-05 22:40:55 +00003407 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
Fariborz Jahanian3281eff2008-12-16 01:08:35 +00003408 // Must enforce the rule that ivars in the base classes may not be
3409 // duplicates.
Fariborz Jahanian375d37c2008-12-17 22:21:44 +00003410 if (ID->getSuperClass()) {
3411 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3412 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3413 ObjCIvarDecl* Ivar = (*IVI);
3414 IdentifierInfo *II = Ivar->getIdentifier();
3415 ObjCIvarDecl* prevIvar = ID->getSuperClass()->FindIvarDeclaration(II);
3416 if (prevIvar) {
3417 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregor72de6672009-01-08 20:45:30 +00003418 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian3281eff2008-12-16 01:08:35 +00003419 }
Fariborz Jahanian375d37c2008-12-17 22:21:44 +00003420 }
Fariborz Jahanian3281eff2008-12-16 01:08:35 +00003421 }
Fariborz Jahanian60f8c862008-12-13 20:28:25 +00003422 }
Chris Lattnera91d3812008-02-05 22:40:55 +00003423 else if (ObjCImplementationDecl *IMPDecl =
3424 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003425 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
3426 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00003427 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00003428 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00003429 }
Daniel Dunbar7d076642008-10-03 17:33:35 +00003430
3431 if (Attr)
3432 ProcessDeclAttributeList(Record, Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00003433}
3434
Steve Naroff08d92e42007-09-15 18:49:24 +00003435Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00003436 DeclTy *lastEnumConst,
3437 SourceLocation IdLoc, IdentifierInfo *Id,
3438 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattner0ed844b2008-04-04 06:12:32 +00003439 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Reid Spencer5f016e22007-07-11 17:01:13 +00003440 EnumConstantDecl *LastEnumConst =
3441 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3442 Expr *Val = static_cast<Expr*>(val);
3443
Chris Lattner31e05722007-08-26 06:24:45 +00003444 // The scope passed in may not be a decl scope. Zip up the scope tree until
3445 // we find one that is.
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00003446 S = getNonFieldDeclScope(S);
Chris Lattner31e05722007-08-26 06:24:45 +00003447
Reid Spencer5f016e22007-07-11 17:01:13 +00003448 // Verify that there isn't already something declared with this name in this
3449 // scope.
Douglas Gregor72c3f312008-12-05 18:15:24 +00003450 Decl *PrevDecl = LookupDecl(Id, Decl::IDNS_Ordinary, S);
Douglas Gregorf57172b2008-12-08 18:40:42 +00003451 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00003452 // Maybe we will complain about the shadowed template parameter.
3453 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3454 // Just pretend that we didn't see the previous declaration.
3455 PrevDecl = 0;
3456 }
3457
3458 if (PrevDecl) {
Argyrios Kyrtzidis0ff12f02008-07-16 21:01:53 +00003459 // When in C++, we may get a TagDecl with the same name; in this case the
3460 // enum constant will 'hide' the tag.
3461 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3462 "Received TagDecl when not in C++!");
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +00003463 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003464 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner3c73c412008-11-19 08:23:25 +00003465 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Reid Spencer5f016e22007-07-11 17:01:13 +00003466 else
Chris Lattner3c73c412008-11-19 08:23:25 +00003467 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner5f4a6822008-11-23 23:12:31 +00003468 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattnera73349d2008-02-26 00:33:57 +00003469 delete Val;
Reid Spencer5f016e22007-07-11 17:01:13 +00003470 return 0;
3471 }
3472 }
3473
3474 llvm::APSInt EnumVal(32);
3475 QualType EltTy;
3476 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00003477 // Make sure to promote the operand type to int.
3478 UsualUnaryConversions(Val);
3479
Reid Spencer5f016e22007-07-11 17:01:13 +00003480 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3481 SourceLocation ExpLoc;
Anders Carlsson49184b22008-12-05 16:33:57 +00003482 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Chris Lattnera73349d2008-02-26 00:33:57 +00003483 delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00003484 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00003485 } else {
3486 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003487 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00003488 }
3489
3490 if (!Val) {
3491 if (LastEnumConst) {
3492 // Assign the last value + 1.
3493 EnumVal = LastEnumConst->getInitVal();
3494 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00003495
3496 // Check for overflow on increment.
3497 if (EnumVal < LastEnumConst->getInitVal())
3498 Diag(IdLoc, diag::warn_enum_value_overflow);
3499
Chris Lattnerb7416f92007-08-27 17:37:24 +00003500 EltTy = LastEnumConst->getType();
3501 } else {
3502 // First value, set to zero.
3503 EltTy = Context.IntTy;
Chris Lattner98be4942008-03-05 18:54:05 +00003504 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00003505 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003506 }
3507
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00003508 EnumConstantDecl *New =
Chris Lattner0ed844b2008-04-04 06:12:32 +00003509 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
3510 Val, EnumVal,
Chris Lattnerc63e6602008-03-15 21:32:50 +00003511 LastEnumConst);
Reid Spencer5f016e22007-07-11 17:01:13 +00003512
3513 // Register this decl in the current scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00003514 PushOnScopeChains(New, S);
Douglas Gregor45579f52008-12-17 02:04:30 +00003515
Reid Spencer5f016e22007-07-11 17:01:13 +00003516 return New;
3517}
3518
Steve Naroff02408c62008-08-07 14:08:16 +00003519// FIXME: For consistency with ActOnFields(), we should have the parser
3520// pass in the source location for the left/right braces.
Steve Naroff08d92e42007-09-15 18:49:24 +00003521void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00003522 DeclTy **Elements, unsigned NumElements) {
3523 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregor074149e2009-01-05 19:45:36 +00003524 QualType EnumType = Context.getTypeDeclType(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +00003525
Douglas Gregor074149e2009-01-05 19:45:36 +00003526 if (EnumType->getAsEnumType()->getDecl()->isDefinition()) {
3527 EnumDecl *Def = EnumType->getAsEnumType()->getDecl();
3528 // Diagnose code like:
3529 // enum e0 {
3530 // E0 = sizeof(enum e0 { E1 })
3531 // };
3532 Diag(Def->getLocation(), diag::err_nested_redefinition)
3533 << Enum->getDeclName();
3534 Diag(Enum->getLocation(), diag::note_previous_definition);
3535 Enum->setInvalidDecl();
Douglas Gregor074149e2009-01-05 19:45:36 +00003536 return;
Steve Naroff02408c62008-08-07 14:08:16 +00003537 }
Douglas Gregor074149e2009-01-05 19:45:36 +00003538
Chris Lattnere37f0be2007-08-28 05:10:31 +00003539 // TODO: If the result value doesn't fit in an int, it must be a long or long
3540 // long value. ISO C does not support this, but GCC does as an extension,
3541 // emit a warning.
Chris Lattner98be4942008-03-05 18:54:05 +00003542 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattnere37f0be2007-08-28 05:10:31 +00003543
Chris Lattnerac609682007-08-28 06:15:15 +00003544 // Verify that all the values are okay, compute the size of the values, and
3545 // reverse the list.
3546 unsigned NumNegativeBits = 0;
3547 unsigned NumPositiveBits = 0;
3548
3549 // Keep track of whether all elements have type int.
3550 bool AllElementsInt = true;
3551
Reid Spencer5f016e22007-07-11 17:01:13 +00003552 for (unsigned i = 0; i != NumElements; ++i) {
3553 EnumConstantDecl *ECD =
3554 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3555 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00003556
3557 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattner211a30e2007-08-28 05:27:00 +00003558 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattnera73349d2008-02-26 00:33:57 +00003559 assert(InitVal.getBitWidth() >= IntWidth &&
3560 "Should have promoted value to int");
Chris Lattner211a30e2007-08-28 05:27:00 +00003561 if (InitVal.getBitWidth() > IntWidth) {
3562 llvm::APSInt V(InitVal);
3563 V.trunc(IntWidth);
3564 V.extend(InitVal.getBitWidth());
3565 if (V != InitVal)
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003566 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3567 << InitVal.toString(10);
Chris Lattner211a30e2007-08-28 05:27:00 +00003568 }
Chris Lattnerac609682007-08-28 06:15:15 +00003569
3570 // Keep track of the size of positive and negative values.
Chris Lattnera73349d2008-02-26 00:33:57 +00003571 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00003572 NumPositiveBits = std::max(NumPositiveBits,
3573 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00003574 else
Chris Lattner21dd8212008-01-14 21:47:29 +00003575 NumNegativeBits = std::max(NumNegativeBits,
3576 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00003577
Chris Lattnerac609682007-08-28 06:15:15 +00003578 // Keep track of whether every enum element has type int (very commmon).
3579 if (AllElementsInt)
3580 AllElementsInt = ECD->getType() == Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003581 }
3582
Chris Lattnerac609682007-08-28 06:15:15 +00003583 // Figure out the type that should be used for this enum.
3584 // FIXME: Support attribute(packed) on enums and -fshort-enums.
3585 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003586 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00003587
3588 if (NumNegativeBits) {
3589 // If there is a negative value, figure out the smallest integer type (of
3590 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003591 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00003592 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003593 BestWidth = IntWidth;
3594 } else {
Chris Lattner98be4942008-03-05 18:54:05 +00003595 BestWidth = Context.Target.getLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00003596
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003597 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00003598 BestType = Context.LongTy;
3599 else {
Chris Lattner98be4942008-03-05 18:54:05 +00003600 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00003601
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003602 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00003603 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3604 BestType = Context.LongLongTy;
3605 }
3606 }
3607 } else {
3608 // If there is no negative value, figure out which of uint, ulong, ulonglong
3609 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003610 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00003611 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003612 BestWidth = IntWidth;
3613 } else if (NumPositiveBits <=
Chris Lattner98be4942008-03-05 18:54:05 +00003614 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattnerac609682007-08-28 06:15:15 +00003615 BestType = Context.UnsignedLongTy;
Chris Lattner98be4942008-03-05 18:54:05 +00003616 } else {
3617 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003618 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00003619 "How could an initializer get larger than ULL?");
3620 BestType = Context.UnsignedLongLongTy;
3621 }
3622 }
3623
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003624 // Loop over all of the enumerator constants, changing their types to match
3625 // the type of the enum if needed.
3626 for (unsigned i = 0; i != NumElements; ++i) {
3627 EnumConstantDecl *ECD =
3628 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3629 if (!ECD) continue; // Already issued a diagnostic.
3630
3631 // Standard C says the enumerators have int type, but we allow, as an
3632 // extension, the enumerators to be larger than int size. If each
3633 // enumerator value fits in an int, type it as an int, otherwise type it the
3634 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3635 // that X has type 'int', not 'unsigned'.
Chris Lattnera73349d2008-02-26 00:33:57 +00003636 if (ECD->getType() == Context.IntTy) {
3637 // Make sure the init value is signed.
3638 llvm::APSInt IV = ECD->getInitVal();
3639 IV.setIsSigned(true);
3640 ECD->setInitVal(IV);
Douglas Gregorc9467cf2008-12-12 02:00:36 +00003641
3642 if (getLangOptions().CPlusPlus)
3643 // C++ [dcl.enum]p4: Following the closing brace of an
3644 // enum-specifier, each enumerator has the type of its
3645 // enumeration.
3646 ECD->setType(EnumType);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003647 continue; // Already int type.
Chris Lattnera73349d2008-02-26 00:33:57 +00003648 }
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003649
3650 // Determine whether the value fits into an int.
3651 llvm::APSInt InitVal = ECD->getInitVal();
3652 bool FitsInInt;
3653 if (InitVal.isUnsigned() || !InitVal.isNegative())
3654 FitsInInt = InitVal.getActiveBits() < IntWidth;
3655 else
3656 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3657
3658 // If it fits into an integer type, force it. Otherwise force it to match
3659 // the enum decl type.
3660 QualType NewTy;
3661 unsigned NewWidth;
3662 bool NewSign;
3663 if (FitsInInt) {
3664 NewTy = Context.IntTy;
3665 NewWidth = IntWidth;
3666 NewSign = true;
3667 } else if (ECD->getType() == BestType) {
3668 // Already the right type!
Douglas Gregorc9467cf2008-12-12 02:00:36 +00003669 if (getLangOptions().CPlusPlus)
3670 // C++ [dcl.enum]p4: Following the closing brace of an
3671 // enum-specifier, each enumerator has the type of its
3672 // enumeration.
3673 ECD->setType(EnumType);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003674 continue;
3675 } else {
3676 NewTy = BestType;
3677 NewWidth = BestWidth;
3678 NewSign = BestType->isSignedIntegerType();
3679 }
3680
3681 // Adjust the APSInt value.
3682 InitVal.extOrTrunc(NewWidth);
3683 InitVal.setIsSigned(NewSign);
3684 ECD->setInitVal(InitVal);
3685
3686 // Adjust the Expr initializer and type.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00003687 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3688 /*isLvalue=*/false));
Douglas Gregorc9467cf2008-12-12 02:00:36 +00003689 if (getLangOptions().CPlusPlus)
3690 // C++ [dcl.enum]p4: Following the closing brace of an
3691 // enum-specifier, each enumerator has the type of its
3692 // enumeration.
3693 ECD->setType(EnumType);
3694 else
3695 ECD->setType(NewTy);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003696 }
Chris Lattnerac609682007-08-28 06:15:15 +00003697
Douglas Gregor44b43212008-12-11 16:49:14 +00003698 Enum->completeDefinition(Context, BestType);
Reid Spencer5f016e22007-07-11 17:01:13 +00003699}
3700
Anders Carlssondfab6cb2008-02-08 00:33:21 +00003701Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redl798d1192008-12-13 16:23:55 +00003702 ExprArg expr) {
3703 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
3704
Chris Lattner8e25d862008-03-16 00:16:02 +00003705 return FileScopeAsmDecl::Create(Context, Loc, AsmString);
Anders Carlssondfab6cb2008-02-08 00:33:21 +00003706}
3707
Douglas Gregorf44515a2008-12-16 22:23:02 +00003708
Daniel Dunbar4cde9272008-10-14 05:35:18 +00003709void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
3710 ExprTy *alignment, SourceLocation PragmaLoc,
3711 SourceLocation LParenLoc, SourceLocation RParenLoc) {
3712 Expr *Alignment = static_cast<Expr *>(alignment);
3713
3714 // If specified then alignment must be a "small" power of two.
3715 unsigned AlignmentVal = 0;
3716 if (Alignment) {
3717 llvm::APSInt Val;
3718 if (!Alignment->isIntegerConstantExpr(Val, Context) ||
3719 !Val.isPowerOf2() ||
3720 Val.getZExtValue() > 16) {
3721 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
3722 delete Alignment;
3723 return; // Ignore
3724 }
3725
3726 AlignmentVal = (unsigned) Val.getZExtValue();
3727 }
3728
3729 switch (Kind) {
3730 case Action::PPK_Default: // pack([n])
3731 PackContext.setAlignment(AlignmentVal);
3732 break;
3733
3734 case Action::PPK_Show: // pack(show)
3735 // Show the current alignment, making sure to show the right value
3736 // for the default.
3737 AlignmentVal = PackContext.getAlignment();
3738 // FIXME: This should come from the target.
3739 if (AlignmentVal == 0)
3740 AlignmentVal = 8;
Chris Lattner83652232008-11-19 07:25:44 +00003741 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
Daniel Dunbar4cde9272008-10-14 05:35:18 +00003742 break;
3743
3744 case Action::PPK_Push: // pack(push [, id] [, [n])
3745 PackContext.push(Name);
3746 // Set the new alignment if specified.
3747 if (Alignment)
3748 PackContext.setAlignment(AlignmentVal);
3749 break;
3750
3751 case Action::PPK_Pop: // pack(pop [, id] [, n])
3752 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
3753 // "#pragma pack(pop, identifier, n) is undefined"
3754 if (Alignment && Name)
3755 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
3756
3757 // Do the pop.
3758 if (!PackContext.pop(Name)) {
3759 // If a name was specified then failure indicates the name
3760 // wasn't found. Otherwise failure indicates the stack was
3761 // empty.
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003762 Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed)
3763 << (Name ? "no record matching name" : "stack empty");
Daniel Dunbar4cde9272008-10-14 05:35:18 +00003764
3765 // FIXME: Warn about popping named records as MSVC does.
3766 } else {
3767 // Pop succeeded, set the new alignment if specified.
3768 if (Alignment)
3769 PackContext.setAlignment(AlignmentVal);
3770 }
3771 break;
3772
3773 default:
3774 assert(0 && "Invalid #pragma pack kind.");
3775 }
3776}
3777
3778bool PragmaPackStack::pop(IdentifierInfo *Name) {
3779 if (Stack.empty())
3780 return false;
3781
3782 // If name is empty just pop top.
3783 if (!Name) {
3784 Alignment = Stack.back().first;
3785 Stack.pop_back();
3786 return true;
3787 }
3788
3789 // Otherwise, find the named record.
3790 for (unsigned i = Stack.size(); i != 0; ) {
3791 --i;
Daniel Dunbar06550392008-11-19 10:32:38 +00003792 if (Stack[i].second == Name) {
Daniel Dunbar4cde9272008-10-14 05:35:18 +00003793 // Found it, pop up to and including this record.
3794 Alignment = Stack[i].first;
3795 Stack.erase(Stack.begin() + i, Stack.end());
3796 return true;
3797 }
3798 }
3799
3800 return false;
3801}