blob: dfa1e03177993aed1aec11d02c694fb4841a21ca [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"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000020#include "clang/AST/ExprCXX.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/Parse/DeclSpec.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>
Reid Spencer5f016e22007-07-11 17:01:13 +000031using namespace clang;
32
Douglas Gregord6efafa2009-02-04 19:16:12 +000033/// \brief If the identifier refers to a type name within this scope,
34/// return the declaration of that type.
35///
36/// This routine performs ordinary name lookup of the identifier II
37/// within the given scope, with optional C++ scope specifier SS, to
Douglas Gregor1a51b4a2009-02-09 15:09:02 +000038/// determine whether the name refers to a type. If so, returns an
39/// opaque pointer (actually a QualType) corresponding to that
40/// type. Otherwise, returns NULL.
Douglas Gregord6efafa2009-02-04 19:16:12 +000041///
42/// If name lookup results in an ambiguity, this routine will complain
43/// and then return NULL.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +000044Sema::TypeTy *Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
Douglas Gregorb696ea32009-02-04 17:00:24 +000045 Scope *S, const CXXScopeSpec *SS) {
Chris Lattner22bd9052009-02-16 22:07:16 +000046 NamedDecl *IIDecl = 0;
Douglas Gregor3e41d602009-02-13 23:20:09 +000047 LookupResult Result = LookupParsedName(S, SS, &II, LookupOrdinaryName,
48 false, false);
Douglas Gregor7176fff2009-01-15 00:26:24 +000049 switch (Result.getKind()) {
Chris Lattner22bd9052009-02-16 22:07:16 +000050 case LookupResult::NotFound:
51 case LookupResult::FoundOverloaded:
52 return 0;
Douglas Gregorb696ea32009-02-04 17:00:24 +000053
Chris Lattner22bd9052009-02-16 22:07:16 +000054 case LookupResult::AmbiguousBaseSubobjectTypes:
55 case LookupResult::AmbiguousBaseSubobjects:
56 case LookupResult::AmbiguousReference:
57 DiagnoseAmbiguousLookup(Result, DeclarationName(&II), NameLoc);
58 return 0;
Douglas Gregorb696ea32009-02-04 17:00:24 +000059
Chris Lattner22bd9052009-02-16 22:07:16 +000060 case LookupResult::Found:
61 IIDecl = Result.getAsDecl();
62 break;
Douglas Gregor7176fff2009-01-15 00:26:24 +000063 }
64
Steve Naroffa5189032009-01-29 18:09:31 +000065 if (IIDecl) {
Chris Lattner22bd9052009-02-16 22:07:16 +000066 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000067 // Check whether we can use this type
68 (void)DiagnoseUseOfDecl(IIDecl, NameLoc);
Chris Lattner22bd9052009-02-16 22:07:16 +000069
Douglas Gregor1a51b4a2009-02-09 15:09:02 +000070 return Context.getTypeDeclType(TD).getAsOpaquePtr();
Chris Lattner22bd9052009-02-16 22:07:16 +000071 }
72
73 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000074 // Check whether we can use this interface.
75 (void)DiagnoseUseOfDecl(IIDecl, NameLoc);
Chris Lattner22bd9052009-02-16 22:07:16 +000076
Douglas Gregor1a51b4a2009-02-09 15:09:02 +000077 return Context.getObjCInterfaceType(IDecl).getAsOpaquePtr();
Chris Lattner22bd9052009-02-16 22:07:16 +000078 }
79
80 // Otherwise, could be a variable, function etc.
Steve Naroffa5189032009-01-29 18:09:31 +000081 }
Steve Naroff3536b442007-09-06 21:24:23 +000082 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000083}
84
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000085DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000086 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000087 // A C++ out-of-line method will return to the file declaration context.
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +000088 if (MD->isOutOfLineDefinition())
89 return MD->getLexicalDeclContext();
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000090
Chris Lattner76a642f2009-02-15 22:43:40 +000091 // A C++ inline method is parsed *after* the topmost class it was declared
92 // in is fully parsed (it's "complete").
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000093 // The parsing of a C++ inline method happens at the declaration context of
Argyrios Kyrtzidis77407b82008-11-19 18:01:13 +000094 // the topmost (non-nested) class it is lexically declared in.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000095 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
96 DC = MD->getParent();
Argyrios Kyrtzidis77407b82008-11-19 18:01:13 +000097 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000098 DC = RD;
99
100 // Return the declaration context of the topmost class the inline method is
101 // declared in.
102 return DC;
103 }
104
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +0000105 if (isa<ObjCMethodDecl>(DC))
106 return Context.getTranslationUnitDecl();
107
Argyrios Kyrtzidis77407b82008-11-19 18:01:13 +0000108 return DC->getLexicalParent();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000109}
110
Douglas Gregor44b43212008-12-11 16:49:14 +0000111void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000112 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xue50897a2008-12-08 07:14:51 +0000113 "The next DeclContext should be lexically contained in the current one.");
Chris Lattner9fdf9c62008-04-22 18:39:57 +0000114 CurContext = DC;
Douglas Gregor44b43212008-12-11 16:49:14 +0000115 S->setEntity(DC);
Chris Lattner0ed844b2008-04-04 06:12:32 +0000116}
117
Chris Lattnerb048c982008-04-06 04:47:34 +0000118void Sema::PopDeclContext() {
119 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor44b43212008-12-11 16:49:14 +0000120
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000121 CurContext = getContainingDC(CurContext);
Chris Lattner0ed844b2008-04-04 06:12:32 +0000122}
123
Douglas Gregorf9201e02009-02-11 23:02:49 +0000124/// \brief Determine whether we allow overloading of the function
125/// PrevDecl with another declaration.
126///
127/// This routine determines whether overloading is possible, not
128/// whether some new function is actually an overload. It will return
129/// true in C++ (where we can always provide overloads) or, as an
130/// extension, in C when the previous function is already an
131/// overloaded function declaration or has the "overloadable"
132/// attribute.
133static bool AllowOverloadingOfFunction(Decl *PrevDecl, ASTContext &Context) {
134 if (Context.getLangOptions().CPlusPlus)
135 return true;
136
137 if (isa<OverloadedFunctionDecl>(PrevDecl))
138 return true;
139
140 return PrevDecl->getAttr<OverloadableAttr>() != 0;
141}
142
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000143/// Add this decl to the scope shadowed decl chains.
144void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000145 // Move up the scope chain until we find the nearest enclosing
146 // non-transparent context. The declaration will be introduced into this
147 // scope.
148 while (S->getEntity() &&
149 ((DeclContext *)S->getEntity())->isTransparentContext())
150 S = S->getParent();
151
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000152 S->AddDecl(D);
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000153
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000154 // Add scoped declarations into their context, so that they can be
155 // found later. Declarations without a context won't be inserted
156 // into any context.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000157 CurContext->addDecl(D);
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000158
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000159 // C++ [basic.scope]p4:
160 // -- exactly one declaration shall declare a class name or
161 // enumeration name that is not a typedef name and the other
162 // declarations shall all refer to the same object or
163 // enumerator, or all refer to functions and function templates;
164 // in this case the class name or enumeration name is hidden.
165 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
166 // We are pushing the name of a tag (enum or class).
Douglas Gregore21b9942009-01-07 16:34:42 +0000167 if (CurContext->getLookupContext()
168 == TD->getDeclContext()->getLookupContext()) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000169 // We're pushing the tag into the current context, which might
170 // require some reshuffling in the identifier resolver.
171 IdentifierResolver::iterator
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000172 I = IdResolver.begin(TD->getDeclName()),
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000173 IEnd = IdResolver.end();
174 if (I != IEnd && isDeclInScope(*I, CurContext, S)) {
175 NamedDecl *PrevDecl = *I;
176 for (; I != IEnd && isDeclInScope(*I, CurContext, S);
177 PrevDecl = *I, ++I) {
178 if (TD->declarationReplaces(*I)) {
179 // This is a redeclaration. Remove it from the chain and
180 // break out, so that we'll add in the shadowed
181 // declaration.
182 S->RemoveDecl(*I);
183 if (PrevDecl == *I) {
184 IdResolver.RemoveDecl(*I);
185 IdResolver.AddDecl(TD);
186 return;
187 } else {
188 IdResolver.RemoveDecl(*I);
189 break;
190 }
191 }
192 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000193
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000194 // There is already a declaration with the same name in the same
195 // scope, which is not a tag declaration. It must be found
196 // before we find the new declaration, so insert the new
197 // declaration at the end of the chain.
198 IdResolver.AddShadowedDecl(TD, PrevDecl);
199
200 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000201 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000202 }
Douglas Gregorf9201e02009-02-11 23:02:49 +0000203 } else if (isa<FunctionDecl>(D) &&
204 AllowOverloadingOfFunction(D, Context)) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000205 // We are pushing the name of a function, which might be an
206 // overloaded name.
Douglas Gregor44b43212008-12-11 16:49:14 +0000207 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000208 IdentifierResolver::iterator Redecl
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000209 = std::find_if(IdResolver.begin(FD->getDeclName()),
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000210 IdResolver.end(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000211 std::bind1st(std::mem_fun(&NamedDecl::declarationReplaces),
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000212 FD));
213 if (Redecl != IdResolver.end()) {
214 // There is already a declaration of a function on our
215 // IdResolver chain. Replace it with this declaration.
216 S->RemoveDecl(*Redecl);
217 IdResolver.RemoveDecl(*Redecl);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000218 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000219 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000220
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000221 IdResolver.AddDecl(D);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000222}
223
Steve Naroffb216c882007-10-09 22:01:59 +0000224void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner31e05722007-08-26 06:24:45 +0000225 if (S->decl_empty()) return;
Douglas Gregor72c3f312008-12-05 18:15:24 +0000226 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
227 "Scope shouldn't contain decls!");
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000228
Reid Spencer5f016e22007-07-11 17:01:13 +0000229 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
230 I != E; ++I) {
Steve Naroffc752d042007-09-13 18:10:37 +0000231 Decl *TmpD = static_cast<Decl*>(*I);
232 assert(TmpD && "This decl didn't get pushed??");
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000233
Douglas Gregor44b43212008-12-11 16:49:14 +0000234 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
235 NamedDecl *D = cast<NamedDecl>(TmpD);
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000236
Douglas Gregor44b43212008-12-11 16:49:14 +0000237 if (!D->getDeclName()) continue;
Chris Lattner7f925cc2008-04-11 07:00:53 +0000238
Douglas Gregor44b43212008-12-11 16:49:14 +0000239 // Remove this name from our lexical scope.
240 IdResolver.RemoveDecl(D);
Reid Spencer5f016e22007-07-11 17:01:13 +0000241 }
242}
243
Steve Naroffe8043c32008-04-01 23:04:06 +0000244/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
245/// return 0 if one not found.
Steve Naroffe8043c32008-04-01 23:04:06 +0000246ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff31102512008-04-02 18:30:49 +0000247 // The third "scope" argument is 0 since we aren't enabling lazy built-in
248 // creation from this context.
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000249 NamedDecl *IDecl = LookupName(TUScope, Id, LookupOrdinaryName);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000250
Steve Naroffb327ce02008-04-02 14:35:35 +0000251 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000252}
253
Douglas Gregor1a0d31a2009-01-12 18:45:55 +0000254/// getNonFieldDeclScope - Retrieves the innermost scope, starting
255/// from S, where a non-field would be declared. This routine copes
256/// with the difference between C and C++ scoping rules in structs and
257/// unions. For example, the following code is well-formed in C but
258/// ill-formed in C++:
259/// @code
260/// struct S6 {
261/// enum { BAR } e;
262/// };
263///
264/// void test_S6() {
265/// struct S6 a;
266/// a.e = BAR;
267/// }
268/// @endcode
269/// For the declaration of BAR, this routine will return a different
270/// scope. The scope S will be the scope of the unnamed enumeration
271/// within S6. In C++, this routine will return the scope associated
272/// with S6, because the enumeration's scope is a transparent
273/// context but structures can contain non-field names. In C, this
274/// routine will return the translation unit scope, since the
275/// enumeration's scope is a transparent context and structures cannot
276/// contain non-field names.
277Scope *Sema::getNonFieldDeclScope(Scope *S) {
278 while (((S->getFlags() & Scope::DeclScope) == 0) ||
279 (S->getEntity() &&
280 ((DeclContext *)S->getEntity())->isTransparentContext()) ||
281 (S->isClassScope() && !getLangOptions().CPlusPlus))
282 S = S->getParent();
283 return S;
284}
285
Chris Lattner95e2c712008-05-05 22:18:14 +0000286void Sema::InitBuiltinVaListType() {
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000287 if (!Context.getBuiltinVaListType().isNull())
288 return;
289
290 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000291 NamedDecl *VaDecl = LookupName(TUScope, VaIdent, LookupOrdinaryName);
Steve Naroff733002f2007-10-18 22:17:45 +0000292 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000293 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
294}
295
Douglas Gregor3e41d602009-02-13 23:20:09 +0000296/// LazilyCreateBuiltin - The specified Builtin-ID was first used at
297/// file scope. lazily create a decl for it. ForRedeclaration is true
298/// if we're creating this built-in in anticipation of redeclaring the
299/// built-in.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000300NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
Douglas Gregor3e41d602009-02-13 23:20:09 +0000301 Scope *S, bool ForRedeclaration,
302 SourceLocation Loc) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000303 Builtin::ID BID = (Builtin::ID)bid;
304
Chris Lattnerbd7eb1c2008-09-28 05:54:29 +0000305 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000306 InitBuiltinVaListType();
Douglas Gregor3e41d602009-02-13 23:20:09 +0000307
Douglas Gregor370ab3f2009-02-14 01:52:53 +0000308 Builtin::Context::GetBuiltinTypeError Error;
309 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context, Error);
310 switch (Error) {
311 case Builtin::Context::GE_None:
312 // Okay
313 break;
314
315 case Builtin::Context::GE_Missing_FILE:
316 if (ForRedeclaration)
317 Diag(Loc, diag::err_implicit_decl_requires_stdio)
318 << Context.BuiltinInfo.GetName(BID);
319 return 0;
320 }
Douglas Gregor3e41d602009-02-13 23:20:09 +0000321
322 if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
323 Diag(Loc, diag::ext_implicit_lib_function_decl)
324 << Context.BuiltinInfo.GetName(BID)
325 << R;
Douglas Gregorb1152d82009-02-16 21:58:21 +0000326 if (Context.BuiltinInfo.getHeaderName(BID) &&
Douglas Gregor3e41d602009-02-13 23:20:09 +0000327 Diags.getDiagnosticMapping(diag::ext_implicit_lib_function_decl)
328 != diag::MAP_IGNORE)
329 Diag(Loc, diag::note_please_include_header)
330 << Context.BuiltinInfo.getHeaderName(BID)
331 << Context.BuiltinInfo.GetName(BID);
332 }
333
Argyrios Kyrtzidisff898cd2008-04-17 14:47:13 +0000334 FunctionDecl *New = FunctionDecl::Create(Context,
335 Context.getTranslationUnitDecl(),
Douglas Gregor3e41d602009-02-13 23:20:09 +0000336 Loc, II, R,
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000337 FunctionDecl::Extern, false);
Douglas Gregor3e41d602009-02-13 23:20:09 +0000338 New->setImplicit();
339
Chris Lattner95e2c712008-05-05 22:18:14 +0000340 // Create Decl objects for each parameter, adding them to the
341 // FunctionDecl.
342 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
343 llvm::SmallVector<ParmVarDecl*, 16> Params;
344 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
345 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000346 FT->getArgType(i), VarDecl::None, 0));
Ted Kremenekfc767612009-01-14 00:42:25 +0000347 New->setParams(Context, &Params[0], Params.size());
Chris Lattner95e2c712008-05-05 22:18:14 +0000348 }
349
Douglas Gregor3c385e52009-02-14 18:57:46 +0000350 AddKnownFunctionAttributes(New);
Chris Lattner95e2c712008-05-05 22:18:14 +0000351
Chris Lattner7f925cc2008-04-11 07:00:53 +0000352 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregora8cc8ce2009-01-09 18:51:29 +0000353 // FIXME: This is hideous. We need to teach PushOnScopeChains to
354 // relate Scopes to DeclContexts, and probably eliminate CurContext
355 // entirely, but we're not there yet.
356 DeclContext *SavedContext = CurContext;
357 CurContext = Context.getTranslationUnitDecl();
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000358 PushOnScopeChains(New, TUScope);
Douglas Gregora8cc8ce2009-01-09 18:51:29 +0000359 CurContext = SavedContext;
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 return New;
361}
362
Sebastian Redlc42e1182008-11-11 11:37:55 +0000363/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
364/// everything from the standard library is defined.
365NamespaceDecl *Sema::GetStdNamespace() {
366 if (!StdNamespace) {
Chris Lattner8edea832008-11-20 05:45:14 +0000367 IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
Sebastian Redlc42e1182008-11-11 11:37:55 +0000368 DeclContext *Global = Context.getTranslationUnitDecl();
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000369 Decl *Std = LookupQualifiedName(Global, StdIdent, LookupNamespaceName);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000370 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
371 }
372 return StdNamespace;
373}
374
Douglas Gregorcda9c672009-02-16 17:45:42 +0000375/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the
376/// same name and scope as a previous declaration 'Old'. Figure out
377/// how to resolve this situation, merging decls or emitting
378/// diagnostics as appropriate. Returns true if there was an error,
379/// false otherwise.
Reid Spencer5f016e22007-07-11 17:01:13 +0000380///
Douglas Gregorcda9c672009-02-16 17:45:42 +0000381bool Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Fariborz Jahanianc55a2402009-01-16 19:58:32 +0000382 bool objc_types = false;
Steve Naroff2b255c42008-09-09 14:32:20 +0000383 // Allow multiple definitions for ObjC built-in typedefs.
384 // FIXME: Verify the underlying types are equivalent!
385 if (getLangOptions().ObjC1) {
Chris Lattner2bac0f62008-11-20 05:41:43 +0000386 const IdentifierInfo *TypeID = New->getIdentifier();
387 switch (TypeID->getLength()) {
388 default: break;
389 case 2:
390 if (!TypeID->isStr("id"))
391 break;
Steve Naroff2b255c42008-09-09 14:32:20 +0000392 Context.setObjCIdType(New);
Fariborz Jahanianc55a2402009-01-16 19:58:32 +0000393 objc_types = true;
394 break;
Chris Lattner2bac0f62008-11-20 05:41:43 +0000395 case 5:
396 if (!TypeID->isStr("Class"))
397 break;
Steve Naroff2b255c42008-09-09 14:32:20 +0000398 Context.setObjCClassType(New);
Fariborz Jahanianc55a2402009-01-16 19:58:32 +0000399 objc_types = true;
Douglas Gregorcda9c672009-02-16 17:45:42 +0000400 return false;
Chris Lattner2bac0f62008-11-20 05:41:43 +0000401 case 3:
402 if (!TypeID->isStr("SEL"))
403 break;
Steve Naroff2b255c42008-09-09 14:32:20 +0000404 Context.setObjCSelType(New);
Fariborz Jahanianc55a2402009-01-16 19:58:32 +0000405 objc_types = true;
Douglas Gregorcda9c672009-02-16 17:45:42 +0000406 return false;
Chris Lattner2bac0f62008-11-20 05:41:43 +0000407 case 8:
408 if (!TypeID->isStr("Protocol"))
409 break;
Steve Naroff2b255c42008-09-09 14:32:20 +0000410 Context.setObjCProtoType(New->getUnderlyingType());
Fariborz Jahanianc55a2402009-01-16 19:58:32 +0000411 objc_types = true;
Douglas Gregorcda9c672009-02-16 17:45:42 +0000412 return false;
Steve Naroff2b255c42008-09-09 14:32:20 +0000413 }
414 // Fall through - the typedef name was not a builtin type.
415 }
Douglas Gregor66973122009-01-28 17:15:10 +0000416 // Verify the old decl was also a type.
417 TypeDecl *Old = dyn_cast<TypeDecl>(OldD);
Reid Spencer5f016e22007-07-11 17:01:13 +0000418 if (!Old) {
Douglas Gregor66973122009-01-28 17:15:10 +0000419 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattner08631c52008-11-23 21:45:46 +0000420 << New->getDeclName();
Fariborz Jahanianc55a2402009-01-16 19:58:32 +0000421 if (!objc_types)
422 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000423 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000424 }
Douglas Gregor66973122009-01-28 17:15:10 +0000425
426 // Determine the "old" type we'll use for checking and diagnostics.
427 QualType OldType;
428 if (TypedefDecl *OldTypedef = dyn_cast<TypedefDecl>(Old))
429 OldType = OldTypedef->getUnderlyingType();
430 else
431 OldType = Context.getTypeDeclType(Old);
432
Chris Lattner99cb9972008-07-25 18:44:27 +0000433 // If the typedef types are not identical, reject them in all languages and
434 // with any extensions enabled.
Douglas Gregor66973122009-01-28 17:15:10 +0000435
436 if (OldType != New->getUnderlyingType() &&
437 Context.getCanonicalType(OldType) !=
Chris Lattner99cb9972008-07-25 18:44:27 +0000438 Context.getCanonicalType(New->getUnderlyingType())) {
Chris Lattner5dc266a2008-11-20 06:13:02 +0000439 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
Douglas Gregor66973122009-01-28 17:15:10 +0000440 << New->getUnderlyingType() << OldType;
Fariborz Jahanianc55a2402009-01-16 19:58:32 +0000441 if (!objc_types)
442 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000443 return true;
Chris Lattner99cb9972008-07-25 18:44:27 +0000444 }
Douglas Gregorcda9c672009-02-16 17:45:42 +0000445 if (objc_types) return false;
446 if (getLangOptions().Microsoft) return false;
Eli Friedman54ecfce2008-06-11 06:20:39 +0000447
Douglas Gregorbbe27432008-11-21 16:29:06 +0000448 // C++ [dcl.typedef]p2:
449 // In a given non-class scope, a typedef specifier can be used to
450 // redefine the name of any type declared in that scope to refer
451 // to the type to which it already refers.
452 if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext))
Douglas Gregorcda9c672009-02-16 17:45:42 +0000453 return false;
Douglas Gregorbbe27432008-11-21 16:29:06 +0000454
455 // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000456 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
457 // *either* declaration is in a system header. The code below implements
458 // this adhoc compatibility rule. FIXME: The following code will not
459 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar2fe09972008-09-12 18:10:20 +0000460 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
461 SourceManager &SrcMgr = Context.getSourceManager();
462 if (SrcMgr.isInSystemHeader(Old->getLocation()))
Douglas Gregorcda9c672009-02-16 17:45:42 +0000463 return false;
Daniel Dunbar2fe09972008-09-12 18:10:20 +0000464 if (SrcMgr.isInSystemHeader(New->getLocation()))
Douglas Gregorcda9c672009-02-16 17:45:42 +0000465 return false;
Daniel Dunbar2fe09972008-09-12 18:10:20 +0000466 }
Eli Friedman54ecfce2008-06-11 06:20:39 +0000467
Chris Lattner08631c52008-11-23 21:45:46 +0000468 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000469 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000470 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000471}
472
Chris Lattner6b6b5372008-06-26 18:38:35 +0000473/// DeclhasAttr - returns true if decl Declaration already has the target
474/// attribute.
Chris Lattnerddee4232008-03-03 03:28:21 +0000475static bool DeclHasAttr(const Decl *decl, const Attr *target) {
476 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
477 if (attr->getKind() == target->getKind())
478 return true;
479
480 return false;
481}
482
483/// MergeAttributes - append attributes from the Old decl to the New one.
484static void MergeAttributes(Decl *New, Decl *Old) {
485 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
486
Chris Lattnerddee4232008-03-03 03:28:21 +0000487 while (attr) {
Douglas Gregorae170942009-02-13 00:26:38 +0000488 tmp = attr;
489 attr = attr->getNext();
Chris Lattnerddee4232008-03-03 03:28:21 +0000490
Douglas Gregorae170942009-02-13 00:26:38 +0000491 if (!DeclHasAttr(New, tmp) && tmp->isMerged()) {
492 tmp->setInherited(true);
493 New->addAttr(tmp);
Chris Lattnerddee4232008-03-03 03:28:21 +0000494 } else {
Douglas Gregorae170942009-02-13 00:26:38 +0000495 tmp->setNext(0);
496 delete(tmp);
Chris Lattnerddee4232008-03-03 03:28:21 +0000497 }
498 }
Nuno Lopes9141bee2008-06-01 22:53:53 +0000499
500 Old->invalidateAttrs();
Chris Lattnerddee4232008-03-03 03:28:21 +0000501}
502
Chris Lattner04421082008-04-08 04:40:51 +0000503/// MergeFunctionDecl - We just parsed a function 'New' from
504/// declarator D which has the same name and scope as a previous
505/// declaration 'Old'. Figure out how to resolve this situation,
506/// merging decls or emitting diagnostics as appropriate.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000507///
508/// In C++, New and Old must be declarations that are not
509/// overloaded. Use IsOverload to determine whether New and Old are
510/// overloaded, and to select the Old declaration that New should be
511/// merged with.
Douglas Gregorcda9c672009-02-16 17:45:42 +0000512///
513/// Returns true if there was an error, false otherwise.
514bool Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000515 assert(!isa<OverloadedFunctionDecl>(OldD) &&
516 "Cannot merge with an overloaded function declaration");
517
Reid Spencer5f016e22007-07-11 17:01:13 +0000518 // Verify the old decl was also a function.
519 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
520 if (!Old) {
Chris Lattner5dc266a2008-11-20 06:13:02 +0000521 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattner08631c52008-11-23 21:45:46 +0000522 << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000523 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000524 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000525 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000526
527 // Determine whether the previous declaration was a definition,
528 // implicit declaration, or a declaration.
529 diag::kind PrevDiag;
530 if (Old->isThisDeclarationADefinition())
Chris Lattner5f4a6822008-11-23 23:12:31 +0000531 PrevDiag = diag::note_previous_definition;
Douglas Gregorcda9c672009-02-16 17:45:42 +0000532 else if (Old->isImplicit())
533 PrevDiag = diag::note_previous_implicit_declaration;
534 else
Chris Lattner5f4a6822008-11-23 23:12:31 +0000535 PrevDiag = diag::note_previous_declaration;
Chris Lattner04421082008-04-08 04:40:51 +0000536
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000537 QualType OldQType = Context.getCanonicalType(Old->getType());
538 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner55196442007-11-20 19:04:50 +0000539
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000540 if (getLangOptions().CPlusPlus) {
541 // (C++98 13.1p2):
542 // Certain function declarations cannot be overloaded:
543 // -- Function declarations that differ only in the return type
544 // cannot be overloaded.
545 QualType OldReturnType
546 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
547 QualType NewReturnType
548 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
549 if (OldReturnType != NewReturnType) {
550 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
Douglas Gregor3e41d602009-02-13 23:20:09 +0000551 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregorcda9c672009-02-16 17:45:42 +0000552 return true;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000553 }
554
555 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
556 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
557 if (OldMethod && NewMethod) {
558 // -- Member function declarations with the same name and the
559 // same parameter types cannot be overloaded if any of them
560 // is a static member function declaration.
561 if (OldMethod->isStatic() || NewMethod->isStatic()) {
562 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
Douglas Gregor3e41d602009-02-13 23:20:09 +0000563 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregorcda9c672009-02-16 17:45:42 +0000564 return true;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000565 }
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000566
567 // C++ [class.mem]p1:
568 // [...] A member shall not be declared twice in the
569 // member-specification, except that a nested class or member
570 // class template can be declared and then later defined.
571 if (OldMethod->getLexicalDeclContext() ==
572 NewMethod->getLexicalDeclContext()) {
573 unsigned NewDiag;
574 if (isa<CXXConstructorDecl>(OldMethod))
575 NewDiag = diag::err_constructor_redeclared;
576 else if (isa<CXXDestructorDecl>(NewMethod))
577 NewDiag = diag::err_destructor_redeclared;
578 else if (isa<CXXConversionDecl>(NewMethod))
579 NewDiag = diag::err_conv_function_redeclared;
580 else
581 NewDiag = diag::err_member_redeclared;
582
583 Diag(New->getLocation(), NewDiag);
Douglas Gregor3e41d602009-02-13 23:20:09 +0000584 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000585 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000586 }
587
588 // (C++98 8.3.5p3):
589 // All declarations for a function shall agree exactly in both the
590 // return type and the parameter-type-list.
591 if (OldQType == NewQType) {
592 // We have a redeclaration.
593 MergeAttributes(New, Old);
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000594
595 // Merge the "deleted" flag.
596 if (Old->isDeleted())
597 New->setDeleted();
598
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000599 return MergeCXXFunctionDecl(New, Old);
600 }
601
602 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregorf0097952008-04-21 02:02:58 +0000603 }
Chris Lattner04421082008-04-08 04:40:51 +0000604
605 // C: Function types need to be compatible, not identical. This handles
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000606 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner04421082008-04-08 04:40:51 +0000607 if (!getLangOptions().CPlusPlus &&
Eli Friedman3d815e72008-08-22 00:56:42 +0000608 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregor68719812009-02-16 18:20:44 +0000609 const FunctionType *NewFuncType = NewQType->getAsFunctionType();
610 const FunctionTypeProto *OldProto = 0;
611 if (isa<FunctionTypeNoProto>(NewFuncType) &&
612 (OldProto = OldQType->getAsFunctionTypeProto())) {
613 // The old declaration provided a function prototype, but the
614 // new declaration does not. Merge in the prototype.
615 llvm::SmallVector<QualType, 16> ParamTypes(OldProto->arg_type_begin(),
616 OldProto->arg_type_end());
617 NewQType = Context.getFunctionType(NewFuncType->getResultType(),
618 &ParamTypes[0], ParamTypes.size(),
619 OldProto->isVariadic(),
620 OldProto->getTypeQuals());
621 New->setType(NewQType);
622 New->setInheritedPrototype();
Douglas Gregor450da982009-02-16 20:58:07 +0000623
624 // Synthesize a parameter for each argument type.
625 llvm::SmallVector<ParmVarDecl*, 16> Params;
626 for (FunctionTypeProto::arg_type_iterator
627 ParamType = OldProto->arg_type_begin(),
628 ParamEnd = OldProto->arg_type_end();
629 ParamType != ParamEnd; ++ParamType) {
630 ParmVarDecl *Param = ParmVarDecl::Create(Context, New,
631 SourceLocation(), 0,
632 *ParamType, VarDecl::None,
633 0);
634 Param->setImplicit();
635 Params.push_back(Param);
636 }
637
638 New->setParams(Context, &Params[0], Params.size());
639
Douglas Gregor68719812009-02-16 18:20:44 +0000640 }
641
Douglas Gregorf0097952008-04-21 02:02:58 +0000642 MergeAttributes(New, Old);
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000643
644 // Merge the "deleted" flag.
645 if (Old->isDeleted())
646 New->setDeleted();
Douglas Gregor68719812009-02-16 18:20:44 +0000647
Douglas Gregorcda9c672009-02-16 17:45:42 +0000648 return false;
Chris Lattner04421082008-04-08 04:40:51 +0000649 }
Chris Lattnere3995fe2007-11-06 06:07:26 +0000650
Steve Naroff837618c2008-01-16 15:01:34 +0000651 // A function that has already been declared has been redeclared or defined
652 // with a different type- show appropriate diagnostic
Douglas Gregorcda9c672009-02-16 17:45:42 +0000653 if (unsigned BuiltinID = Old->getBuiltinID(Context)) {
654 // The user has declared a builtin function with an incompatible
655 // signature.
656 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
657 // The function the user is redeclaring is a library-defined
658 // function like 'malloc' or 'printf'. Warn about the
659 // redeclaration, then ignore it.
660 Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
661 Diag(Old->getLocation(), diag::note_previous_builtin_declaration)
662 << Old << Old->getType();
Douglas Gregorc2b6a822009-02-18 22:00:45 +0000663 return true;
Douglas Gregorcda9c672009-02-16 17:45:42 +0000664 }
Steve Naroff837618c2008-01-16 15:01:34 +0000665
Douglas Gregorcda9c672009-02-16 17:45:42 +0000666 PrevDiag = diag::note_previous_builtin_declaration;
667 }
668
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000669 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Douglas Gregor3e41d602009-02-13 23:20:09 +0000670 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregorcda9c672009-02-16 17:45:42 +0000671 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000672}
673
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000674/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd4d46cd2008-08-10 15:28:06 +0000675static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000676 if (VD->isFileVarDecl())
677 return (!VD->getInit() &&
678 (VD->getStorageClass() == VarDecl::None ||
679 VD->getStorageClass() == VarDecl::Static));
680 return false;
681}
682
683/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
684/// when dealing with C "tentative" external object definitions (C99 6.9.2).
685void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
686 bool VDIsTentative = isTentativeDefinition(VD);
Steve Narofff855e6f2008-08-10 15:20:13 +0000687 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000688
Douglas Gregore21b9942009-01-07 16:34:42 +0000689 // FIXME: I don't think this will actually see all of the
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000690 // redefinitions. Can't we check this property on-the-fly?
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000691 for (IdentifierResolver::iterator I = IdResolver.begin(VD->getIdentifier()),
692 E = IdResolver.end();
693 I != E; ++I) {
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +0000694 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000695 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
696
Steve Narofff855e6f2008-08-10 15:20:13 +0000697 // Handle the following case:
698 // int a[10];
699 // int a[]; - the code below makes sure we set the correct type.
700 // int a[11]; - this is an error, size isn't 10.
701 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
702 OldDecl->getType()->isConstantArrayType())
703 VD->setType(OldDecl->getType());
704
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000705 // Check for "tentative" definitions. We can't accomplish this in
706 // MergeVarDecl since the initializer hasn't been attached.
707 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
708 continue;
709
710 // Handle __private_extern__ just like extern.
711 if (OldDecl->getStorageClass() != VarDecl::Extern &&
712 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
713 VD->getStorageClass() != VarDecl::Extern &&
714 VD->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner08631c52008-11-23 21:45:46 +0000715 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000716 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Sebastian Redl89ef6e02009-02-08 10:49:44 +0000717 // One redefinition error is enough.
718 break;
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000719 }
720 }
721 }
722}
723
Reid Spencer5f016e22007-07-11 17:01:13 +0000724/// MergeVarDecl - We just parsed a variable 'New' which has the same name
725/// and scope as a previous declaration 'Old'. Figure out how to resolve this
726/// situation, merging decls or emitting diagnostics as appropriate.
727///
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000728/// Tentative definition rules (C99 6.9.2p2) are checked by
729/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
730/// definitions here, since the initializer hasn't been attached.
Reid Spencer5f016e22007-07-11 17:01:13 +0000731///
Douglas Gregorcda9c672009-02-16 17:45:42 +0000732bool Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000733 // Verify the old decl was also a variable.
734 VarDecl *Old = dyn_cast<VarDecl>(OldD);
735 if (!Old) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +0000736 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattner08631c52008-11-23 21:45:46 +0000737 << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000738 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000739 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000740 }
Chris Lattnerddee4232008-03-03 03:28:21 +0000741
742 MergeAttributes(New, Old);
743
Eli Friedman13ca96a2009-01-24 23:49:55 +0000744 // Merge the types
745 QualType MergedT = Context.mergeTypes(New->getType(), Old->getType());
746 if (MergedT.isNull()) {
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000747 Diag(New->getLocation(), diag::err_redefinition_different_type)
748 << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000749 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000750 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 }
Eli Friedman13ca96a2009-01-24 23:49:55 +0000752 New->setType(MergedT);
Steve Naroffb7b032e2008-01-30 00:44:01 +0000753 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
754 if (New->getStorageClass() == VarDecl::Static &&
755 (Old->getStorageClass() == VarDecl::None ||
756 Old->getStorageClass() == VarDecl::Extern)) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000757 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000758 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000759 return true;
Steve Naroffb7b032e2008-01-30 00:44:01 +0000760 }
761 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
762 if (New->getStorageClass() != VarDecl::Static &&
763 Old->getStorageClass() == VarDecl::Static) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000764 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000765 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000766 return true;
Steve Naroffb7b032e2008-01-30 00:44:01 +0000767 }
Steve Naroff094cefb2008-09-17 14:05:40 +0000768 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
769 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattner08631c52008-11-23 21:45:46 +0000770 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000771 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000772 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000773 }
Douglas Gregorcda9c672009-02-16 17:45:42 +0000774 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000775}
776
Chris Lattner04421082008-04-08 04:40:51 +0000777/// CheckParmsForFunctionDef - Check that the parameters of the given
778/// function are appropriate for the definition of a function. This
779/// takes care of any checks that cannot be performed on the
780/// declaration itself, e.g., that the types of each of the function
781/// parameters are complete.
782bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
783 bool HasInvalidParm = false;
784 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
785 ParmVarDecl *Param = FD->getParamDecl(p);
786
787 // C99 6.7.5.3p4: the parameters in a parameter type list in a
788 // function declarator that is part of a function definition of
789 // that function shall not have incomplete type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +0000790 if (!Param->isInvalidDecl() &&
791 DiagnoseIncompleteType(Param->getLocation(), Param->getType(),
792 diag::err_typecheck_decl_incomplete_type)) {
Chris Lattner04421082008-04-08 04:40:51 +0000793 Param->setInvalidDecl();
794 HasInvalidParm = true;
795 }
Chris Lattner777f07b2008-12-17 07:32:46 +0000796
797 // C99 6.9.1p5: If the declarator includes a parameter type list, the
798 // declaration of each parameter shall include an identifier.
Douglas Gregor450da982009-02-16 20:58:07 +0000799 if (Param->getIdentifier() == 0 &&
800 !Param->isImplicit() &&
801 !getLangOptions().CPlusPlus)
Chris Lattner777f07b2008-12-17 07:32:46 +0000802 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattner04421082008-04-08 04:40:51 +0000803 }
804
805 return HasInvalidParm;
806}
807
Reid Spencer5f016e22007-07-11 17:01:13 +0000808/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
809/// no declarator (e.g. "struct foo;") is parsed.
810Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000811 TagDecl *Tag = 0;
812 if (DS.getTypeSpecType() == DeclSpec::TST_class ||
813 DS.getTypeSpecType() == DeclSpec::TST_struct ||
814 DS.getTypeSpecType() == DeclSpec::TST_union ||
815 DS.getTypeSpecType() == DeclSpec::TST_enum)
816 Tag = dyn_cast<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
817
Douglas Gregor4920f1f2009-01-12 22:49:06 +0000818 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
819 if (!Record->getDeclName() && Record->isDefinition() &&
820 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
821 return BuildAnonymousStructOrUnion(S, DS, Record);
822
823 // Microsoft allows unnamed struct/union fields. Don't complain
824 // about them.
825 // FIXME: Should we support Microsoft's extensions in this area?
826 if (Record->getDeclName() && getLangOptions().Microsoft)
827 return Tag;
828 }
829
Douglas Gregorddc29e12009-02-06 22:42:48 +0000830 if (!DS.isMissingDeclaratorOk() &&
831 DS.getTypeSpecType() != DeclSpec::TST_error) {
Douglas Gregor21282df2009-01-22 16:23:54 +0000832 // Warn about typedefs of enums without names, since this is an
833 // extension in both Microsoft an GNU.
Douglas Gregor8158f692009-01-17 02:55:50 +0000834 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
835 Tag && isa<EnumDecl>(Tag)) {
Douglas Gregor21282df2009-01-22 16:23:54 +0000836 Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
Douglas Gregoree159c12009-01-13 23:10:51 +0000837 << DS.getSourceRange();
838 return Tag;
839 }
840
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000841 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
842 << DS.getSourceRange();
843 return 0;
844 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000845
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000846 return Tag;
847}
848
849/// InjectAnonymousStructOrUnionMembers - Inject the members of the
850/// anonymous struct or union AnonRecord into the owning context Owner
851/// and scope S. This routine will be invoked just after we realize
852/// that an unnamed union or struct is actually an anonymous union or
853/// struct, e.g.,
854///
855/// @code
856/// union {
857/// int i;
858/// float f;
859/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
860/// // f into the surrounding scope.x
861/// @endcode
862///
863/// This routine is recursive, injecting the names of nested anonymous
864/// structs/unions into the owning context and scope as well.
865bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
866 RecordDecl *AnonRecord) {
867 bool Invalid = false;
868 for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
869 FEnd = AnonRecord->field_end();
870 F != FEnd; ++F) {
871 if ((*F)->getDeclName()) {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000872 NamedDecl *PrevDecl = LookupQualifiedName(Owner, (*F)->getDeclName(),
873 LookupOrdinaryName, true);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000874 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
875 // C++ [class.union]p2:
876 // The names of the members of an anonymous union shall be
877 // distinct from the names of any other entity in the
878 // scope in which the anonymous union is declared.
879 unsigned diagKind
880 = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl
881 : diag::err_anonymous_struct_member_redecl;
882 Diag((*F)->getLocation(), diagKind)
883 << (*F)->getDeclName();
884 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
885 Invalid = true;
886 } else {
887 // C++ [class.union]p2:
888 // For the purpose of name lookup, after the anonymous union
889 // definition, the members of the anonymous union are
890 // considered to have been defined in the scope in which the
891 // anonymous union is declared.
Douglas Gregor40f4e692009-01-20 16:54:50 +0000892 Owner->makeDeclVisibleInContext(*F);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000893 S->AddDecl(*F);
894 IdResolver.AddDecl(*F);
895 }
896 } else if (const RecordType *InnerRecordType
897 = (*F)->getType()->getAsRecordType()) {
898 RecordDecl *InnerRecord = InnerRecordType->getDecl();
899 if (InnerRecord->isAnonymousStructOrUnion())
900 Invalid = Invalid ||
901 InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
902 }
903 }
904
905 return Invalid;
906}
907
908/// ActOnAnonymousStructOrUnion - Handle the declaration of an
909/// anonymous structure or union. Anonymous unions are a C++ feature
910/// (C++ [class.union]) and a GNU C extension; anonymous structures
911/// are a GNU C and GNU C++ extension.
912Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
913 RecordDecl *Record) {
914 DeclContext *Owner = Record->getDeclContext();
915
916 // Diagnose whether this anonymous struct/union is an extension.
917 if (Record->isUnion() && !getLangOptions().CPlusPlus)
918 Diag(Record->getLocation(), diag::ext_anonymous_union);
919 else if (!Record->isUnion())
920 Diag(Record->getLocation(), diag::ext_anonymous_struct);
921
922 // C and C++ require different kinds of checks for anonymous
923 // structs/unions.
924 bool Invalid = false;
925 if (getLangOptions().CPlusPlus) {
926 const char* PrevSpec = 0;
927 // C++ [class.union]p3:
928 // Anonymous unions declared in a named namespace or in the
929 // global namespace shall be declared static.
930 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
931 (isa<TranslationUnitDecl>(Owner) ||
932 (isa<NamespaceDecl>(Owner) &&
933 cast<NamespaceDecl>(Owner)->getDeclName()))) {
934 Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
935 Invalid = true;
936
937 // Recover by adding 'static'.
938 DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec);
939 }
940 // C++ [class.union]p3:
941 // A storage class is not allowed in a declaration of an
942 // anonymous union in a class scope.
943 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
944 isa<RecordDecl>(Owner)) {
945 Diag(DS.getStorageClassSpecLoc(),
946 diag::err_anonymous_union_with_storage_spec);
947 Invalid = true;
948
949 // Recover by removing the storage specifier.
950 DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
951 PrevSpec);
952 }
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000953
954 // C++ [class.union]p2:
955 // The member-specification of an anonymous union shall only
956 // define non-static data members. [Note: nested types and
957 // functions cannot be declared within an anonymous union. ]
958 for (DeclContext::decl_iterator Mem = Record->decls_begin(),
959 MemEnd = Record->decls_end();
960 Mem != MemEnd; ++Mem) {
961 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
962 // C++ [class.union]p3:
963 // An anonymous union shall not have private or protected
964 // members (clause 11).
965 if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
966 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
967 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
968 Invalid = true;
969 }
970 } else if ((*Mem)->isImplicit()) {
971 // Any implicit members are fine.
Douglas Gregor1931b442009-02-03 00:34:39 +0000972 } else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) {
973 // This is a type that showed up in an
974 // elaborated-type-specifier inside the anonymous struct or
975 // union, but which actually declares a type outside of the
976 // anonymous struct or union. It's okay.
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000977 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
978 if (!MemRecord->isAnonymousStructOrUnion() &&
979 MemRecord->getDeclName()) {
980 // This is a nested type declaration.
981 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
982 << (int)Record->isUnion();
983 Invalid = true;
984 }
985 } else {
986 // We have something that isn't a non-static data
987 // member. Complain about it.
988 unsigned DK = diag::err_anonymous_record_bad_member;
989 if (isa<TypeDecl>(*Mem))
990 DK = diag::err_anonymous_record_with_type;
991 else if (isa<FunctionDecl>(*Mem))
992 DK = diag::err_anonymous_record_with_function;
993 else if (isa<VarDecl>(*Mem))
994 DK = diag::err_anonymous_record_with_static;
995 Diag((*Mem)->getLocation(), DK)
996 << (int)Record->isUnion();
997 Invalid = true;
998 }
999 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001000 } else {
1001 // FIXME: Check GNU C semantics
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001002 if (Record->isUnion() && !Owner->isRecord()) {
1003 Diag(Record->getLocation(), diag::err_anonymous_union_not_member)
1004 << (int)getLangOptions().CPlusPlus;
1005 Invalid = true;
1006 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001007 }
1008
1009 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001010 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
1011 << (int)getLangOptions().CPlusPlus;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001012 Invalid = true;
1013 }
1014
1015 // Create a declaration for this anonymous struct/union.
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001016 NamedDecl *Anon = 0;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001017 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
1018 Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
1019 /*IdentifierInfo=*/0,
1020 Context.getTypeDeclType(Record),
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001021 /*BitWidth=*/0, /*Mutable=*/false);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001022 Anon->setAccess(AS_public);
1023 if (getLangOptions().CPlusPlus)
1024 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001025 } else {
1026 VarDecl::StorageClass SC;
1027 switch (DS.getStorageClassSpec()) {
1028 default: assert(0 && "Unknown storage class!");
1029 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1030 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1031 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1032 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1033 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1034 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1035 case DeclSpec::SCS_mutable:
1036 // mutable can only appear on non-static class members, so it's always
1037 // an error here
1038 Diag(Record->getLocation(), diag::err_mutable_nonmember);
1039 Invalid = true;
1040 SC = VarDecl::None;
1041 break;
1042 }
1043
1044 Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
1045 /*IdentifierInfo=*/0,
1046 Context.getTypeDeclType(Record),
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001047 SC, DS.getSourceRange().getBegin());
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001048 }
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001049 Anon->setImplicit();
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001050
1051 // Add the anonymous struct/union object to the current
1052 // context. We'll be referencing this object when we refer to one of
1053 // its members.
Douglas Gregor482b77d2009-01-12 23:27:07 +00001054 Owner->addDecl(Anon);
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001055
1056 // Inject the members of the anonymous struct/union into the owning
1057 // context and into the identifier resolver chain for name lookup
1058 // purposes.
Douglas Gregor4920f1f2009-01-12 22:49:06 +00001059 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
1060 Invalid = true;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001061
1062 // Mark this as an anonymous struct/union type. Note that we do not
1063 // do this until after we have already checked and injected the
1064 // members of this anonymous struct/union type, because otherwise
1065 // the members could be injected twice: once by DeclContext when it
1066 // builds its lookup table, and once by
1067 // InjectAnonymousStructOrUnionMembers.
1068 Record->setAnonymousStructOrUnion(true);
1069
1070 if (Invalid)
1071 Anon->setInvalidDecl();
1072
1073 return Anon;
Reid Spencer5f016e22007-07-11 17:01:13 +00001074}
1075
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001076bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType,
1077 bool DirectInit) {
Steve Narofff0090632007-09-02 02:04:30 +00001078 // Get the type before calling CheckSingleAssignmentConstraints(), since
1079 // it can promote the expression.
Chris Lattner5cf216b2008-01-04 18:04:52 +00001080 QualType InitType = Init->getType();
Douglas Gregor45920e82008-12-19 17:40:08 +00001081
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001082 if (getLangOptions().CPlusPlus) {
1083 // FIXME: I dislike this error message. A lot.
1084 if (PerformImplicitConversion(Init, DeclType, "initializing", DirectInit))
1085 return Diag(Init->getSourceRange().getBegin(),
1086 diag::err_typecheck_convert_incompatible)
1087 << DeclType << Init->getType() << "initializing"
1088 << Init->getSourceRange();
1089
1090 return false;
1091 }
Douglas Gregor45920e82008-12-19 17:40:08 +00001092
Chris Lattner5cf216b2008-01-04 18:04:52 +00001093 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
1094 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
1095 InitType, Init, "initializing");
Steve Narofff0090632007-09-02 02:04:30 +00001096}
1097
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001098bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001099 const ArrayType *AT = Context.getAsArrayType(DeclT);
1100
1101 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001102 // C99 6.7.8p14. We have an array of character type with unknown size
1103 // being initialized to a string literal.
1104 llvm::APSInt ConstVal(32);
1105 ConstVal = strLiteral->getByteLength() + 1;
1106 // Return a new array type (C99 6.7.8p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +00001107 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001108 ArrayType::Normal, 0);
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001109 } else {
1110 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001111 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001112 // FIXME: Avoid truncation for 64-bit length strings.
1113 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001114 Diag(strLiteral->getSourceRange().getBegin(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001115 diag::warn_initializer_string_for_char_array_too_long)
1116 << strLiteral->getSourceRange();
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001117 }
1118 // Set type from "char *" to "constant array of char".
1119 strLiteral->setType(DeclT);
1120 // For now, we always return false (meaning success).
1121 return false;
1122}
1123
1124StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001125 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Naroffa9960332008-01-25 00:51:06 +00001126 if (AT && AT->getElementType()->isCharType()) {
Anders Carlsson91b9f202009-01-24 17:47:50 +00001127 return dyn_cast<StringLiteral>(Init->IgnoreParens());
Steve Naroffa9960332008-01-25 00:51:06 +00001128 }
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001129 return 0;
1130}
1131
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001132bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
1133 SourceLocation InitLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001134 DeclarationName InitEntity,
1135 bool DirectInit) {
Douglas Gregor264c8ed2008-12-18 21:49:58 +00001136 if (DeclType->isDependentType() || Init->isTypeDependent())
1137 return false;
1138
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001139 // C++ [dcl.init.ref]p1:
Sebastian Redld14094d2008-11-24 20:06:50 +00001140 // A variable declared to be a T&, that is "reference to type T"
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001141 // (8.3.2), shall be initialized by an object, or function, of
1142 // type T or by an object that can be converted into a T.
1143 if (DeclType->isReferenceType())
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001144 return CheckReferenceInit(Init, DeclType, 0, false, DirectInit);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001145
Steve Naroffca107302008-01-21 23:53:58 +00001146 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
1147 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001148 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001149 return Diag(InitLoc, diag::err_variable_object_no_init)
1150 << VAT->getSizeExpr()->getSourceRange();
Steve Naroffca107302008-01-21 23:53:58 +00001151
Steve Naroff2fdc3742007-12-10 22:44:33 +00001152 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
1153 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +00001154 // FIXME: Handle wide strings
1155 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
1156 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedmana312ce22008-02-08 00:48:24 +00001157
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001158 // C++ [dcl.init]p14:
1159 // -- If the destination type is a (possibly cv-qualified) class
1160 // type:
1161 if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
1162 QualType DeclTypeC = Context.getCanonicalType(DeclType);
1163 QualType InitTypeC = Context.getCanonicalType(Init->getType());
1164
1165 // -- If the initialization is direct-initialization, or if it is
1166 // copy-initialization where the cv-unqualified version of the
1167 // source type is the same class as, or a derived class of, the
1168 // class of the destination, constructors are considered.
1169 if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
1170 IsDerivedFrom(InitTypeC, DeclTypeC)) {
1171 CXXConstructorDecl *Constructor
1172 = PerformInitializationByConstructor(DeclType, &Init, 1,
1173 InitLoc, Init->getSourceRange(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001174 InitEntity,
1175 DirectInit? IK_Direct : IK_Copy);
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001176 return Constructor == 0;
1177 }
1178
1179 // -- Otherwise (i.e., for the remaining copy-initialization
1180 // cases), user-defined conversion sequences that can
1181 // convert from the source type to the destination type or
1182 // (when a conversion function is used) to a derived class
1183 // thereof are enumerated as described in 13.3.1.4, and the
1184 // best one is chosen through overload resolution
1185 // (13.3). If the conversion cannot be done or is
1186 // ambiguous, the initialization is ill-formed. The
1187 // function selected is called with the initializer
1188 // expression as its argument; if the function is a
1189 // constructor, the call initializes a temporary of the
1190 // destination type.
1191 // FIXME: We're pretending to do copy elision here; return to
1192 // this when we have ASTs for such things.
Douglas Gregor45920e82008-12-19 17:40:08 +00001193 if (!PerformImplicitConversion(Init, DeclType, "initializing"))
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001194 return false;
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00001195
Douglas Gregor61366e92008-12-24 00:01:03 +00001196 if (InitEntity)
1197 return Diag(InitLoc, diag::err_cannot_initialize_decl)
1198 << InitEntity << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1199 << Init->getType() << Init->getSourceRange();
1200 else
1201 return Diag(InitLoc, diag::err_cannot_initialize_decl_noname)
1202 << DeclType << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1203 << Init->getType() << Init->getSourceRange();
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001204 }
1205
Steve Naroff1ac6fdd2008-09-29 20:07:05 +00001206 // C99 6.7.8p16.
Eli Friedmana312ce22008-02-08 00:48:24 +00001207 if (DeclType->isArrayType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001208 return Diag(Init->getLocStart(), diag::err_array_init_list_required)
1209 << Init->getSourceRange();
Eli Friedmana312ce22008-02-08 00:48:24 +00001210
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001211 return CheckSingleInitializer(Init, DeclType, DirectInit);
Douglas Gregor930d8b52009-01-30 22:09:00 +00001212 }
Eli Friedmane6f058f2008-06-06 19:40:52 +00001213
Douglas Gregorc34ee5e2009-01-29 00:45:39 +00001214 bool hadError = CheckInitList(InitList, DeclType);
1215 Init = InitList;
1216 return hadError;
Steve Narofff0090632007-09-02 02:04:30 +00001217}
1218
Douglas Gregor10bd3682008-11-17 22:58:34 +00001219/// GetNameForDeclarator - Determine the full declaration name for the
1220/// given Declarator.
1221DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1222 switch (D.getKind()) {
1223 case Declarator::DK_Abstract:
1224 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
1225 return DeclarationName();
1226
1227 case Declarator::DK_Normal:
1228 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
1229 return DeclarationName(D.getIdentifier());
1230
1231 case Declarator::DK_Constructor: {
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00001232 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor10bd3682008-11-17 22:58:34 +00001233 Ty = Context.getCanonicalType(Ty);
1234 return Context.DeclarationNames.getCXXConstructorName(Ty);
1235 }
1236
1237 case Declarator::DK_Destructor: {
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00001238 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor10bd3682008-11-17 22:58:34 +00001239 Ty = Context.getCanonicalType(Ty);
1240 return Context.DeclarationNames.getCXXDestructorName(Ty);
1241 }
1242
1243 case Declarator::DK_Conversion: {
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00001244 // FIXME: We'd like to keep the non-canonical type for diagnostics!
Douglas Gregor10bd3682008-11-17 22:58:34 +00001245 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1246 Ty = Context.getCanonicalType(Ty);
1247 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
1248 }
Douglas Gregore94ca9e42008-11-18 14:39:36 +00001249
1250 case Declarator::DK_Operator:
1251 assert(D.getIdentifier() == 0 && "operator names have no identifier");
1252 return Context.DeclarationNames.getCXXOperatorName(
1253 D.getOverloadedOperator());
Douglas Gregor10bd3682008-11-17 22:58:34 +00001254 }
1255
1256 assert(false && "Unknown name kind");
1257 return DeclarationName();
1258}
1259
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001260/// isNearlyMatchingFunction - Determine whether the C++ functions
1261/// Declaration and Definition are "nearly" matching. This heuristic
1262/// is used to improve diagnostics in the case where an out-of-line
1263/// function definition doesn't match any declaration within
1264/// the class or namespace.
1265static bool isNearlyMatchingFunction(ASTContext &Context,
1266 FunctionDecl *Declaration,
1267 FunctionDecl *Definition) {
Douglas Gregor584049d2008-12-15 23:53:10 +00001268 if (Declaration->param_size() != Definition->param_size())
1269 return false;
1270 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1271 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1272 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1273
1274 DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType());
1275 DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType());
1276 if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType())
1277 return false;
1278 }
1279
1280 return true;
1281}
1282
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001283Sema::DeclTy *
Douglas Gregor584049d2008-12-15 23:53:10 +00001284Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1285 bool IsFunctionDefinition) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001286 NamedDecl *LastDeclarator = dyn_cast_or_null<NamedDecl>((Decl *)lastDecl);
Douglas Gregor10bd3682008-11-17 22:58:34 +00001287 DeclarationName Name = GetNameForDeclarator(D);
1288
Chris Lattnere80a59c2007-07-25 00:24:17 +00001289 // All of these full declarators require an identifier. If it doesn't have
1290 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor10bd3682008-11-17 22:58:34 +00001291 if (!Name) {
Chris Lattner1f6f54b2008-11-11 06:13:16 +00001292 if (!D.getInvalidType()) // Reject this if we think it is valid.
1293 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001294 diag::err_declarator_need_ident)
1295 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattnere80a59c2007-07-25 00:24:17 +00001296 return 0;
1297 }
1298
Chris Lattner31e05722007-08-26 06:24:45 +00001299 // The scope passed in may not be a decl scope. Zip up the scope tree until
1300 // we find one that is.
Douglas Gregor44b43212008-12-11 16:49:14 +00001301 while ((S->getFlags() & Scope::DeclScope) == 0 ||
Douglas Gregoraaba5e32009-02-04 19:02:06 +00001302 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattner31e05722007-08-26 06:24:45 +00001303 S = S->getParent();
1304
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001305 DeclContext *DC;
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001306 NamedDecl *PrevDecl;
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001307 NamedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +00001308 bool InvalidDecl = false;
Douglas Gregorcda9c672009-02-16 17:45:42 +00001309
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001310 // See if this is a redefinition of a variable in the same scope.
Douglas Gregor4c921ae2009-01-30 01:04:22 +00001311 if (!D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001312 DC = CurContext;
Douglas Gregor9add3172009-02-17 03:23:10 +00001313 PrevDecl = LookupName(S, Name, LookupOrdinaryName, true,
1314 D.getDeclSpec().getStorageClassSpec() !=
1315 DeclSpec::SCS_static,
Douglas Gregor3e41d602009-02-13 23:20:09 +00001316 D.getIdentifierLoc());
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001317 } else { // Something like "int foo::x;"
1318 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregor3e41d602009-02-13 23:20:09 +00001319 PrevDecl = LookupQualifiedName(DC, Name, LookupOrdinaryName, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001320
1321 // C++ 7.3.1.2p2:
1322 // Members (including explicit specializations of templates) of a named
1323 // namespace can also be defined outside that namespace by explicit
1324 // qualification of the name being defined, provided that the entity being
1325 // defined was already declared in the namespace and the definition appears
1326 // after the point of declaration in a namespace that encloses the
1327 // declarations namespace.
1328 //
Douglas Gregor584049d2008-12-15 23:53:10 +00001329 // Note that we only check the context at this point. We don't yet
1330 // have enough information to make sure that PrevDecl is actually
1331 // the declaration we want to match. For example, given:
1332 //
Douglas Gregor9d350972008-12-12 08:25:50 +00001333 // class X {
1334 // void f();
Douglas Gregor584049d2008-12-15 23:53:10 +00001335 // void f(float);
Douglas Gregor9d350972008-12-12 08:25:50 +00001336 // };
1337 //
Douglas Gregor584049d2008-12-15 23:53:10 +00001338 // void X::f(int) { } // ill-formed
1339 //
1340 // In this case, PrevDecl will point to the overload set
1341 // containing the two f's declared in X, but neither of them
1342 // matches.
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001343
1344 // First check whether we named the global scope.
1345 if (isa<TranslationUnitDecl>(DC)) {
1346 Diag(D.getIdentifierLoc(), diag::err_invalid_declarator_global_scope)
1347 << Name << D.getCXXScopeSpec().getRange();
1348 } else if (!CurContext->Encloses(DC)) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001349 // The qualifying scope doesn't enclose the original declaration.
1350 // Emit diagnostic based on current scope.
1351 SourceLocation L = D.getIdentifierLoc();
1352 SourceRange R = D.getCXXScopeSpec().getRange();
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001353 if (isa<FunctionDecl>(CurContext))
Chris Lattner011bb4e2008-11-23 20:28:15 +00001354 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001355 else
Chris Lattner011bb4e2008-11-23 20:28:15 +00001356 Diag(L, diag::err_invalid_declarator_scope)
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001357 << Name << cast<NamedDecl>(DC) << R;
Douglas Gregor44b43212008-12-11 16:49:14 +00001358 InvalidDecl = true;
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001359 }
1360 }
1361
Douglas Gregorf57172b2008-12-08 18:40:42 +00001362 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00001363 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor898574e2008-12-05 23:32:09 +00001364 InvalidDecl = InvalidDecl
1365 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregor72c3f312008-12-05 18:15:24 +00001366 // Just pretend that we didn't see the previous declaration.
1367 PrevDecl = 0;
1368 }
1369
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001370 // In C++, the previous declaration we find might be a tag type
1371 // (class or enum). In this case, the new declaration will hide the
Douglas Gregor66973122009-01-28 17:15:10 +00001372 // tag type. Note that this does does not apply if we're declaring a
1373 // typedef (C++ [dcl.typedef]p4).
1374 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag &&
1375 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
Douglas Gregor2ce52f32008-04-13 21:07:44 +00001376 PrevDecl = 0;
1377
Chris Lattner41af0932007-11-14 06:34:38 +00001378 QualType R = GetTypeForDeclarator(D, S);
Chris Lattner83aa61f2009-02-19 23:13:55 +00001379 if (R.isNull()) {
1380 InvalidDecl = true;
1381 R = Context.IntTy;
1382 }
Chris Lattner41af0932007-11-14 06:34:38 +00001383
Douglas Gregorcda9c672009-02-16 17:45:42 +00001384 bool Redeclaration = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001385 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00001386 New = ActOnTypedefDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregorcda9c672009-02-16 17:45:42 +00001387 InvalidDecl, Redeclaration);
Chris Lattner41af0932007-11-14 06:34:38 +00001388 } else if (R.getTypePtr()->isFunctionType()) {
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001389 New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregorcda9c672009-02-16 17:45:42 +00001390 IsFunctionDefinition, InvalidDecl,
1391 Redeclaration);
Reid Spencer5f016e22007-07-11 17:01:13 +00001392 } else {
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00001393 New = ActOnVariableDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregorcda9c672009-02-16 17:45:42 +00001394 InvalidDecl, Redeclaration);
Reid Spencer5f016e22007-07-11 17:01:13 +00001395 }
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001396
1397 if (New == 0)
1398 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001399
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +00001400 // Set the lexical context. If the declarator has a C++ scope specifier, the
1401 // lexical context will be different from the semantic context.
1402 New->setLexicalDeclContext(CurContext);
1403
Douglas Gregorcda9c672009-02-16 17:45:42 +00001404 // If this has an identifier and is not an invalid redeclaration,
1405 // add it to the scope stack.
1406 if (Name && !(Redeclaration && InvalidDecl))
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001407 PushOnScopeChains(New, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001408 // If any semantic error occurred, mark the decl as invalid.
1409 if (D.getInvalidType() || InvalidDecl)
1410 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001411
1412 return New;
1413}
1414
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001415NamedDecl*
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00001416Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001417 QualType R, Decl* LastDeclarator,
Douglas Gregorcda9c672009-02-16 17:45:42 +00001418 Decl* PrevDecl, bool& InvalidDecl,
1419 bool &Redeclaration) {
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00001420 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1421 if (D.getCXXScopeSpec().isSet()) {
1422 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1423 << D.getCXXScopeSpec().getRange();
1424 InvalidDecl = true;
1425 // Pretend we didn't see the scope specifier.
1426 DC = 0;
1427 }
1428
1429 // Check that there are no default arguments (C++ only).
1430 if (getLangOptions().CPlusPlus)
1431 CheckExtraCXXDefaultArguments(D);
1432
1433 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
1434 if (!NewTD) return 0;
1435
1436 // Handle attributes prior to checking for duplicates in MergeVarDecl
1437 ProcessDeclAttributes(NewTD, D);
1438 // Merge the decl with the existing one if appropriate. If the decl is
1439 // in an outer scope, it isn't the same thing.
1440 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Douglas Gregorcda9c672009-02-16 17:45:42 +00001441 Redeclaration = true;
1442 if (MergeTypeDefDecl(NewTD, PrevDecl))
1443 InvalidDecl = true;
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00001444 }
1445
1446 if (S->getFnParent() == 0) {
1447 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1448 // then it shall have block scope.
1449 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
1450 if (NewTD->getUnderlyingType()->isVariableArrayType())
1451 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1452 else
1453 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1454
1455 InvalidDecl = true;
1456 }
1457 }
1458 return NewTD;
1459}
1460
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001461NamedDecl*
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00001462Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001463 QualType R, Decl* LastDeclarator,
Douglas Gregorcda9c672009-02-16 17:45:42 +00001464 Decl* PrevDecl, bool& InvalidDecl,
1465 bool &Redeclaration) {
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00001466 DeclarationName Name = GetNameForDeclarator(D);
1467
1468 // Check that there are no default arguments (C++ only).
1469 if (getLangOptions().CPlusPlus)
1470 CheckExtraCXXDefaultArguments(D);
1471
1472 if (R.getTypePtr()->isObjCInterfaceType()) {
Steve Naroffccef3712009-02-20 22:59:16 +00001473 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object);
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00001474 InvalidDecl = true;
1475 }
1476
1477 VarDecl *NewVD;
1478 VarDecl::StorageClass SC;
1479 switch (D.getDeclSpec().getStorageClassSpec()) {
1480 default: assert(0 && "Unknown storage class!");
1481 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1482 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1483 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1484 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1485 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1486 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1487 case DeclSpec::SCS_mutable:
1488 // mutable can only appear on non-static class members, so it's always
1489 // an error here
1490 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1491 InvalidDecl = true;
1492 SC = VarDecl::None;
1493 break;
1494 }
1495
1496 IdentifierInfo *II = Name.getAsIdentifierInfo();
1497 if (!II) {
1498 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1499 << Name.getAsString();
1500 return 0;
1501 }
1502
1503 if (DC->isRecord()) {
1504 // This is a static data member for a C++ class.
1505 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
1506 D.getIdentifierLoc(), II,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001507 R);
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00001508 } else {
1509 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
1510 if (S->getFnParent() == 0) {
1511 // C99 6.9p2: The storage-class specifiers auto and register shall not
1512 // appear in the declaration specifiers in an external declaration.
1513 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1514 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
1515 InvalidDecl = true;
1516 }
1517 }
1518 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001519 II, R, SC,
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00001520 // FIXME: Move to DeclGroup...
1521 D.getDeclSpec().getSourceRange().getBegin());
1522 NewVD->setThreadSpecified(ThreadSpecified);
1523 }
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001524 NewVD->setNextDeclarator(LastDeclarator);
1525
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00001526 // Handle attributes prior to checking for duplicates in MergeVarDecl
1527 ProcessDeclAttributes(NewVD, D);
1528
1529 // Handle GNU asm-label extension (encoded as an attribute).
1530 if (Expr *E = (Expr*) D.getAsmLabel()) {
1531 // The parser guarantees this is a string.
1532 StringLiteral *SE = cast<StringLiteral>(E);
1533 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1534 SE->getByteLength())));
1535 }
1536
1537 // Emit an error if an address space was applied to decl with local storage.
1538 // This includes arrays of objects with address space qualifiers, but not
1539 // automatic variables that point to other address spaces.
1540 // ISO/IEC TR 18037 S5.1.2
1541 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1542 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1543 InvalidDecl = true;
1544 }
1545 // Merge the decl with the existing one if appropriate. If the decl is
1546 // in an outer scope, it isn't the same thing.
1547 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1548 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1549 // The user tried to define a non-static data member
1550 // out-of-line (C++ [dcl.meaning]p1).
1551 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1552 << D.getCXXScopeSpec().getRange();
1553 NewVD->Destroy(Context);
1554 return 0;
1555 }
1556
Douglas Gregorcda9c672009-02-16 17:45:42 +00001557 Redeclaration = true;
1558 if (MergeVarDecl(NewVD, PrevDecl))
1559 InvalidDecl = true;
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00001560
1561 if (D.getCXXScopeSpec().isSet()) {
1562 // No previous declaration in the qualifying scope.
1563 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1564 << Name << D.getCXXScopeSpec().getRange();
1565 InvalidDecl = true;
1566 }
1567 }
1568 return NewVD;
1569}
1570
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001571NamedDecl*
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001572Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001573 QualType R, Decl *LastDeclarator,
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001574 Decl* PrevDecl, bool IsFunctionDefinition,
Douglas Gregorcda9c672009-02-16 17:45:42 +00001575 bool& InvalidDecl, bool &Redeclaration) {
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001576 assert(R.getTypePtr()->isFunctionType());
1577
1578 DeclarationName Name = GetNameForDeclarator(D);
1579 FunctionDecl::StorageClass SC = FunctionDecl::None;
1580 switch (D.getDeclSpec().getStorageClassSpec()) {
1581 default: assert(0 && "Unknown storage class!");
1582 case DeclSpec::SCS_auto:
1583 case DeclSpec::SCS_register:
1584 case DeclSpec::SCS_mutable:
1585 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func);
1586 InvalidDecl = true;
1587 break;
1588 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1589 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
1590 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
1591 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
1592 }
1593
1594 bool isInline = D.getDeclSpec().isInlineSpecified();
1595 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1596 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1597
1598 FunctionDecl *NewFD;
1599 if (D.getKind() == Declarator::DK_Constructor) {
1600 // This is a C++ constructor declaration.
1601 assert(DC->isRecord() &&
1602 "Constructors can only be declared in a member context");
1603
1604 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
1605
1606 // Create the new declaration
1607 NewFD = CXXConstructorDecl::Create(Context,
1608 cast<CXXRecordDecl>(DC),
1609 D.getIdentifierLoc(), Name, R,
1610 isExplicit, isInline,
1611 /*isImplicitlyDeclared=*/false);
1612
1613 if (InvalidDecl)
1614 NewFD->setInvalidDecl();
1615 } else if (D.getKind() == Declarator::DK_Destructor) {
1616 // This is a C++ destructor declaration.
1617 if (DC->isRecord()) {
1618 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
1619
1620 NewFD = CXXDestructorDecl::Create(Context,
1621 cast<CXXRecordDecl>(DC),
1622 D.getIdentifierLoc(), Name, R,
1623 isInline,
1624 /*isImplicitlyDeclared=*/false);
1625
1626 if (InvalidDecl)
1627 NewFD->setInvalidDecl();
1628 } else {
1629 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
1630
1631 // Create a FunctionDecl to satisfy the function definition parsing
1632 // code path.
1633 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001634 Name, R, SC, isInline,
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001635 // FIXME: Move to DeclGroup...
1636 D.getDeclSpec().getSourceRange().getBegin());
1637 InvalidDecl = true;
1638 NewFD->setInvalidDecl();
1639 }
1640 } else if (D.getKind() == Declarator::DK_Conversion) {
1641 if (!DC->isRecord()) {
1642 Diag(D.getIdentifierLoc(),
1643 diag::err_conv_function_not_member);
1644 return 0;
1645 } else {
1646 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
1647
1648 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
1649 D.getIdentifierLoc(), Name, R,
1650 isInline, isExplicit);
1651
1652 if (InvalidDecl)
1653 NewFD->setInvalidDecl();
1654 }
1655 } else if (DC->isRecord()) {
1656 // This is a C++ method declaration.
1657 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
1658 D.getIdentifierLoc(), Name, R,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001659 (SC == FunctionDecl::Static), isInline);
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001660 } else {
1661 NewFD = FunctionDecl::Create(Context, DC,
1662 D.getIdentifierLoc(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001663 Name, R, SC, isInline,
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001664 // FIXME: Move to DeclGroup...
1665 D.getDeclSpec().getSourceRange().getBegin());
1666 }
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001667 NewFD->setNextDeclarator(LastDeclarator);
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001668
1669 // Set the lexical context. If the declarator has a C++
1670 // scope specifier, the lexical context will be different
1671 // from the semantic context.
1672 NewFD->setLexicalDeclContext(CurContext);
1673
1674 // Handle GNU asm-label extension (encoded as an attribute).
1675 if (Expr *E = (Expr*) D.getAsmLabel()) {
1676 // The parser guarantees this is a string.
1677 StringLiteral *SE = cast<StringLiteral>(E);
1678 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1679 SE->getByteLength())));
1680 }
1681
1682 // Copy the parameter declarations from the declarator D to
1683 // the function declaration NewFD, if they are available.
1684 if (D.getNumTypeObjects() > 0) {
1685 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1686
1687 // Create Decl objects for each parameter, adding them to the
1688 // FunctionDecl.
1689 llvm::SmallVector<ParmVarDecl*, 16> Params;
1690
1691 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1692 // function that takes no arguments, not a function that takes a
1693 // single void argument.
1694 // We let through "const void" here because Sema::GetTypeForDeclarator
1695 // already checks for that case.
1696 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1697 FTI.ArgInfo[0].Param &&
1698 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1699 // empty arg list, don't push any params.
1700 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1701
1702 // In C++, the empty parameter-type-list must be spelled "void"; a
1703 // typedef of void is not permitted.
1704 if (getLangOptions().CPlusPlus &&
1705 Param->getType().getUnqualifiedType() != Context.VoidTy) {
1706 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1707 }
1708 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1709 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1710 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1711 }
1712
1713 NewFD->setParams(Context, &Params[0], Params.size());
1714 } else if (R->getAsTypedefType()) {
1715 // When we're declaring a function with a typedef, as in the
1716 // following example, we'll need to synthesize (unnamed)
1717 // parameters for use in the declaration.
1718 //
1719 // @code
1720 // typedef void fn(int);
1721 // fn f;
1722 // @endcode
1723 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1724 if (!FT) {
1725 // This is a typedef of a function with no prototype, so we
1726 // don't need to do anything.
1727 } else if ((FT->getNumArgs() == 0) ||
1728 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1729 FT->getArgType(0)->isVoidType())) {
1730 // This is a zero-argument function. We don't need to do anything.
1731 } else {
1732 // Synthesize a parameter for each argument type.
1733 llvm::SmallVector<ParmVarDecl*, 16> Params;
1734 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1735 ArgType != FT->arg_type_end(); ++ArgType) {
Douglas Gregor450da982009-02-16 20:58:07 +00001736 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC,
1737 SourceLocation(), 0,
1738 *ArgType, VarDecl::None,
1739 0);
1740 Param->setImplicit();
1741 Params.push_back(Param);
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001742 }
1743
1744 NewFD->setParams(Context, &Params[0], Params.size());
1745 }
1746 }
1747
1748 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1749 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
1750 else if (isa<CXXDestructorDecl>(NewFD)) {
1751 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1752 Record->setUserDeclaredDestructor(true);
1753 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1754 // user-defined destructor.
1755 Record->setPOD(false);
1756 } else if (CXXConversionDecl *Conversion =
1757 dyn_cast<CXXConversionDecl>(NewFD))
1758 ActOnConversionDeclarator(Conversion);
1759
1760 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1761 if (NewFD->isOverloadedOperator() &&
1762 CheckOverloadedOperatorDeclaration(NewFD))
1763 NewFD->setInvalidDecl();
1764
1765 // Merge the decl with the existing one if appropriate. Since C functions
1766 // are in a flat namespace, make sure we consider decls in outer scopes.
Douglas Gregorf9201e02009-02-11 23:02:49 +00001767 bool OverloadableAttrRequired = false;
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001768 if (PrevDecl &&
1769 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001770 // Determine whether NewFD is an overload of PrevDecl or
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001771 // a declaration that requires merging. If it's an overload,
1772 // there's no more work to do here; we'll just add the new
1773 // function to the scope.
1774 OverloadedFunctionDecl::function_iterator MatchedDecl;
Douglas Gregorae170942009-02-13 00:26:38 +00001775
1776 if (!getLangOptions().CPlusPlus &&
Douglas Gregorc6666f82009-02-18 06:34:51 +00001777 AllowOverloadingOfFunction(PrevDecl, Context)) {
Douglas Gregorae170942009-02-13 00:26:38 +00001778 OverloadableAttrRequired = true;
1779
Douglas Gregorc6666f82009-02-18 06:34:51 +00001780 // Functions marked "overloadable" must have a prototype (that
1781 // we can't get through declaration merging).
1782 if (!R->getAsFunctionTypeProto()) {
1783 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_no_prototype)
1784 << NewFD;
1785 InvalidDecl = true;
1786 Redeclaration = true;
1787
1788 // Turn this into a variadic function with no parameters.
1789 R = Context.getFunctionType(R->getAsFunctionType()->getResultType(),
1790 0, 0, true, 0);
1791 NewFD->setType(R);
1792 }
1793 }
1794
1795 if (PrevDecl &&
1796 (!AllowOverloadingOfFunction(PrevDecl, Context) ||
1797 !IsOverload(NewFD, PrevDecl, MatchedDecl))) {
Douglas Gregorcda9c672009-02-16 17:45:42 +00001798 Redeclaration = true;
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001799 Decl *OldDecl = PrevDecl;
1800
1801 // If PrevDecl was an overloaded function, extract the
1802 // FunctionDecl that matched.
1803 if (isa<OverloadedFunctionDecl>(PrevDecl))
1804 OldDecl = *MatchedDecl;
1805
1806 // NewFD and PrevDecl represent declarations that need to be
1807 // merged.
Douglas Gregorcda9c672009-02-16 17:45:42 +00001808 if (MergeFunctionDecl(NewFD, OldDecl))
1809 InvalidDecl = true;
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001810
Douglas Gregorcda9c672009-02-16 17:45:42 +00001811 if (!InvalidDecl) {
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001812 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1813
1814 // An out-of-line member function declaration must also be a
1815 // definition (C++ [dcl.meaning]p1).
1816 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1817 !InvalidDecl) {
1818 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1819 << D.getCXXScopeSpec().getRange();
1820 NewFD->setInvalidDecl();
1821 }
1822 }
1823 }
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001824 }
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001825
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001826 if (D.getCXXScopeSpec().isSet() &&
1827 (!PrevDecl || !Redeclaration)) {
1828 // The user tried to provide an out-of-line definition for a
1829 // function that is a member of a class or namespace, but there
1830 // was no such member function declared (C++ [class.mfct]p2,
1831 // C++ [namespace.memdef]p2). For example:
1832 //
1833 // class X {
1834 // void f() const;
1835 // };
1836 //
1837 // void X::f() { } // ill-formed
1838 //
1839 // Complain about this problem, and attempt to suggest close
1840 // matches (e.g., those that differ only in cv-qualifiers and
1841 // whether the parameter types are references).
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001842 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
Douglas Gregor4b99bae2009-02-06 22:58:38 +00001843 << cast<NamedDecl>(DC) << D.getCXXScopeSpec().getRange();
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001844 InvalidDecl = true;
1845
1846 LookupResult Prev = LookupQualifiedName(DC, Name, LookupOrdinaryName,
1847 true);
1848 assert(!Prev.isAmbiguous() &&
1849 "Cannot have an ambiguity in previous-declaration lookup");
1850 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
1851 Func != FuncEnd; ++Func) {
1852 if (isa<FunctionDecl>(*Func) &&
1853 isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD))
1854 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001855 }
Douglas Gregor4ce205f2009-02-06 17:46:57 +00001856
1857 PrevDecl = 0;
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001858 }
Douglas Gregord8635172009-02-02 21:35:47 +00001859
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001860 // Handle attributes. We need to have merged decls when handling attributes
1861 // (for example to check for conflicts, etc).
1862 ProcessDeclAttributes(NewFD, D);
Douglas Gregor3c385e52009-02-14 18:57:46 +00001863 AddKnownFunctionAttributes(NewFD);
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001864
Douglas Gregorf9201e02009-02-11 23:02:49 +00001865 if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) {
1866 // If a function name is overloadable in C, then every function
1867 // with that name must be marked "overloadable".
1868 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
Douglas Gregorae170942009-02-13 00:26:38 +00001869 << Redeclaration << NewFD;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001870 if (PrevDecl)
1871 Diag(PrevDecl->getLocation(),
1872 diag::note_attribute_overloadable_prev_overload);
1873 NewFD->addAttr(new OverloadableAttr);
1874 }
1875
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001876 if (getLangOptions().CPlusPlus) {
Sebastian Redl00d50742009-02-08 14:56:26 +00001877 // In C++, check default arguments now that we have merged decls. Unless
1878 // the lexical context is the class, because in this case this is done
1879 // during delayed parsing anyway.
1880 if (!CurContext->isRecord())
1881 CheckCXXDefaultArguments(NewFD);
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00001882
1883 // An out-of-line member function declaration must also be a
1884 // definition (C++ [dcl.meaning]p1).
1885 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
1886 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1887 << D.getCXXScopeSpec().getRange();
1888 InvalidDecl = true;
1889 }
1890 }
1891 return NewFD;
1892}
1893
Steve Naroff6594a702008-10-27 11:34:16 +00001894void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001895 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1896 << Init->getSourceRange();
Steve Naroff6594a702008-10-27 11:34:16 +00001897}
1898
Eli Friedmanc594b322008-05-20 13:48:25 +00001899bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1900 switch (Init->getStmtClass()) {
1901 default:
Steve Naroff6594a702008-10-27 11:34:16 +00001902 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001903 return true;
1904 case Expr::ParenExprClass: {
1905 const ParenExpr* PE = cast<ParenExpr>(Init);
1906 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1907 }
1908 case Expr::CompoundLiteralExprClass:
1909 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregor1a49af92009-01-06 05:10:23 +00001910 case Expr::DeclRefExprClass:
1911 case Expr::QualifiedDeclRefExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00001912 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman97c0a392008-05-21 03:39:11 +00001913 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1914 if (VD->hasGlobalStorage())
1915 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00001916 InitializerElementNotConstant(Init);
Eli Friedman97c0a392008-05-21 03:39:11 +00001917 return true;
1918 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001919 if (isa<FunctionDecl>(D))
1920 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00001921 InitializerElementNotConstant(Init);
Steve Naroffd0091aa2008-01-10 22:15:12 +00001922 return true;
1923 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001924 case Expr::MemberExprClass: {
1925 const MemberExpr *M = cast<MemberExpr>(Init);
1926 if (M->isArrow())
1927 return CheckAddressConstantExpression(M->getBase());
1928 return CheckAddressConstantExpressionLValue(M->getBase());
1929 }
1930 case Expr::ArraySubscriptExprClass: {
1931 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1932 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1933 return CheckAddressConstantExpression(ASE->getBase()) ||
1934 CheckArithmeticConstantExpression(ASE->getIdx());
1935 }
1936 case Expr::StringLiteralClass:
Chris Lattnerd9f69102008-08-10 01:53:14 +00001937 case Expr::PredefinedExprClass:
Eli Friedmanc594b322008-05-20 13:48:25 +00001938 return false;
1939 case Expr::UnaryOperatorClass: {
1940 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1941
1942 // C99 6.6p9
1943 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman97c0a392008-05-21 03:39:11 +00001944 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedmanc594b322008-05-20 13:48:25 +00001945
Steve Naroff6594a702008-10-27 11:34:16 +00001946 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001947 return true;
1948 }
1949 }
1950}
1951
1952bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1953 switch (Init->getStmtClass()) {
1954 default:
Steve Naroff6594a702008-10-27 11:34:16 +00001955 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001956 return true;
Chris Lattner506ff882008-10-06 07:26:43 +00001957 case Expr::ParenExprClass:
1958 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedmanc594b322008-05-20 13:48:25 +00001959 case Expr::StringLiteralClass:
1960 case Expr::ObjCStringLiteralClass:
1961 return false;
Chris Lattner506ff882008-10-06 07:26:43 +00001962 case Expr::CallExprClass:
Douglas Gregorb4609802008-11-14 16:09:21 +00001963 case Expr::CXXOperatorCallExprClass:
Chris Lattner506ff882008-10-06 07:26:43 +00001964 // __builtin___CFStringMakeConstantString is a valid constant l-value.
Douglas Gregor3c385e52009-02-14 18:57:46 +00001965 if (cast<CallExpr>(Init)->isBuiltinCall(Context) ==
Chris Lattner506ff882008-10-06 07:26:43 +00001966 Builtin::BI__builtin___CFStringMakeConstantString)
1967 return false;
1968
Steve Naroff6594a702008-10-27 11:34:16 +00001969 InitializerElementNotConstant(Init);
Chris Lattner506ff882008-10-06 07:26:43 +00001970 return true;
1971
Eli Friedmanc594b322008-05-20 13:48:25 +00001972 case Expr::UnaryOperatorClass: {
1973 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1974
1975 // C99 6.6p9
1976 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1977 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1978
1979 if (Exp->getOpcode() == UnaryOperator::Extension)
1980 return CheckAddressConstantExpression(Exp->getSubExpr());
1981
Steve Naroff6594a702008-10-27 11:34:16 +00001982 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00001983 return true;
1984 }
1985 case Expr::BinaryOperatorClass: {
1986 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1987 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1988
1989 Expr *PExp = Exp->getLHS();
1990 Expr *IExp = Exp->getRHS();
1991 if (IExp->getType()->isPointerType())
1992 std::swap(PExp, IExp);
1993
1994 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1995 return CheckAddressConstantExpression(PExp) ||
1996 CheckArithmeticConstantExpression(IExp);
1997 }
Eli Friedmanc3f07642008-08-25 20:46:57 +00001998 case Expr::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001999 case Expr::CStyleCastExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00002000 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedmanc3f07642008-08-25 20:46:57 +00002001 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
2002 // Check for implicit promotion
2003 if (SubExpr->getType()->isFunctionType() ||
2004 SubExpr->getType()->isArrayType())
2005 return CheckAddressConstantExpressionLValue(SubExpr);
2006 }
Eli Friedmanc594b322008-05-20 13:48:25 +00002007
2008 // Check for pointer->pointer cast
2009 if (SubExpr->getType()->isPointerType())
2010 return CheckAddressConstantExpression(SubExpr);
2011
Eli Friedmanc3f07642008-08-25 20:46:57 +00002012 if (SubExpr->getType()->isIntegralType()) {
2013 // Check for the special-case of a pointer->int->pointer cast;
2014 // this isn't standard, but some code requires it. See
2015 // PR2720 for an example.
2016 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
2017 if (SubCast->getSubExpr()->getType()->isPointerType()) {
2018 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
2019 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2020 if (IntWidth >= PointerWidth) {
2021 return CheckAddressConstantExpression(SubCast->getSubExpr());
2022 }
2023 }
2024 }
2025 }
2026 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedmanc594b322008-05-20 13:48:25 +00002027 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedmanc3f07642008-08-25 20:46:57 +00002028 }
Eli Friedmanc594b322008-05-20 13:48:25 +00002029
Steve Naroff6594a702008-10-27 11:34:16 +00002030 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002031 return true;
2032 }
2033 case Expr::ConditionalOperatorClass: {
2034 // FIXME: Should we pedwarn here?
2035 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
2036 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Naroff6594a702008-10-27 11:34:16 +00002037 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002038 return true;
2039 }
2040 if (CheckArithmeticConstantExpression(Exp->getCond()))
2041 return true;
2042 if (Exp->getLHS() &&
2043 CheckAddressConstantExpression(Exp->getLHS()))
2044 return true;
2045 return CheckAddressConstantExpression(Exp->getRHS());
2046 }
2047 case Expr::AddrLabelExprClass:
2048 return false;
2049 }
2050}
2051
Eli Friedman4caf0552008-06-09 05:05:07 +00002052static const Expr* FindExpressionBaseAddress(const Expr* E);
2053
2054static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
2055 switch (E->getStmtClass()) {
2056 default:
2057 return E;
2058 case Expr::ParenExprClass: {
2059 const ParenExpr* PE = cast<ParenExpr>(E);
2060 return FindExpressionBaseAddressLValue(PE->getSubExpr());
2061 }
2062 case Expr::MemberExprClass: {
2063 const MemberExpr *M = cast<MemberExpr>(E);
2064 if (M->isArrow())
2065 return FindExpressionBaseAddress(M->getBase());
2066 return FindExpressionBaseAddressLValue(M->getBase());
2067 }
2068 case Expr::ArraySubscriptExprClass: {
2069 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
2070 return FindExpressionBaseAddress(ASE->getBase());
2071 }
2072 case Expr::UnaryOperatorClass: {
2073 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2074
2075 if (Exp->getOpcode() == UnaryOperator::Deref)
2076 return FindExpressionBaseAddress(Exp->getSubExpr());
2077
2078 return E;
2079 }
2080 }
2081}
2082
2083static const Expr* FindExpressionBaseAddress(const Expr* E) {
2084 switch (E->getStmtClass()) {
2085 default:
2086 return E;
2087 case Expr::ParenExprClass: {
2088 const ParenExpr* PE = cast<ParenExpr>(E);
2089 return FindExpressionBaseAddress(PE->getSubExpr());
2090 }
2091 case Expr::UnaryOperatorClass: {
2092 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2093
2094 // C99 6.6p9
2095 if (Exp->getOpcode() == UnaryOperator::AddrOf)
2096 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
2097
2098 if (Exp->getOpcode() == UnaryOperator::Extension)
2099 return FindExpressionBaseAddress(Exp->getSubExpr());
2100
2101 return E;
2102 }
2103 case Expr::BinaryOperatorClass: {
2104 const BinaryOperator *Exp = cast<BinaryOperator>(E);
2105
2106 Expr *PExp = Exp->getLHS();
2107 Expr *IExp = Exp->getRHS();
2108 if (IExp->getType()->isPointerType())
2109 std::swap(PExp, IExp);
2110
2111 return FindExpressionBaseAddress(PExp);
2112 }
2113 case Expr::ImplicitCastExprClass: {
2114 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
2115
2116 // Check for implicit promotion
2117 if (SubExpr->getType()->isFunctionType() ||
2118 SubExpr->getType()->isArrayType())
2119 return FindExpressionBaseAddressLValue(SubExpr);
2120
2121 // Check for pointer->pointer cast
2122 if (SubExpr->getType()->isPointerType())
2123 return FindExpressionBaseAddress(SubExpr);
2124
2125 // We assume that we have an arithmetic expression here;
2126 // if we don't, we'll figure it out later
2127 return 0;
2128 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +00002129 case Expr::CStyleCastExprClass: {
Eli Friedman4caf0552008-06-09 05:05:07 +00002130 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
2131
2132 // Check for pointer->pointer cast
2133 if (SubExpr->getType()->isPointerType())
2134 return FindExpressionBaseAddress(SubExpr);
2135
2136 // We assume that we have an arithmetic expression here;
2137 // if we don't, we'll figure it out later
2138 return 0;
2139 }
2140 }
2141}
2142
Anders Carlsson51fe9962008-11-22 21:04:56 +00002143bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedmanc594b322008-05-20 13:48:25 +00002144 switch (Init->getStmtClass()) {
2145 default:
Steve Naroff6594a702008-10-27 11:34:16 +00002146 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002147 return true;
2148 case Expr::ParenExprClass: {
2149 const ParenExpr* PE = cast<ParenExpr>(Init);
2150 return CheckArithmeticConstantExpression(PE->getSubExpr());
2151 }
2152 case Expr::FloatingLiteralClass:
2153 case Expr::IntegerLiteralClass:
2154 case Expr::CharacterLiteralClass:
2155 case Expr::ImaginaryLiteralClass:
2156 case Expr::TypesCompatibleExprClass:
2157 case Expr::CXXBoolLiteralExprClass:
2158 return false;
Douglas Gregorb4609802008-11-14 16:09:21 +00002159 case Expr::CallExprClass:
2160 case Expr::CXXOperatorCallExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00002161 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002162
2163 // Allow any constant foldable calls to builtins.
Douglas Gregor3c385e52009-02-14 18:57:46 +00002164 if (CE->isBuiltinCall(Context) && CE->isEvaluatable(Context))
Eli Friedmanc594b322008-05-20 13:48:25 +00002165 return false;
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002166
Steve Naroff6594a702008-10-27 11:34:16 +00002167 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002168 return true;
2169 }
Douglas Gregor1a49af92009-01-06 05:10:23 +00002170 case Expr::DeclRefExprClass:
2171 case Expr::QualifiedDeclRefExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00002172 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2173 if (isa<EnumConstantDecl>(D))
2174 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00002175 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002176 return true;
2177 }
2178 case Expr::CompoundLiteralExprClass:
2179 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2180 // but vectors are allowed to be magic.
2181 if (Init->getType()->isVectorType())
2182 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00002183 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002184 return true;
2185 case Expr::UnaryOperatorClass: {
2186 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2187
2188 switch (Exp->getOpcode()) {
2189 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2190 // See C99 6.6p3.
2191 default:
Steve Naroff6594a702008-10-27 11:34:16 +00002192 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002193 return true;
Eli Friedmanc594b322008-05-20 13:48:25 +00002194 case UnaryOperator::OffsetOf:
Eli Friedmanc594b322008-05-20 13:48:25 +00002195 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2196 return false;
Steve Naroff6594a702008-10-27 11:34:16 +00002197 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002198 return true;
2199 case UnaryOperator::Extension:
2200 case UnaryOperator::LNot:
2201 case UnaryOperator::Plus:
2202 case UnaryOperator::Minus:
2203 case UnaryOperator::Not:
2204 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2205 }
2206 }
Sebastian Redl05189992008-11-11 17:56:53 +00002207 case Expr::SizeOfAlignOfExprClass: {
2208 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002209 // Special check for void types, which are allowed as an extension
Sebastian Redl05189992008-11-11 17:56:53 +00002210 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedmanc594b322008-05-20 13:48:25 +00002211 return false;
2212 // alignof always evaluates to a constant.
2213 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl05189992008-11-11 17:56:53 +00002214 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Naroff6594a702008-10-27 11:34:16 +00002215 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002216 return true;
2217 }
2218 return false;
2219 }
2220 case Expr::BinaryOperatorClass: {
2221 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2222
2223 if (Exp->getLHS()->getType()->isArithmeticType() &&
2224 Exp->getRHS()->getType()->isArithmeticType()) {
2225 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2226 CheckArithmeticConstantExpression(Exp->getRHS());
2227 }
2228
Eli Friedman4caf0552008-06-09 05:05:07 +00002229 if (Exp->getLHS()->getType()->isPointerType() &&
2230 Exp->getRHS()->getType()->isPointerType()) {
2231 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2232 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2233
2234 // Only allow a null (constant integer) base; we could
2235 // allow some additional cases if necessary, but this
2236 // is sufficient to cover offsetof-like constructs.
2237 if (!LHSBase && !RHSBase) {
2238 return CheckAddressConstantExpression(Exp->getLHS()) ||
2239 CheckAddressConstantExpression(Exp->getRHS());
2240 }
2241 }
2242
Steve Naroff6594a702008-10-27 11:34:16 +00002243 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002244 return true;
2245 }
2246 case Expr::ImplicitCastExprClass:
Douglas Gregor6eec8e82008-10-28 15:36:24 +00002247 case Expr::CStyleCastExprClass: {
Nuno Lopesff776452009-02-02 22:57:15 +00002248 const CastExpr *CE = cast<CastExpr>(Init);
2249 const Expr *SubExpr = CE->getSubExpr();
2250
Eli Friedman6d4abe12008-09-01 22:08:17 +00002251 if (SubExpr->getType()->isArithmeticType())
2252 return CheckArithmeticConstantExpression(SubExpr);
2253
Eli Friedmanb529d832008-09-02 09:37:00 +00002254 if (SubExpr->getType()->isPointerType()) {
2255 const Expr* Base = FindExpressionBaseAddress(SubExpr);
Nuno Lopesff776452009-02-02 22:57:15 +00002256 if (Base) {
2257 // the cast is only valid if done to a wide enough type
2258 if (Context.getTypeSize(CE->getType()) >=
2259 Context.getTypeSize(SubExpr->getType()))
2260 return false;
2261 } else {
2262 // If the pointer has a null base, this is an offsetof-like construct
2263 return CheckAddressConstantExpression(SubExpr);
2264 }
Eli Friedmanb529d832008-09-02 09:37:00 +00002265 }
2266
Steve Naroff6594a702008-10-27 11:34:16 +00002267 InitializerElementNotConstant(Init);
Eli Friedman6d4abe12008-09-01 22:08:17 +00002268 return true;
Eli Friedmanc594b322008-05-20 13:48:25 +00002269 }
2270 case Expr::ConditionalOperatorClass: {
2271 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner46cfefa2008-10-06 05:42:39 +00002272
2273 // If GNU extensions are disabled, we require all operands to be arithmetic
2274 // constant expressions.
2275 if (getLangOptions().NoExtensions) {
2276 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2277 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2278 CheckArithmeticConstantExpression(Exp->getRHS());
2279 }
2280
2281 // Otherwise, we have to emulate some of the behavior of fold here.
2282 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2283 // because it can constant fold things away. To retain compatibility with
2284 // GCC code, we see if we can fold the condition to a constant (which we
2285 // should always be able to do in theory). If so, we only require the
2286 // specified arm of the conditional to be a constant. This is a horrible
2287 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002288 Expr::EvalResult EvalResult;
2289 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2290 EvalResult.HasSideEffects) {
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002291 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattner46cfefa2008-10-06 05:42:39 +00002292 // won't be able to either. Use it to emit the diagnostic though.
2293 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattner6ee7aa12008-11-16 21:24:15 +00002294 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattner46cfefa2008-10-06 05:42:39 +00002295 return Res;
2296 }
2297
2298 // Verify that the side following the condition is also a constant.
2299 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson1c0cfd42008-12-19 20:58:05 +00002300 if (EvalResult.Val.getInt() == 0)
Chris Lattner46cfefa2008-10-06 05:42:39 +00002301 std::swap(TrueSide, FalseSide);
2302
2303 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedmanc594b322008-05-20 13:48:25 +00002304 return true;
Chris Lattner46cfefa2008-10-06 05:42:39 +00002305
2306 // Okay, the evaluated side evaluates to a constant, so we accept this.
2307 // Check to see if the other side is obviously not a constant. If so,
2308 // emit a warning that this is a GNU extension.
Chris Lattner45b6b9d2008-10-06 06:49:02 +00002309 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner46cfefa2008-10-06 05:42:39 +00002310 Diag(Init->getExprLoc(),
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00002311 diag::ext_typecheck_expression_not_constant_but_accepted)
2312 << FalseSide->getSourceRange();
Chris Lattner46cfefa2008-10-06 05:42:39 +00002313 return false;
Eli Friedmanc594b322008-05-20 13:48:25 +00002314 }
2315 }
2316}
2317
2318bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Douglas Gregor05c13a32009-01-22 00:58:24 +00002319 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init))
2320 Init = DIE->getInit();
2321
Nuno Lopes9a979c32008-07-07 16:46:50 +00002322 Init = Init->IgnoreParens();
2323
Nate Begeman59b5da62009-01-18 03:20:47 +00002324 if (Init->isEvaluatable(Context))
Anders Carlsson9e09f5d2008-12-05 05:09:56 +00002325 return false;
2326
Eli Friedmanc594b322008-05-20 13:48:25 +00002327 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2328 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2329 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2330
Nuno Lopes9a979c32008-07-07 16:46:50 +00002331 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2332 return CheckForConstantInitializer(e->getInitializer(), DclT);
2333
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002334 if (isa<ImplicitValueInitExpr>(Init)) {
2335 // FIXME: In C++, check for non-POD types.
2336 return false;
2337 }
2338
Eli Friedmanc594b322008-05-20 13:48:25 +00002339 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2340 unsigned numInits = Exp->getNumInits();
2341 for (unsigned i = 0; i < numInits; i++) {
2342 // FIXME: Need to get the type of the declaration for C++,
2343 // because it could be a reference?
Douglas Gregor4c678342009-01-28 21:54:33 +00002344
Eli Friedmanc594b322008-05-20 13:48:25 +00002345 if (CheckForConstantInitializer(Exp->getInit(i),
2346 Exp->getInit(i)->getType()))
2347 return true;
2348 }
2349 return false;
2350 }
2351
Anders Carlsson9e09f5d2008-12-05 05:09:56 +00002352 // FIXME: We can probably remove some of this code below, now that
2353 // Expr::Evaluate is doing the heavy lifting for scalars.
2354
Eli Friedmanc594b322008-05-20 13:48:25 +00002355 if (Init->isNullPointerConstant(Context))
2356 return false;
2357 if (Init->getType()->isArithmeticType()) {
Chris Lattnerb77792e2008-07-26 22:17:49 +00002358 QualType InitTy = Context.getCanonicalType(Init->getType())
2359 .getUnqualifiedType();
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00002360 if (InitTy == Context.BoolTy) {
2361 // Special handling for pointers implicitly cast to bool;
2362 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2363 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2364 Expr* SubE = ICE->getSubExpr();
2365 if (SubE->getType()->isPointerType() ||
2366 SubE->getType()->isArrayType() ||
2367 SubE->getType()->isFunctionType()) {
2368 return CheckAddressConstantExpression(Init);
2369 }
2370 }
2371 } else if (InitTy->isIntegralType()) {
2372 Expr* SubE = 0;
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002373 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00002374 SubE = CE->getSubExpr();
2375 // Special check for pointer cast to int; we allow as an extension
2376 // an address constant cast to an integer if the integer
2377 // is of an appropriate width (this sort of code is apparently used
2378 // in some places).
2379 // FIXME: Add pedwarn?
2380 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2381 if (SubE && (SubE->getType()->isPointerType() ||
2382 SubE->getType()->isArrayType() ||
2383 SubE->getType()->isFunctionType())) {
2384 unsigned IntWidth = Context.getTypeSize(Init->getType());
2385 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2386 if (IntWidth >= PointerWidth)
2387 return CheckAddressConstantExpression(Init);
2388 }
Eli Friedmanc594b322008-05-20 13:48:25 +00002389 }
2390
2391 return CheckArithmeticConstantExpression(Init);
2392 }
2393
2394 if (Init->getType()->isPointerType())
2395 return CheckAddressConstantExpression(Init);
2396
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00002397 // An array type at the top level that isn't an init-list must
2398 // be a string literal
Eli Friedmanc594b322008-05-20 13:48:25 +00002399 if (Init->getType()->isArrayType())
2400 return false;
2401
Nuno Lopes73419bf2008-09-01 18:42:41 +00002402 if (Init->getType()->isFunctionType())
2403 return false;
2404
Steve Naroff8af6a452008-10-02 17:12:56 +00002405 // Allow block exprs at top level.
2406 if (Init->getType()->isBlockPointerType())
2407 return false;
Nuno Lopes6ed2ef82009-01-15 16:44:45 +00002408
2409 // GCC cast to union extension
2410 // note: the validity of the cast expr is checked by CheckCastTypes()
2411 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2412 QualType T = C->getType();
2413 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2414 }
2415
Steve Naroff6594a702008-10-27 11:34:16 +00002416 InitializerElementNotConstant(Init);
Eli Friedmanc594b322008-05-20 13:48:25 +00002417 return true;
Steve Naroffd0091aa2008-01-10 22:15:12 +00002418}
2419
Sebastian Redl798d1192008-12-13 16:23:55 +00002420void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002421 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2422}
2423
2424/// AddInitializerToDecl - Adds the initializer Init to the
2425/// declaration dcl. If DirectInit is true, this is C++ direct
2426/// initialization rather than copy initialization.
2427void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff410e3e22007-09-12 20:13:48 +00002428 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redl798d1192008-12-13 16:23:55 +00002429 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattner9a11b9a2007-10-19 20:10:30 +00002430 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +00002431
Chris Lattner9a11b9a2007-10-19 20:10:30 +00002432 // If there is no declaration, there was an error parsing it. Just ignore
2433 // the initializer.
2434 if (RealDecl == 0) {
Ted Kremenek8189cde2009-02-07 01:47:29 +00002435 Init->Destroy(Context);
Chris Lattner9a11b9a2007-10-19 20:10:30 +00002436 return;
2437 }
Steve Naroffbb204692007-09-12 14:07:44 +00002438
Steve Naroff410e3e22007-09-12 20:13:48 +00002439 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2440 if (!VDecl) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002441 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +00002442 RealDecl->setInvalidDecl();
2443 return;
2444 }
Steve Naroffbb204692007-09-12 14:07:44 +00002445 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +00002446 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +00002447 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff248a7532008-04-15 22:42:06 +00002448 if (VDecl->isBlockVarDecl()) {
2449 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroffbb204692007-09-12 14:07:44 +00002450 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +00002451 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff248a7532008-04-15 22:42:06 +00002452 VDecl->setInvalidDecl();
2453 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002454 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002455 VDecl->getDeclName(), DirectInit))
Steve Naroff248a7532008-04-15 22:42:06 +00002456 VDecl->setInvalidDecl();
Anders Carlssonc5eb7312008-08-22 05:00:02 +00002457
2458 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
Eli Friedmanda153232009-02-20 01:34:21 +00002459 // Don't check invalid declarations to avoid emitting useless diagnostics.
2460 if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
Anders Carlssonc5eb7312008-08-22 05:00:02 +00002461 if (SC == VarDecl::Static) // C99 6.7.8p4.
2462 CheckForConstantInitializer(Init, DclT);
2463 }
Steve Naroffbb204692007-09-12 14:07:44 +00002464 }
Steve Naroff248a7532008-04-15 22:42:06 +00002465 } else if (VDecl->isFileVarDecl()) {
2466 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +00002467 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff248a7532008-04-15 22:42:06 +00002468 if (!VDecl->isInvalidDecl())
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002469 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002470 VDecl->getDeclName(), DirectInit))
Steve Naroff248a7532008-04-15 22:42:06 +00002471 VDecl->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +00002472
Anders Carlssonc5eb7312008-08-22 05:00:02 +00002473 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
Eli Friedmanda153232009-02-20 01:34:21 +00002474 // Don't check invalid declarations to avoid emitting useless diagnostics.
2475 if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
Anders Carlssonc5eb7312008-08-22 05:00:02 +00002476 // C99 6.7.8p4. All file scoped initializers need to be constant.
2477 CheckForConstantInitializer(Init, DclT);
2478 }
Steve Naroffbb204692007-09-12 14:07:44 +00002479 }
2480 // If the type changed, it means we had an incomplete type that was
2481 // completed by the initializer. For example:
2482 // int ary[] = { 1, 3, 5 };
2483 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +00002484 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +00002485 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +00002486 Init->setType(DclT);
2487 }
Steve Naroffbb204692007-09-12 14:07:44 +00002488
2489 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +00002490 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +00002491 return;
2492}
2493
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002494void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2495 Decl *RealDecl = static_cast<Decl *>(dcl);
2496
Argyrios Kyrtzidis48c2e902008-11-07 13:01:22 +00002497 // If there is no declaration, there was an error parsing it. Just ignore it.
2498 if (RealDecl == 0)
2499 return;
2500
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002501 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2502 QualType Type = Var->getType();
2503 // C++ [dcl.init.ref]p3:
2504 // The initializer can be omitted for a reference only in a
2505 // parameter declaration (8.3.5), in the declaration of a
2506 // function return type, in the declaration of a class member
2507 // within its class declaration (9.2), and where the extern
2508 // specifier is explicitly used.
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002509 if (Type->isReferenceType() &&
2510 Var->getStorageClass() != VarDecl::Extern &&
2511 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00002512 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002513 << Var->getDeclName()
2514 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor18fe5682008-11-03 20:45:27 +00002515 Var->setInvalidDecl();
2516 return;
2517 }
2518
2519 // C++ [dcl.init]p9:
2520 //
2521 // If no initializer is specified for an object, and the object
2522 // is of (possibly cv-qualified) non-POD class type (or array
2523 // thereof), the object shall be default-initialized; if the
2524 // object is of const-qualified type, the underlying class type
2525 // shall have a user-declared default constructor.
2526 if (getLangOptions().CPlusPlus) {
2527 QualType InitType = Type;
2528 if (const ArrayType *Array = Context.getAsArrayType(Type))
2529 InitType = Array->getElementType();
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002530 if (Var->getStorageClass() != VarDecl::Extern &&
2531 Var->getStorageClass() != VarDecl::PrivateExtern &&
2532 InitType->isRecordType()) {
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002533 const CXXConstructorDecl *Constructor
2534 = PerformInitializationByConstructor(InitType, 0, 0,
2535 Var->getLocation(),
2536 SourceRange(Var->getLocation(),
2537 Var->getLocation()),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002538 Var->getDeclName(),
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002539 IK_Default);
Douglas Gregor18fe5682008-11-03 20:45:27 +00002540 if (!Constructor)
2541 Var->setInvalidDecl();
2542 }
2543 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002544
Douglas Gregor818ce482008-10-29 13:50:18 +00002545#if 0
2546 // FIXME: Temporarily disabled because we are not properly parsing
2547 // linkage specifications on declarations, e.g.,
2548 //
2549 // extern "C" const CGPoint CGPointerZero;
2550 //
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002551 // C++ [dcl.init]p9:
2552 //
2553 // If no initializer is specified for an object, and the
2554 // object is of (possibly cv-qualified) non-POD class type (or
2555 // array thereof), the object shall be default-initialized; if
2556 // the object is of const-qualified type, the underlying class
2557 // type shall have a user-declared default
2558 // constructor. Otherwise, if no initializer is specified for
2559 // an object, the object and its subobjects, if any, have an
2560 // indeterminate initial value; if the object or any of its
2561 // subobjects are of const-qualified type, the program is
2562 // ill-formed.
2563 //
2564 // This isn't technically an error in C, so we don't diagnose it.
2565 //
2566 // FIXME: Actually perform the POD/user-defined default
2567 // constructor check.
2568 if (getLangOptions().CPlusPlus &&
Douglas Gregor818ce482008-10-29 13:50:18 +00002569 Context.getCanonicalType(Type).isConstQualified() &&
2570 Var->getStorageClass() != VarDecl::Extern)
Chris Lattnerf3a41af2008-11-20 06:38:18 +00002571 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2572 << Var->getName()
2573 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor818ce482008-10-29 13:50:18 +00002574#endif
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002575 }
2576}
2577
Reid Spencer5f016e22007-07-11 17:01:13 +00002578/// The declarators are chained together backwards, reverse the list.
2579Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2580 // Often we have single declarators, handle them quickly.
Argyrios Kyrtzidisd311f372009-02-17 20:23:54 +00002581 Decl *Group = static_cast<Decl*>(group);
2582 if (Group == 0)
Steve Naroffbb204692007-09-12 14:07:44 +00002583 return 0;
Steve Naroff94745042007-09-13 23:52:58 +00002584
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002585 Decl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +00002586 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +00002587 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +00002588 else { // reverse the list.
2589 while (Group) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002590 Decl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +00002591 Group->setNextDeclarator(NewGroup);
2592 NewGroup = Group;
2593 Group = Next;
2594 }
2595 }
2596 // Perform semantic analysis that depends on having fully processed both
2597 // the declarator and initializer.
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002598 for (Decl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +00002599 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2600 if (!IDecl)
2601 continue;
Steve Naroffbb204692007-09-12 14:07:44 +00002602 QualType T = IDecl->getType();
2603
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002604 if (T->isVariableArrayType()) {
Anders Carlssonfcdbb932008-12-20 21:51:53 +00002605 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlsson7fd1df22008-12-07 00:49:48 +00002606
2607 // FIXME: This won't give the correct result for
2608 // int a[10][n];
2609 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002610 if (IDecl->isFileVarDecl()) {
Anders Carlsson7fd1df22008-12-07 00:49:48 +00002611 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2612 SizeRange;
2613
Eli Friedmanc5773c42008-02-15 18:16:39 +00002614 IDecl->setInvalidDecl();
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002615 } else {
2616 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2617 // static storage duration, it shall not have a variable length array.
2618 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlsson7fd1df22008-12-07 00:49:48 +00002619 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2620 << SizeRange;
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002621 IDecl->setInvalidDecl();
2622 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlsson7fd1df22008-12-07 00:49:48 +00002623 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2624 << SizeRange;
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002625 IDecl->setInvalidDecl();
2626 }
2627 }
2628 } else if (T->isVariablyModifiedType()) {
2629 if (IDecl->isFileVarDecl()) {
2630 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2631 IDecl->setInvalidDecl();
2632 } else {
2633 if (IDecl->getStorageClass() == VarDecl::Extern) {
2634 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2635 IDecl->setInvalidDecl();
2636 }
Steve Naroffbb204692007-09-12 14:07:44 +00002637 }
2638 }
Anders Carlsson96e05bc2008-12-07 00:20:55 +00002639
Steve Naroffbb204692007-09-12 14:07:44 +00002640 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2641 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff248a7532008-04-15 22:42:06 +00002642 if (IDecl->isBlockVarDecl() &&
2643 IDecl->getStorageClass() != VarDecl::Extern) {
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002644 if (!IDecl->isInvalidDecl() &&
2645 DiagnoseIncompleteType(IDecl->getLocation(), T,
2646 diag::err_typecheck_decl_incomplete_type))
Steve Naroffbb204692007-09-12 14:07:44 +00002647 IDecl->setInvalidDecl();
Steve Naroffbb204692007-09-12 14:07:44 +00002648 }
2649 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2650 // object that has file scope without an initializer, and without a
2651 // storage-class specifier or with the storage-class specifier "static",
2652 // constitutes a tentative definition. Note: A tentative definition with
2653 // external linkage is valid (C99 6.2.2p5).
Steve Naroffff9eb1f2008-08-08 17:50:35 +00002654 if (isTentativeDefinition(IDecl)) {
Eli Friedman9db13972008-02-15 12:53:51 +00002655 if (T->isIncompleteArrayType()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00002656 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2657 // array to be completed. Don't issue a diagnostic.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002658 } else if (!IDecl->isInvalidDecl() &&
2659 DiagnoseIncompleteType(IDecl->getLocation(), T,
2660 diag::err_typecheck_decl_incomplete_type))
Steve Naroff9a75f8a2008-01-18 20:40:52 +00002661 // C99 6.9.2p3: If the declaration of an identifier for an object is
2662 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2663 // declared type shall not be an incomplete type.
Steve Naroffbb204692007-09-12 14:07:44 +00002664 IDecl->setInvalidDecl();
Steve Naroffbb204692007-09-12 14:07:44 +00002665 }
Steve Naroffff9eb1f2008-08-08 17:50:35 +00002666 if (IDecl->isFileVarDecl())
2667 CheckForFileScopedRedefinitions(S, IDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00002668 }
2669 return NewGroup;
2670}
Steve Naroffe1223f72007-08-28 03:03:08 +00002671
Chris Lattner04421082008-04-08 04:40:51 +00002672/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2673/// to introduce parameters into function prototype scope.
2674Sema::DeclTy *
2675Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner985abd92008-06-26 06:49:43 +00002676 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor584049d2008-12-15 23:53:10 +00002677
Chris Lattner04421082008-04-08 04:40:51 +00002678 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbar33ad0122008-09-03 21:54:21 +00002679 VarDecl::StorageClass StorageClass = VarDecl::None;
2680 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2681 StorageClass = VarDecl::Register;
2682 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner04421082008-04-08 04:40:51 +00002683 Diag(DS.getStorageClassSpecLoc(),
2684 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00002685 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00002686 }
2687 if (DS.isThreadSpecified()) {
2688 Diag(DS.getThreadSpecLoc(),
2689 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00002690 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00002691 }
2692
Douglas Gregor6d6eb572008-05-07 04:49:29 +00002693 // Check that there are no default arguments inside the type of this
2694 // parameter (C++ only).
2695 if (getLangOptions().CPlusPlus)
2696 CheckExtraCXXDefaultArguments(D);
2697
Chris Lattner04421082008-04-08 04:40:51 +00002698 // In this context, we *do not* check D.getInvalidType(). If the declarator
2699 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2700 // though it will not reflect the user specified type.
2701 QualType parmDeclType = GetTypeForDeclarator(D, S);
2702
2703 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2704
Reid Spencer5f016e22007-07-11 17:01:13 +00002705 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2706 // Can this happen for params? We already checked that they don't conflict
2707 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner04421082008-04-08 04:40:51 +00002708 IdentifierInfo *II = D.getIdentifier();
Chris Lattnercf79b012009-01-21 02:38:50 +00002709 if (II) {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00002710 if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) {
Chris Lattnercf79b012009-01-21 02:38:50 +00002711 if (PrevDecl->isTemplateParameter()) {
2712 // Maybe we will complain about the shadowed template parameter.
2713 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2714 // Just pretend that we didn't see the previous declaration.
2715 PrevDecl = 0;
2716 } else if (S->isDeclScope(PrevDecl)) {
2717 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattner04421082008-04-08 04:40:51 +00002718
Chris Lattnercf79b012009-01-21 02:38:50 +00002719 // Recover by removing the name
2720 II = 0;
2721 D.SetIdentifier(0, D.getIdentifierLoc());
2722 }
Chris Lattner04421082008-04-08 04:40:51 +00002723 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002724 }
Steve Naroff6a9f3e32007-08-07 22:44:21 +00002725
2726 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2727 // Doing the promotion here has a win and a loss. The win is the type for
2728 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2729 // code generator). The loss is the orginal type isn't preserved. For example:
2730 //
2731 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2732 // int blockvardecl[5];
2733 // sizeof(parmvardecl); // size == 4
2734 // sizeof(blockvardecl); // size == 20
2735 // }
2736 //
2737 // For expressions, all implicit conversions are captured using the
2738 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2739 //
2740 // FIXME: If a source translation tool needs to see the original type, then
2741 // we need to consider storing both types (in ParmVarDecl)...
2742 //
Chris Lattnere6327742008-04-02 05:18:44 +00002743 if (parmDeclType->isArrayType()) {
Chris Lattner529bd022008-01-02 22:50:48 +00002744 // int x[restrict 4] -> int *restrict
Chris Lattnere6327742008-04-02 05:18:44 +00002745 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattner529bd022008-01-02 22:50:48 +00002746 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +00002747 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor44b43212008-12-11 16:49:14 +00002748
Chris Lattner04421082008-04-08 04:40:51 +00002749 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2750 D.getIdentifierLoc(), II,
Daniel Dunbar33ad0122008-09-03 21:54:21 +00002751 parmDeclType, StorageClass,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002752 0);
Anders Carlssonf78915f2008-02-15 07:04:12 +00002753
Chris Lattner04421082008-04-08 04:40:51 +00002754 if (D.getInvalidType())
Steve Naroff53a32342007-08-28 18:45:29 +00002755 New->setInvalidDecl();
Douglas Gregor44b43212008-12-11 16:49:14 +00002756
Douglas Gregor584049d2008-12-15 23:53:10 +00002757 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2758 if (D.getCXXScopeSpec().isSet()) {
2759 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2760 << D.getCXXScopeSpec().getRange();
2761 New->setInvalidDecl();
2762 }
Steve Naroffccef3712009-02-20 22:59:16 +00002763 // Parameter declarators cannot be interface types. All ObjC objects are
2764 // passed by reference.
2765 if (parmDeclType->isObjCInterfaceType()) {
2766 Diag(D.getIdentifierLoc(), diag::err_object_cannot_be_by_value)
2767 << "passed";
2768 New->setInvalidDecl();
2769 }
Douglas Gregor584049d2008-12-15 23:53:10 +00002770
Douglas Gregor44b43212008-12-11 16:49:14 +00002771 // Add the parameter declaration into this scope.
2772 S->AddDecl(New);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00002773 if (II)
Douglas Gregor44b43212008-12-11 16:49:14 +00002774 IdResolver.AddDecl(New);
Nate Begemanb7894b52008-02-17 21:20:31 +00002775
Chris Lattner3ff30c82008-06-29 00:02:00 +00002776 ProcessDeclAttributes(New, D);
Reid Spencer5f016e22007-07-11 17:01:13 +00002777 return New;
Chris Lattner04421082008-04-08 04:40:51 +00002778
Reid Spencer5f016e22007-07-11 17:01:13 +00002779}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00002780
Douglas Gregorbe109b32009-01-23 16:23:13 +00002781void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002782 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2783 "Not a function declarator!");
2784 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner04421082008-04-08 04:40:51 +00002785
Reid Spencer5f016e22007-07-11 17:01:13 +00002786 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2787 // for a K&R function.
2788 if (!FTI.hasPrototype) {
2789 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner04421082008-04-08 04:40:51 +00002790 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002791 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2792 << FTI.ArgInfo[i].Ident;
Reid Spencer5f016e22007-07-11 17:01:13 +00002793 // Implicitly declare the argument as type 'int' for lack of a better
2794 // type.
Chris Lattner04421082008-04-08 04:40:51 +00002795 DeclSpec DS;
2796 const char* PrevSpec; // unused
2797 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2798 PrevSpec);
2799 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2800 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
Douglas Gregorbe109b32009-01-23 16:23:13 +00002801 FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
Reid Spencer5f016e22007-07-11 17:01:13 +00002802 }
2803 }
Douglas Gregorbe109b32009-01-23 16:23:13 +00002804 }
2805}
2806
2807Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
2808 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
2809 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2810 "Not a function declarator!");
2811 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2812
2813 if (FTI.hasPrototype) {
Chris Lattner04421082008-04-08 04:40:51 +00002814 // FIXME: Diagnose arguments without names in C.
Reid Spencer5f016e22007-07-11 17:01:13 +00002815 }
2816
Douglas Gregor584049d2008-12-15 23:53:10 +00002817 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00002818
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002819 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregor584049d2008-12-15 23:53:10 +00002820 ActOnDeclarator(ParentScope, D, 0,
2821 /*IsFunctionDefinition=*/true));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002822}
2823
2824Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2825 Decl *decl = static_cast<Decl*>(D);
Chris Lattnere9ba3232008-02-16 01:20:36 +00002826 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregor6fc17ff2008-10-29 15:10:40 +00002827
2828 // See if this is a redefinition.
2829 const FunctionDecl *Definition;
2830 if (FD->getBody(Definition)) {
Chris Lattner08631c52008-11-23 21:45:46 +00002831 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002832 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregor6fc17ff2008-10-29 15:10:40 +00002833 }
2834
Douglas Gregorcda9c672009-02-16 17:45:42 +00002835 // Builtin functions cannot be defined.
2836 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
Douglas Gregor655753a2009-02-17 16:03:01 +00002837 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
Douglas Gregorcda9c672009-02-16 17:45:42 +00002838 Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
Douglas Gregor655753a2009-02-17 16:03:01 +00002839 FD->setInvalidDecl();
2840 }
Douglas Gregorcda9c672009-02-16 17:45:42 +00002841 }
2842
Douglas Gregor44b43212008-12-11 16:49:14 +00002843 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikov2f402702008-12-26 00:52:02 +00002844
Chris Lattner04421082008-04-08 04:40:51 +00002845 // Check the validity of our function parameters
2846 CheckParmsForFunctionDef(FD);
2847
2848 // Introduce our parameters into the function scope
2849 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2850 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregora8cc8ce2009-01-09 18:51:29 +00002851 Param->setOwningFunction(FD);
2852
Chris Lattner04421082008-04-08 04:40:51 +00002853 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00002854 if (Param->getIdentifier())
2855 PushOnScopeChains(Param, FnBodyScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00002856 }
Chris Lattner04421082008-04-08 04:40:51 +00002857
Anton Korobeynikov2f402702008-12-26 00:52:02 +00002858 // Checking attributes of current function definition
2859 // dllimport attribute.
2860 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2861 // dllimport attribute cannot be applied to definition.
2862 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2863 Diag(FD->getLocation(),
2864 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2865 << "dllimport";
2866 FD->setInvalidDecl();
2867 return FD;
2868 } else {
2869 // If a symbol previously declared dllimport is later defined, the
2870 // attribute is ignored in subsequent references, and a warning is
2871 // emitted.
2872 Diag(FD->getLocation(),
2873 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2874 << FD->getNameAsCString() << "dllimport";
2875 }
2876 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002877 return FD;
2878}
2879
Sebastian Redl798d1192008-12-13 16:23:55 +00002880Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00002881 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redl798d1192008-12-13 16:23:55 +00002882 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff394f3f42008-07-25 17:57:26 +00002883 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redl798d1192008-12-13 16:23:55 +00002884 FD->setBody(Body);
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00002885 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff394f3f42008-07-25 17:57:26 +00002886 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Chris Lattnerffed1632009-02-16 19:27:54 +00002887 assert(MD == getCurMethodDecl() && "Method parsing confused");
Steve Naroffd6d054d2007-11-11 23:20:51 +00002888 MD->setBody((Stmt*)Body);
Ted Kremenek8189cde2009-02-07 01:47:29 +00002889 } else {
2890 Body->Destroy(Context);
Steve Naroff394f3f42008-07-25 17:57:26 +00002891 return 0;
Ted Kremenek8189cde2009-02-07 01:47:29 +00002892 }
Chris Lattnerb048c982008-04-06 04:47:34 +00002893 PopDeclContext();
Reid Spencer5f016e22007-07-11 17:01:13 +00002894 // Verify and clean out per-function state.
2895
2896 // Check goto/label use.
2897 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2898 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
2899 // Verify that we have no forward references left. If so, there was a goto
2900 // or address of a label taken, but no definition of it. Label fwd
2901 // definitions are indicated with a null substmt.
2902 if (I->second->getSubStmt() == 0) {
2903 LabelStmt *L = I->second;
2904 // Emit error.
Chris Lattnerf3a41af2008-11-20 06:38:18 +00002905 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Reid Spencer5f016e22007-07-11 17:01:13 +00002906
2907 // At this point, we have gotos that use the bogus label. Stitch it into
2908 // the function body so that they aren't leaked and that the AST is well
2909 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00002910 if (Body) {
Ted Kremenek8189cde2009-02-07 01:47:29 +00002911#if 0
2912 // FIXME: Why do this? Having a 'push_back' in CompoundStmt is ugly,
2913 // and the AST is malformed anyway. We should just blow away 'L'.
2914 L->setSubStmt(new (Context) NullStmt(L->getIdentLoc()));
2915 cast<CompoundStmt>(Body)->push_back(L);
2916#else
2917 L->Destroy(Context);
2918#endif
Chris Lattner0cbc2152008-01-25 00:01:10 +00002919 } else {
2920 // The whole function wasn't parsed correctly, just delete this.
Ted Kremenek8189cde2009-02-07 01:47:29 +00002921 L->Destroy(Context);
Chris Lattner0cbc2152008-01-25 00:01:10 +00002922 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002923 }
2924 }
2925 LabelMap.clear();
2926
Steve Naroffd6d054d2007-11-11 23:20:51 +00002927 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00002928}
2929
Reid Spencer5f016e22007-07-11 17:01:13 +00002930/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2931/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002932NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2933 IdentifierInfo &II, Scope *S) {
Chris Lattner37d10842008-05-05 21:18:06 +00002934 // Extension in C99. Legal in C90, but warn about it.
2935 if (getLangOptions().C99)
Chris Lattner3c73c412008-11-19 08:23:25 +00002936 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattner37d10842008-05-05 21:18:06 +00002937 else
Chris Lattner3c73c412008-11-19 08:23:25 +00002938 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Reid Spencer5f016e22007-07-11 17:01:13 +00002939
2940 // FIXME: handle stuff like:
2941 // void foo() { extern float X(); }
2942 // void bar() { X(); } <-- implicit decl for X in another scope.
2943
2944 // Set a Declarator for the implicit definition: int foo();
2945 const char *Dummy;
2946 DeclSpec DS;
2947 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
2948 Error = Error; // Silence warning.
2949 assert(!Error && "Error setting up implicit decl!");
2950 Declarator D(DS, Declarator::BlockContext);
Douglas Gregor965acbb2009-02-18 07:07:28 +00002951 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, SourceLocation(),
2952 0, 0, 0, Loc, D),
Sebastian Redlab197ba2009-02-09 18:23:29 +00002953 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002954 D.SetIdentifier(&II, Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +00002955
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +00002956 // Insert this function into translation-unit scope.
2957
2958 DeclContext *PrevDC = CurContext;
2959 CurContext = Context.getTranslationUnitDecl();
2960
Steve Naroffe2ef8152008-04-04 14:32:09 +00002961 FunctionDecl *FD =
Daniel Dunbar914701e2008-08-05 16:28:08 +00002962 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroffe2ef8152008-04-04 14:32:09 +00002963 FD->setImplicit();
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +00002964
2965 CurContext = PrevDC;
2966
Douglas Gregor3c385e52009-02-14 18:57:46 +00002967 AddKnownFunctionAttributes(FD);
2968
Steve Naroffe2ef8152008-04-04 14:32:09 +00002969 return FD;
Reid Spencer5f016e22007-07-11 17:01:13 +00002970}
2971
Douglas Gregor3c385e52009-02-14 18:57:46 +00002972/// \brief Adds any function attributes that we know a priori based on
2973/// the declaration of this function.
2974///
2975/// These attributes can apply both to implicitly-declared builtins
2976/// (like __builtin___printf_chk) or to library-declared functions
2977/// like NSLog or printf.
2978void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
2979 if (FD->isInvalidDecl())
2980 return;
2981
2982 // If this is a built-in function, map its builtin attributes to
2983 // actual attributes.
2984 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
2985 // Handle printf-formatting attributes.
2986 unsigned FormatIdx;
2987 bool HasVAListArg;
2988 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
2989 if (!FD->getAttr<FormatAttr>())
2990 FD->addAttr(new FormatAttr("printf", FormatIdx + 1, FormatIdx + 2));
2991 }
Daniel Dunbaref2abfe2009-02-16 22:43:43 +00002992
2993 // Mark const if we don't care about errno and that is the only
2994 // thing preventing the function from being const. This allows
2995 // IRgen to use LLVM intrinsics for such functions.
2996 if (!getLangOptions().MathErrno &&
2997 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
2998 if (!FD->getAttr<ConstAttr>())
2999 FD->addAttr(new ConstAttr());
3000 }
Douglas Gregor3c385e52009-02-14 18:57:46 +00003001 }
3002
3003 IdentifierInfo *Name = FD->getIdentifier();
3004 if (!Name)
3005 return;
3006 if ((!getLangOptions().CPlusPlus &&
3007 FD->getDeclContext()->isTranslationUnit()) ||
3008 (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
3009 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
3010 LinkageSpecDecl::lang_c)) {
3011 // Okay: this could be a libc/libm/Objective-C function we know
3012 // about.
3013 } else
3014 return;
3015
3016 unsigned KnownID;
3017 for (KnownID = 0; KnownID != id_num_known_functions; ++KnownID)
3018 if (KnownFunctionIDs[KnownID] == Name)
3019 break;
3020
3021 switch (KnownID) {
3022 case id_NSLog:
3023 case id_NSLogv:
3024 if (const FormatAttr *Format = FD->getAttr<FormatAttr>()) {
3025 // FIXME: We known better than our headers.
3026 const_cast<FormatAttr *>(Format)->setType("printf");
3027 } else
3028 FD->addAttr(new FormatAttr("printf", 1, 2));
3029 break;
3030
3031 case id_asprintf:
3032 case id_vasprintf:
3033 if (!FD->getAttr<FormatAttr>())
3034 FD->addAttr(new FormatAttr("printf", 2, 3));
3035 break;
3036
3037 default:
3038 // Unknown function or known function without any attributes to
3039 // add. Do nothing.
3040 break;
3041 }
3042}
Reid Spencer5f016e22007-07-11 17:01:13 +00003043
Chris Lattner41af0932007-11-14 06:34:38 +00003044TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00003045 Decl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003046 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00003047 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00003048
3049 // Scope manipulation handled by caller.
Chris Lattner0ed844b2008-04-04 06:12:32 +00003050 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
3051 D.getIdentifierLoc(),
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00003052 D.getIdentifier(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +00003053 T);
3054 NewTD->setNextDeclarator(LastDeclarator);
Steve Naroff5912a352007-08-28 20:14:24 +00003055 if (D.getInvalidType())
3056 NewTD->setInvalidDecl();
3057 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00003058}
3059
Steve Naroff08d92e42007-09-15 18:49:24 +00003060/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00003061/// former case, Name will be non-null. In the later case, Name will be null.
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003062/// TagSpec indicates what kind of tag this is. TK indicates whether this is a
Reid Spencer5f016e22007-07-11 17:01:13 +00003063/// reference/declaration/definition of a tag.
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003064Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagKind TK,
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00003065 SourceLocation KWLoc, const CXXScopeSpec &SS,
3066 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregorddc29e12009-02-06 22:42:48 +00003067 AttributeList *Attr) {
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003068 // If this is not a definition, it must have a name.
Reid Spencer5f016e22007-07-11 17:01:13 +00003069 assert((Name != 0 || TK == TK_Definition) &&
3070 "Nameless record must be a definition!");
Douglas Gregoraaba5e32009-02-04 19:02:06 +00003071
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003072 TagDecl::TagKind Kind;
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003073 switch (TagSpec) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003074 default: assert(0 && "Unknown tag type!");
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003075 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
3076 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
3077 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
3078 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00003079 }
3080
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003081 DeclContext *SearchDC = CurContext;
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +00003082 DeclContext *DC = CurContext;
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00003083 NamedDecl *PrevDecl = 0;
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00003084
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003085 bool Invalid = false;
3086
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00003087 if (Name && SS.isNotEmpty()) {
3088 // We have a nested-name tag ('struct foo::bar').
3089
3090 // Check for invalid 'foo::'.
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +00003091 if (SS.isInvalid()) {
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00003092 Name = 0;
3093 goto CreateNewDecl;
3094 }
3095
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +00003096 DC = static_cast<DeclContext*>(SS.getScopeRep());
Douglas Gregor1931b442009-02-03 00:34:39 +00003097 SearchDC = DC;
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +00003098 // Look-up name inside 'foo::'.
Steve Naroff3e8ffd22009-01-29 00:07:50 +00003099 PrevDecl = dyn_cast_or_null<TagDecl>(
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003100 LookupQualifiedName(DC, Name, LookupTagName, true).getAsDecl());
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00003101
3102 // A tag 'foo::bar' must already exist.
3103 if (PrevDecl == 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003104 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00003105 Name = 0;
3106 goto CreateNewDecl;
3107 }
Chris Lattnercf79b012009-01-21 02:38:50 +00003108 } else if (Name) {
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00003109 // If this is a named struct, check to see if there was a previous forward
3110 // declaration or definition.
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003111 // FIXME: We're looking into outer scopes here, even when we
3112 // shouldn't be. Doing so can result in ambiguities that we
3113 // shouldn't be diagnosing.
Douglas Gregore2c565d2009-02-03 19:26:08 +00003114 LookupResult R = LookupName(S, Name, LookupTagName,
3115 /*RedeclarationOnly=*/(TK != TK_Reference));
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003116 if (R.isAmbiguous()) {
3117 DiagnoseAmbiguousLookup(R, Name, NameLoc);
3118 // FIXME: This is not best way to recover from case like:
3119 //
3120 // struct S s;
3121 //
3122 // causes needless err_ovl_no_viable_function_in_init latter.
3123 Name = 0;
3124 PrevDecl = 0;
3125 Invalid = true;
3126 }
3127 else
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00003128 PrevDecl = R;
Douglas Gregor72de6672009-01-08 20:45:30 +00003129
3130 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
3131 // FIXME: This makes sure that we ignore the contexts associated
3132 // with C structs, unions, and enums when looking for a matching
3133 // tag declaration or definition. See the similar lookup tweak
Douglas Gregor4c921ae2009-01-30 01:04:22 +00003134 // in Sema::LookupName; is there a better way to deal with this?
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003135 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
3136 SearchDC = SearchDC->getParent();
Douglas Gregor72de6672009-01-08 20:45:30 +00003137 }
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +00003138 }
3139
Douglas Gregorf57172b2008-12-08 18:40:42 +00003140 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00003141 // Maybe we will complain about the shadowed template parameter.
3142 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
3143 // Just pretend that we didn't see the previous declaration.
3144 PrevDecl = 0;
3145 }
3146
Chris Lattner22bd9052009-02-16 22:07:16 +00003147 if (PrevDecl) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003148 // Check whether the previous declaration is usable.
3149 (void)DiagnoseUseOfDecl(PrevDecl, NameLoc);
Chris Lattner22bd9052009-02-16 22:07:16 +00003150
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003151 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner14943b92008-07-03 03:30:58 +00003152 // If this is a use of a previous tag, or if the tag is already declared
3153 // in the same scope (so that the definition/declaration completes or
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003154 // rementions the tag), reuse the decl.
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003155 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner14943b92008-07-03 03:30:58 +00003156 // Make sure that this wasn't declared as an enum and now used as a
3157 // struct or something similar.
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003158 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003159 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner5f4a6822008-11-23 23:12:31 +00003160 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner14943b92008-07-03 03:30:58 +00003161 // Recover by making this an anonymous redefinition.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003162 Name = 0;
Chris Lattner14943b92008-07-03 03:30:58 +00003163 PrevDecl = 0;
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003164 Invalid = true;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003165 } else {
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003166 // If this is a use, just return the declaration we found.
Chris Lattner14943b92008-07-03 03:30:58 +00003167
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003168 // FIXME: In the future, return a variant or some other clue
3169 // for the consumer of this Decl to know it doesn't own it.
3170 // For our current ASTs this shouldn't be a problem, but will
3171 // need to be changed with DeclGroups.
3172 if (TK == TK_Reference)
Chris Lattner14943b92008-07-03 03:30:58 +00003173 return PrevDecl;
Douglas Gregoraaba5e32009-02-04 19:02:06 +00003174
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003175 // Diagnose attempts to redefine a tag.
3176 if (TK == TK_Definition) {
3177 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
3178 Diag(NameLoc, diag::err_redefinition) << Name;
3179 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003180 // If this is a redefinition, recover by making this
3181 // struct be anonymous, which will make any later
3182 // references get the previous definition.
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003183 Name = 0;
3184 PrevDecl = 0;
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003185 Invalid = true;
3186 } else {
3187 // If the type is currently being defined, complain
3188 // about a nested redefinition.
3189 TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
3190 if (Tag->isBeingDefined()) {
3191 Diag(NameLoc, diag::err_nested_redefinition) << Name;
3192 Diag(PrevTagDecl->getLocation(),
3193 diag::note_previous_definition);
3194 Name = 0;
3195 PrevDecl = 0;
3196 Invalid = true;
3197 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003198 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003199
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003200 // Okay, this is definition of a previously declared or referenced
3201 // tag PrevDecl. We're going to create a new Decl for it.
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003202 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003203 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003204 // If we get here we have (another) forward declaration or we
3205 // have a definition. Just create a new decl.
3206 } else {
3207 // If we get here, this is a definition of a new tag type in a nested
3208 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
3209 // new decl/type. We set PrevDecl to NULL so that the entities
3210 // have distinct types.
3211 PrevDecl = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00003212 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003213 // If we get here, we're going to create a new Decl. If PrevDecl
3214 // is non-NULL, it's a definition of the tag declared by
3215 // PrevDecl. If it's NULL, we have a new definition.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003216 } else {
Douglas Gregor66973122009-01-28 17:15:10 +00003217 // PrevDecl is a namespace, template, or anything else
3218 // that lives in the IDNS_Tag identifier namespace.
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003219 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremeneka89d1972008-09-03 18:03:35 +00003220 // The tag name clashes with a namespace name, issue an error and
3221 // recover by making this tag be anonymous.
Chris Lattner3c73c412008-11-19 08:23:25 +00003222 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner5f4a6822008-11-23 23:12:31 +00003223 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +00003224 Name = 0;
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003225 PrevDecl = 0;
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003226 Invalid = true;
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003227 } else {
3228 // The existing declaration isn't relevant to us; we're in a
3229 // new scope, so clear out the previous declaration.
3230 PrevDecl = 0;
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +00003231 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003232 }
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003233 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
3234 (Kind != TagDecl::TK_enum)) {
3235 // C++ [basic.scope.pdecl]p5:
3236 // -- for an elaborated-type-specifier of the form
3237 //
3238 // class-key identifier
3239 //
3240 // if the elaborated-type-specifier is used in the
3241 // decl-specifier-seq or parameter-declaration-clause of a
3242 // function defined in namespace scope, the identifier is
3243 // declared as a class-name in the namespace that contains
3244 // the declaration; otherwise, except as a friend
3245 // declaration, the identifier is declared in the smallest
3246 // non-class, non-function-prototype scope that contains the
3247 // declaration.
3248 //
3249 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
3250 // C structs and unions.
3251
3252 // Find the context where we'll be declaring the tag.
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003253 // FIXME: We would like to maintain the current DeclContext as the
3254 // lexical context,
Douglas Gregor1931b442009-02-03 00:34:39 +00003255 while (SearchDC->isRecord())
3256 SearchDC = SearchDC->getParent();
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003257
3258 // Find the scope where we'll be declaring the tag.
3259 while (S->isClassScope() ||
3260 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00003261 ((S->getFlags() & Scope::DeclScope) == 0) ||
3262 (S->getEntity() &&
3263 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003264 S = S->getParent();
Reid Spencer5f016e22007-07-11 17:01:13 +00003265 }
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00003266
Chris Lattnercc98eac2008-12-17 07:13:27 +00003267CreateNewDecl:
Reid Spencer5f016e22007-07-11 17:01:13 +00003268
3269 // If there is an identifier, use the location of the identifier as the
3270 // location of the decl, otherwise use the location of the struct/union
3271 // keyword.
3272 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
3273
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003274 // Otherwise, create a new declaration. If there is a previous
3275 // declaration of the same entity, the two will be linked via
3276 // PrevDecl.
Reid Spencer5f016e22007-07-11 17:01:13 +00003277 TagDecl *New;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003278
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003279 if (Kind == TagDecl::TK_enum) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003280 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3281 // enum X { A, B, C } D; D should chain to X.
Douglas Gregor1931b442009-02-03 00:34:39 +00003282 New = EnumDecl::Create(Context, SearchDC, Loc, Name,
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003283 cast_or_null<EnumDecl>(PrevDecl));
Reid Spencer5f016e22007-07-11 17:01:13 +00003284 // If this is an undefined enum, warn.
3285 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003286 } else {
3287 // struct/union/class
3288
Reid Spencer5f016e22007-07-11 17:01:13 +00003289 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3290 // struct X { int A; } D; D should chain to X.
Douglas Gregorddc29e12009-02-06 22:42:48 +00003291 if (getLangOptions().CPlusPlus)
Ted Kremenek2b345eb2008-09-05 17:39:33 +00003292 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregor1931b442009-02-03 00:34:39 +00003293 New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003294 cast_or_null<CXXRecordDecl>(PrevDecl));
Douglas Gregorddc29e12009-02-06 22:42:48 +00003295 else
Douglas Gregor1931b442009-02-03 00:34:39 +00003296 New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003297 cast_or_null<RecordDecl>(PrevDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00003298 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003299
3300 if (Kind != TagDecl::TK_enum) {
3301 // Handle #pragma pack: if the #pragma pack stack has non-default
3302 // alignment, make up a packed attribute for this decl. These
3303 // attributes are checked when the ASTContext lays out the
3304 // structure.
3305 //
3306 // It is important for implementing the correct semantics that this
3307 // happen here (in act on tag decl). The #pragma pack stack is
3308 // maintained as a result of parser callbacks which can occur at
3309 // many points during the parsing of a struct declaration (because
3310 // the #pragma tokens are effectively skipped over during the
3311 // parsing of the struct).
Chris Lattner574aa402009-02-17 01:09:29 +00003312 if (unsigned Alignment = getPragmaPackAlignment())
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003313 New->addAttr(new PackedAttr(Alignment * 8));
3314 }
3315
Douglas Gregor66973122009-01-28 17:15:10 +00003316 if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
3317 // C++ [dcl.typedef]p3:
3318 // [...] Similarly, in a given scope, a class or enumeration
3319 // shall not be declared with the same name as a typedef-name
3320 // that is declared in that scope and refers to a type other
3321 // than the class or enumeration itself.
Douglas Gregor4c921ae2009-01-30 01:04:22 +00003322 LookupResult Lookup = LookupName(S, Name, LookupOrdinaryName, true);
Douglas Gregor66973122009-01-28 17:15:10 +00003323 TypedefDecl *PrevTypedef = 0;
3324 if (Lookup.getKind() == LookupResult::Found)
3325 PrevTypedef = dyn_cast<TypedefDecl>(Lookup.getAsDecl());
3326
3327 if (PrevTypedef && isDeclInScope(PrevTypedef, SearchDC, S) &&
3328 Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
3329 Context.getCanonicalType(Context.getTypeDeclType(New))) {
3330 Diag(Loc, diag::err_tag_definition_of_typedef)
3331 << Context.getTypeDeclType(New)
3332 << PrevTypedef->getUnderlyingType();
3333 Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
3334 Invalid = true;
3335 }
3336 }
3337
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003338 if (Invalid)
3339 New->setInvalidDecl();
3340
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003341 if (Attr)
3342 ProcessDeclAttributeList(New, Attr);
3343
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003344 // If we're declaring or defining a tag in function prototype scope
3345 // in C, note that this type can only be used within the function.
Douglas Gregor3218c4b2009-01-09 22:42:13 +00003346 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3347 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3348
Douglas Gregor7df7b6b2008-12-15 16:32:14 +00003349 // Set the lexical context. If the tag has a C++ scope specifier, the
3350 // lexical context will be different from the semantic context.
Douglas Gregor1931b442009-02-03 00:34:39 +00003351 New->setLexicalDeclContext(CurContext);
Douglas Gregor0b7a1582009-01-17 00:42:38 +00003352
3353 if (TK == TK_Definition)
3354 New->startDefinition();
Reid Spencer5f016e22007-07-11 17:01:13 +00003355
3356 // If this has an identifier, add it to the scope stack.
3357 if (Name) {
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00003358 S = getNonFieldDeclScope(S);
Douglas Gregor1931b442009-02-03 00:34:39 +00003359 PushOnScopeChains(New, S);
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003360 } else {
Douglas Gregor1931b442009-02-03 00:34:39 +00003361 CurContext->addDecl(New);
Reid Spencer5f016e22007-07-11 17:01:13 +00003362 }
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +00003363
Reid Spencer5f016e22007-07-11 17:01:13 +00003364 return New;
3365}
3366
Douglas Gregor72de6672009-01-08 20:45:30 +00003367void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +00003368 AdjustDeclIfTemplate(TagD);
Douglas Gregor72de6672009-01-08 20:45:30 +00003369 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3370
3371 // Enter the tag context.
3372 PushDeclContext(S, Tag);
3373
3374 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3375 FieldCollector->StartClass();
3376
3377 if (Record->getIdentifier()) {
3378 // C++ [class]p2:
3379 // [...] The class-name is also inserted into the scope of the
3380 // class itself; this is known as the injected-class-name. For
3381 // purposes of access checking, the injected-class-name is treated
3382 // as if it were a public member name.
3383 RecordDecl *InjectedClassName
3384 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3385 CurContext, Record->getLocation(),
3386 Record->getIdentifier(), Record);
3387 InjectedClassName->setImplicit();
3388 PushOnScopeChains(InjectedClassName, S);
3389 }
3390 }
3391}
3392
3393void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +00003394 AdjustDeclIfTemplate(TagD);
Douglas Gregor72de6672009-01-08 20:45:30 +00003395 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3396
3397 if (isa<CXXRecordDecl>(Tag))
3398 FieldCollector->FinishClass();
3399
3400 // Exit this scope of this tag's definition.
3401 PopDeclContext();
3402
3403 // Notify the consumer that we've defined a tag.
3404 Consumer.HandleTagDeclDefinition(Tag);
3405}
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00003406
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003407bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattnercd087072008-12-12 04:56:04 +00003408 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003409 // FIXME: 6.7.2.1p4 - verify the field type.
3410
3411 llvm::APSInt Value;
3412 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3413 return true;
3414
Chris Lattnercd087072008-12-12 04:56:04 +00003415 // Zero-width bitfield is ok for anonymous field.
3416 if (Value == 0 && FieldName)
3417 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3418
3419 if (Value.isNegative())
3420 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003421
3422 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3423 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattnercd087072008-12-12 04:56:04 +00003424 if (TypeSize && Value.getZExtValue() > TypeSize)
3425 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3426 << FieldName << (unsigned)TypeSize;
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003427
3428 return false;
3429}
3430
Steve Naroff08d92e42007-09-15 18:49:24 +00003431/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00003432/// to create a FieldDecl object for it.
Douglas Gregor44b43212008-12-11 16:49:14 +00003433Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Reid Spencer5f016e22007-07-11 17:01:13 +00003434 SourceLocation DeclStart,
3435 Declarator &D, ExprTy *BitfieldWidth) {
3436 IdentifierInfo *II = D.getIdentifier();
3437 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00003438 SourceLocation Loc = DeclStart;
Douglas Gregor44b43212008-12-11 16:49:14 +00003439 RecordDecl *Record = (RecordDecl *)TagD;
Reid Spencer5f016e22007-07-11 17:01:13 +00003440 if (II) Loc = D.getIdentifierLoc();
3441
3442 // FIXME: Unnamed fields can be handled in various different ways, for
3443 // example, unnamed unions inject all members into the struct namespace!
Reid Spencer5f016e22007-07-11 17:01:13 +00003444
Reid Spencer5f016e22007-07-11 17:01:13 +00003445 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00003446 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3447 bool InvalidDecl = false;
Sebastian Redl64b45f72009-01-05 20:52:13 +00003448
Reid Spencer5f016e22007-07-11 17:01:13 +00003449 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3450 // than a variably modified type.
Eli Friedman9db13972008-02-15 12:53:51 +00003451 if (T->isVariablyModifiedType()) {
Anders Carlsson540b1462009-02-20 18:53:20 +00003452 Diag(Loc, diag::err_typecheck_field_variable_size);
3453 T = Context.IntTy;
3454 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00003455 }
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003456
3457 if (BitWidth) {
3458 if (VerifyBitField(Loc, II, T, BitWidth))
3459 InvalidDecl = true;
3460 } else {
3461 // Not a bitfield.
3462
3463 // validate II.
3464
3465 }
3466
Chris Lattner7a21bd02009-02-20 20:41:34 +00003467 FieldDecl *NewFD = FieldDecl::Create(Context, Record,
3468 Loc, II, T, BitWidth,
3469 D.getDeclSpec().getStorageClassSpec() ==
3470 DeclSpec::SCS_mutable);
Douglas Gregor44b43212008-12-11 16:49:14 +00003471
Douglas Gregor72de6672009-01-08 20:45:30 +00003472 if (II) {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00003473 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregor72de6672009-01-08 20:45:30 +00003474 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3475 && !isa<TagDecl>(PrevDecl)) {
3476 Diag(Loc, diag::err_duplicate_member) << II;
3477 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3478 NewFD->setInvalidDecl();
3479 Record->setInvalidDecl();
3480 }
3481 }
3482
Sebastian Redl64b45f72009-01-05 20:52:13 +00003483 if (getLangOptions().CPlusPlus) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00003484 CheckExtraCXXDefaultArguments(D);
Sebastian Redl64b45f72009-01-05 20:52:13 +00003485 if (!T->isPODType())
3486 cast<CXXRecordDecl>(Record)->setPOD(false);
3487 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00003488
Chris Lattner3ff30c82008-06-29 00:02:00 +00003489 ProcessDeclAttributes(NewFD, D);
Fariborz Jahanianf6123ca2009-02-19 00:22:47 +00003490 if (T.isObjCGCWeak())
Fariborz Jahanianed7e9ef2009-02-18 18:14:41 +00003491 Diag(Loc, diag::warn_attribute_weak_on_field);
Anders Carlssonad148062008-02-16 00:29:18 +00003492
Steve Naroff5912a352007-08-28 20:14:24 +00003493 if (D.getInvalidType() || InvalidDecl)
3494 NewFD->setInvalidDecl();
Douglas Gregor44b43212008-12-11 16:49:14 +00003495
Douglas Gregor72de6672009-01-08 20:45:30 +00003496 if (II) {
Douglas Gregor44b43212008-12-11 16:49:14 +00003497 PushOnScopeChains(NewFD, S);
Douglas Gregor72de6672009-01-08 20:45:30 +00003498 } else
Douglas Gregor482b77d2009-01-12 23:27:07 +00003499 Record->addDecl(NewFD);
Douglas Gregor44b43212008-12-11 16:49:14 +00003500
Steve Naroff5912a352007-08-28 20:14:24 +00003501 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00003502}
3503
Fariborz Jahanian89204a12007-10-01 16:53:59 +00003504/// TranslateIvarVisibility - Translate visibility from a token ID to an
3505/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003506static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00003507TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00003508 switch (ivarVisibility) {
Chris Lattner33d34a62008-10-12 00:28:42 +00003509 default: assert(0 && "Unknown visitibility kind");
3510 case tok::objc_private: return ObjCIvarDecl::Private;
3511 case tok::objc_public: return ObjCIvarDecl::Public;
3512 case tok::objc_protected: return ObjCIvarDecl::Protected;
3513 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Narofff13271f2007-09-14 23:09:53 +00003514 }
3515}
3516
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00003517/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3518/// in order to create an IvarDecl object for it.
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003519Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00003520 SourceLocation DeclStart,
3521 Declarator &D, ExprTy *BitfieldWidth,
3522 tok::ObjCKeywordKind Visibility) {
Douglas Gregor72de6672009-01-08 20:45:30 +00003523
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003524 IdentifierInfo *II = D.getIdentifier();
3525 Expr *BitWidth = (Expr*)BitfieldWidth;
3526 SourceLocation Loc = DeclStart;
3527 if (II) Loc = D.getIdentifierLoc();
3528
3529 // FIXME: Unnamed fields can be handled in various different ways, for
3530 // example, unnamed unions inject all members into the struct namespace!
3531
Anders Carlsson9f1e5722008-12-06 20:33:04 +00003532 QualType T = GetTypeForDeclarator(D, S);
3533 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3534 bool InvalidDecl = false;
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003535
3536 if (BitWidth) {
Steve Naroff63359c82009-02-20 17:57:11 +00003537 // 6.7.2.1p3, 6.7.2.1p4
3538 if (VerifyBitField(Loc, II, T, BitWidth))
3539 InvalidDecl = true;
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003540 } else {
3541 // Not a bitfield.
3542
3543 // validate II.
3544
3545 }
3546
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003547 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3548 // than a variably modified type.
3549 if (T->isVariablyModifiedType()) {
Anders Carlsson96e05bc2008-12-07 00:20:55 +00003550 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003551 InvalidDecl = true;
3552 }
3553
Ted Kremenekb8db21d2008-07-23 18:04:17 +00003554 // Get the visibility (access control) for this ivar.
3555 ObjCIvarDecl::AccessControl ac =
3556 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3557 : ObjCIvarDecl::None;
3558
3559 // Construct the decl.
Argyrios Kyrtzidis0c00aac2009-02-17 20:20:37 +00003560 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, CurContext, Loc, II, T,ac,
Steve Naroff8f3b2652008-07-16 18:22:22 +00003561 (Expr *)BitfieldWidth);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003562
Douglas Gregor72de6672009-01-08 20:45:30 +00003563 if (II) {
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00003564 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregor72de6672009-01-08 20:45:30 +00003565 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3566 && !isa<TagDecl>(PrevDecl)) {
3567 Diag(Loc, diag::err_duplicate_member) << II;
3568 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3569 NewID->setInvalidDecl();
3570 }
3571 }
3572
Ted Kremenekb8db21d2008-07-23 18:04:17 +00003573 // Process attributes attached to the ivar.
Chris Lattner3ff30c82008-06-29 00:02:00 +00003574 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003575
3576 if (D.getInvalidType() || InvalidDecl)
3577 NewID->setInvalidDecl();
Ted Kremenekb8db21d2008-07-23 18:04:17 +00003578
Douglas Gregor72de6672009-01-08 20:45:30 +00003579 if (II) {
3580 // FIXME: When interfaces are DeclContexts, we'll need to add
3581 // these to the interface.
3582 S->AddDecl(NewID);
3583 IdResolver.AddDecl(NewID);
3584 }
3585
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00003586 return NewID;
3587}
3588
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00003589void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00003590 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00003591 DeclTy **Fields, unsigned NumFields,
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00003592 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar7d076642008-10-03 17:33:35 +00003593 AttributeList *Attr) {
Steve Naroff74216642007-09-14 22:20:54 +00003594 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3595 assert(EnclosingDecl && "missing record or interface decl");
3596 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
3597
Reid Spencer5f016e22007-07-11 17:01:13 +00003598 // Verify that all the fields are okay.
3599 unsigned NumNamedMembers = 0;
3600 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003601
Reid Spencer5f016e22007-07-11 17:01:13 +00003602 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroff74216642007-09-14 22:20:54 +00003603 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3604 assert(FD && "missing field decl");
3605
Reid Spencer5f016e22007-07-11 17:01:13 +00003606 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00003607 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003608
Douglas Gregor72de6672009-01-08 20:45:30 +00003609 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003610 // Remember all fields written by the user.
3611 RecFields.push_back(FD);
3612 }
Steve Narofff13271f2007-09-14 23:09:53 +00003613
Reid Spencer5f016e22007-07-11 17:01:13 +00003614 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00003615 if (FDTy->isFunctionType()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003616 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003617 << FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +00003618 FD->setInvalidDecl();
3619 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003620 continue;
3621 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003622 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
3623 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003624 if (!Record) { // Incomplete ivar type is always an error.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00003625 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3626 diag::err_field_incomplete);
Steve Naroff74216642007-09-14 22:20:54 +00003627 FD->setInvalidDecl();
3628 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00003629 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003630 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003631 if (i != NumFields-1 || // ... that the last member ...
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003632 !Record->isStruct() || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00003633 !FDTy->isArrayType()) { //... may have incomplete array type.
Douglas Gregor4ec339f2009-01-19 19:26:10 +00003634 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3635 diag::err_field_incomplete);
Steve Naroff74216642007-09-14 22:20:54 +00003636 FD->setInvalidDecl();
3637 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003638 continue;
3639 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003640 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003641 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003642 << FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +00003643 FD->setInvalidDecl();
3644 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003645 continue;
3646 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003647 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003648 if (Record)
3649 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003650 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003651 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3652 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00003653 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003654 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3655 // If this is a member of a union, then entire union becomes "flexible".
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003656 if (Record && Record->isUnion()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003657 Record->setHasFlexibleArrayMember(true);
3658 } else {
3659 // If this is a struct/class and this is not the last element, reject
3660 // it. Note that GCC supports variable sized arrays in the middle of
3661 // structures.
3662 if (i != NumFields-1) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003663 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003664 << FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +00003665 FD->setInvalidDecl();
3666 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003667 continue;
3668 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003669 // We support flexible arrays at the end of structs in other structs
3670 // as an extension.
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003671 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003672 << FD->getDeclName();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00003673 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00003674 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00003675 }
3676 }
3677 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00003678 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003679 if (FDTy->isObjCInterfaceType()) {
Steve Naroffccef3712009-02-20 22:59:16 +00003680 Diag(FD->getLocation(), diag::err_statically_allocated_object);
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00003681 FD->setInvalidDecl();
3682 EnclosingDecl->setInvalidDecl();
3683 continue;
3684 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003685 // Keep track of the number of named members.
Douglas Gregor72de6672009-01-08 20:45:30 +00003686 if (FD->getIdentifier())
Reid Spencer5f016e22007-07-11 17:01:13 +00003687 ++NumNamedMembers;
Reid Spencer5f016e22007-07-11 17:01:13 +00003688 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00003689
Reid Spencer5f016e22007-07-11 17:01:13 +00003690 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +00003691 if (Record) {
Douglas Gregor44b43212008-12-11 16:49:14 +00003692 Record->completeDefinition(Context);
Chris Lattnere1e79852008-02-06 00:51:33 +00003693 } else {
Chris Lattnera91d3812008-02-05 22:40:55 +00003694 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian60f8c862008-12-13 20:28:25 +00003695 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattner38af2de2009-02-20 21:35:13 +00003696 ID->setIVarList(ClsFields, RecFields.size(), Context);
3697 ID->setLocEnd(RBrac);
3698
Fariborz Jahanian3281eff2008-12-16 01:08:35 +00003699 // Must enforce the rule that ivars in the base classes may not be
3700 // duplicates.
Fariborz Jahanian375d37c2008-12-17 22:21:44 +00003701 if (ID->getSuperClass()) {
3702 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3703 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3704 ObjCIvarDecl* Ivar = (*IVI);
3705 IdentifierInfo *II = Ivar->getIdentifier();
Fariborz Jahaniana5afdd02009-02-16 19:35:27 +00003706 ObjCIvarDecl* prevIvar = ID->getSuperClass()->lookupInstanceVariable(II);
Fariborz Jahanian375d37c2008-12-17 22:21:44 +00003707 if (prevIvar) {
3708 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregor72de6672009-01-08 20:45:30 +00003709 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian3281eff2008-12-16 01:08:35 +00003710 }
Fariborz Jahanian375d37c2008-12-17 22:21:44 +00003711 }
Fariborz Jahanian3281eff2008-12-16 01:08:35 +00003712 }
Fariborz Jahanian60f8c862008-12-13 20:28:25 +00003713 }
Chris Lattnera91d3812008-02-05 22:40:55 +00003714 else if (ObjCImplementationDecl *IMPDecl =
3715 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003716 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
Chris Lattner38af2de2009-02-20 21:35:13 +00003717 IMPDecl->setIVarList(ClsFields, RecFields.size(), Context);
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00003718 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00003719 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00003720 }
Daniel Dunbar7d076642008-10-03 17:33:35 +00003721
3722 if (Attr)
3723 ProcessDeclAttributeList(Record, Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00003724}
3725
Steve Naroff08d92e42007-09-15 18:49:24 +00003726Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00003727 DeclTy *lastEnumConst,
3728 SourceLocation IdLoc, IdentifierInfo *Id,
3729 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattner0ed844b2008-04-04 06:12:32 +00003730 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Reid Spencer5f016e22007-07-11 17:01:13 +00003731 EnumConstantDecl *LastEnumConst =
3732 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3733 Expr *Val = static_cast<Expr*>(val);
3734
Chris Lattner31e05722007-08-26 06:24:45 +00003735 // The scope passed in may not be a decl scope. Zip up the scope tree until
3736 // we find one that is.
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00003737 S = getNonFieldDeclScope(S);
Chris Lattner31e05722007-08-26 06:24:45 +00003738
Reid Spencer5f016e22007-07-11 17:01:13 +00003739 // Verify that there isn't already something declared with this name in this
3740 // scope.
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00003741 NamedDecl *PrevDecl = LookupName(S, Id, LookupOrdinaryName);
Douglas Gregorf57172b2008-12-08 18:40:42 +00003742 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00003743 // Maybe we will complain about the shadowed template parameter.
3744 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3745 // Just pretend that we didn't see the previous declaration.
3746 PrevDecl = 0;
3747 }
3748
3749 if (PrevDecl) {
Argyrios Kyrtzidis0ff12f02008-07-16 21:01:53 +00003750 // When in C++, we may get a TagDecl with the same name; in this case the
3751 // enum constant will 'hide' the tag.
3752 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3753 "Received TagDecl when not in C++!");
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +00003754 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003755 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner3c73c412008-11-19 08:23:25 +00003756 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Reid Spencer5f016e22007-07-11 17:01:13 +00003757 else
Chris Lattner3c73c412008-11-19 08:23:25 +00003758 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner5f4a6822008-11-23 23:12:31 +00003759 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Ted Kremenek8189cde2009-02-07 01:47:29 +00003760 Val->Destroy(Context);
Reid Spencer5f016e22007-07-11 17:01:13 +00003761 return 0;
3762 }
3763 }
3764
3765 llvm::APSInt EnumVal(32);
3766 QualType EltTy;
3767 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00003768 // Make sure to promote the operand type to int.
3769 UsualUnaryConversions(Val);
3770
Reid Spencer5f016e22007-07-11 17:01:13 +00003771 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3772 SourceLocation ExpLoc;
Anders Carlsson49184b22008-12-05 16:33:57 +00003773 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Ted Kremenek8189cde2009-02-07 01:47:29 +00003774 Val->Destroy(Context);
Chris Lattnerb7416f92007-08-27 17:37:24 +00003775 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00003776 } else {
3777 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003778 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00003779 }
3780
3781 if (!Val) {
3782 if (LastEnumConst) {
3783 // Assign the last value + 1.
3784 EnumVal = LastEnumConst->getInitVal();
3785 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00003786
3787 // Check for overflow on increment.
3788 if (EnumVal < LastEnumConst->getInitVal())
3789 Diag(IdLoc, diag::warn_enum_value_overflow);
3790
Chris Lattnerb7416f92007-08-27 17:37:24 +00003791 EltTy = LastEnumConst->getType();
3792 } else {
3793 // First value, set to zero.
3794 EltTy = Context.IntTy;
Chris Lattner98be4942008-03-05 18:54:05 +00003795 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00003796 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003797 }
3798
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00003799 EnumConstantDecl *New =
Chris Lattner0ed844b2008-04-04 06:12:32 +00003800 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00003801 Val, EnumVal);
Reid Spencer5f016e22007-07-11 17:01:13 +00003802
3803 // Register this decl in the current scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00003804 PushOnScopeChains(New, S);
Douglas Gregor45579f52008-12-17 02:04:30 +00003805
Reid Spencer5f016e22007-07-11 17:01:13 +00003806 return New;
3807}
3808
Steve Naroff02408c62008-08-07 14:08:16 +00003809// FIXME: For consistency with ActOnFields(), we should have the parser
3810// pass in the source location for the left/right braces.
Steve Naroff08d92e42007-09-15 18:49:24 +00003811void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00003812 DeclTy **Elements, unsigned NumElements) {
3813 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregor074149e2009-01-05 19:45:36 +00003814 QualType EnumType = Context.getTypeDeclType(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +00003815
Chris Lattnere37f0be2007-08-28 05:10:31 +00003816 // TODO: If the result value doesn't fit in an int, it must be a long or long
3817 // long value. ISO C does not support this, but GCC does as an extension,
3818 // emit a warning.
Chris Lattner98be4942008-03-05 18:54:05 +00003819 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattnere37f0be2007-08-28 05:10:31 +00003820
Chris Lattnerac609682007-08-28 06:15:15 +00003821 // Verify that all the values are okay, compute the size of the values, and
3822 // reverse the list.
3823 unsigned NumNegativeBits = 0;
3824 unsigned NumPositiveBits = 0;
3825
3826 // Keep track of whether all elements have type int.
3827 bool AllElementsInt = true;
3828
Reid Spencer5f016e22007-07-11 17:01:13 +00003829 for (unsigned i = 0; i != NumElements; ++i) {
3830 EnumConstantDecl *ECD =
3831 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3832 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00003833
3834 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattner211a30e2007-08-28 05:27:00 +00003835 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattnera73349d2008-02-26 00:33:57 +00003836 assert(InitVal.getBitWidth() >= IntWidth &&
3837 "Should have promoted value to int");
Chris Lattner211a30e2007-08-28 05:27:00 +00003838 if (InitVal.getBitWidth() > IntWidth) {
3839 llvm::APSInt V(InitVal);
3840 V.trunc(IntWidth);
3841 V.extend(InitVal.getBitWidth());
3842 if (V != InitVal)
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003843 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3844 << InitVal.toString(10);
Chris Lattner211a30e2007-08-28 05:27:00 +00003845 }
Chris Lattnerac609682007-08-28 06:15:15 +00003846
3847 // Keep track of the size of positive and negative values.
Chris Lattnera73349d2008-02-26 00:33:57 +00003848 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00003849 NumPositiveBits = std::max(NumPositiveBits,
3850 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00003851 else
Chris Lattner21dd8212008-01-14 21:47:29 +00003852 NumNegativeBits = std::max(NumNegativeBits,
3853 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00003854
Chris Lattnerac609682007-08-28 06:15:15 +00003855 // Keep track of whether every enum element has type int (very commmon).
3856 if (AllElementsInt)
3857 AllElementsInt = ECD->getType() == Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003858 }
3859
Chris Lattnerac609682007-08-28 06:15:15 +00003860 // Figure out the type that should be used for this enum.
3861 // FIXME: Support attribute(packed) on enums and -fshort-enums.
3862 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003863 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00003864
3865 if (NumNegativeBits) {
3866 // If there is a negative value, figure out the smallest integer type (of
3867 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003868 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00003869 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003870 BestWidth = IntWidth;
3871 } else {
Chris Lattner98be4942008-03-05 18:54:05 +00003872 BestWidth = Context.Target.getLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00003873
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003874 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00003875 BestType = Context.LongTy;
3876 else {
Chris Lattner98be4942008-03-05 18:54:05 +00003877 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00003878
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003879 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00003880 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3881 BestType = Context.LongLongTy;
3882 }
3883 }
3884 } else {
3885 // If there is no negative value, figure out which of uint, ulong, ulonglong
3886 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003887 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00003888 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003889 BestWidth = IntWidth;
3890 } else if (NumPositiveBits <=
Chris Lattner98be4942008-03-05 18:54:05 +00003891 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattnerac609682007-08-28 06:15:15 +00003892 BestType = Context.UnsignedLongTy;
Chris Lattner98be4942008-03-05 18:54:05 +00003893 } else {
3894 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003895 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00003896 "How could an initializer get larger than ULL?");
3897 BestType = Context.UnsignedLongLongTy;
3898 }
3899 }
3900
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003901 // Loop over all of the enumerator constants, changing their types to match
3902 // the type of the enum if needed.
3903 for (unsigned i = 0; i != NumElements; ++i) {
3904 EnumConstantDecl *ECD =
3905 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3906 if (!ECD) continue; // Already issued a diagnostic.
3907
3908 // Standard C says the enumerators have int type, but we allow, as an
3909 // extension, the enumerators to be larger than int size. If each
3910 // enumerator value fits in an int, type it as an int, otherwise type it the
3911 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3912 // that X has type 'int', not 'unsigned'.
Chris Lattnera73349d2008-02-26 00:33:57 +00003913 if (ECD->getType() == Context.IntTy) {
3914 // Make sure the init value is signed.
3915 llvm::APSInt IV = ECD->getInitVal();
3916 IV.setIsSigned(true);
3917 ECD->setInitVal(IV);
Douglas Gregorc9467cf2008-12-12 02:00:36 +00003918
3919 if (getLangOptions().CPlusPlus)
3920 // C++ [dcl.enum]p4: Following the closing brace of an
3921 // enum-specifier, each enumerator has the type of its
3922 // enumeration.
3923 ECD->setType(EnumType);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003924 continue; // Already int type.
Chris Lattnera73349d2008-02-26 00:33:57 +00003925 }
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003926
3927 // Determine whether the value fits into an int.
3928 llvm::APSInt InitVal = ECD->getInitVal();
3929 bool FitsInInt;
3930 if (InitVal.isUnsigned() || !InitVal.isNegative())
3931 FitsInInt = InitVal.getActiveBits() < IntWidth;
3932 else
3933 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3934
3935 // If it fits into an integer type, force it. Otherwise force it to match
3936 // the enum decl type.
3937 QualType NewTy;
3938 unsigned NewWidth;
3939 bool NewSign;
3940 if (FitsInInt) {
3941 NewTy = Context.IntTy;
3942 NewWidth = IntWidth;
3943 NewSign = true;
3944 } else if (ECD->getType() == BestType) {
3945 // Already the right type!
Douglas Gregorc9467cf2008-12-12 02:00:36 +00003946 if (getLangOptions().CPlusPlus)
3947 // C++ [dcl.enum]p4: Following the closing brace of an
3948 // enum-specifier, each enumerator has the type of its
3949 // enumeration.
3950 ECD->setType(EnumType);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003951 continue;
3952 } else {
3953 NewTy = BestType;
3954 NewWidth = BestWidth;
3955 NewSign = BestType->isSignedIntegerType();
3956 }
3957
3958 // Adjust the APSInt value.
3959 InitVal.extOrTrunc(NewWidth);
3960 InitVal.setIsSigned(NewSign);
3961 ECD->setInitVal(InitVal);
3962
3963 // Adjust the Expr initializer and type.
Chris Lattner13fd4162009-01-15 19:19:42 +00003964 if (ECD->getInitExpr())
Ted Kremenek8189cde2009-02-07 01:47:29 +00003965 ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3966 /*isLvalue=*/false));
Douglas Gregorc9467cf2008-12-12 02:00:36 +00003967 if (getLangOptions().CPlusPlus)
3968 // C++ [dcl.enum]p4: Following the closing brace of an
3969 // enum-specifier, each enumerator has the type of its
3970 // enumeration.
3971 ECD->setType(EnumType);
3972 else
3973 ECD->setType(NewTy);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00003974 }
Chris Lattnerac609682007-08-28 06:15:15 +00003975
Douglas Gregor44b43212008-12-11 16:49:14 +00003976 Enum->completeDefinition(Context, BestType);
Reid Spencer5f016e22007-07-11 17:01:13 +00003977}
3978
Anders Carlssondfab6cb2008-02-08 00:33:21 +00003979Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redl798d1192008-12-13 16:23:55 +00003980 ExprArg expr) {
3981 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
3982
Douglas Gregor4afa39d2009-01-20 01:17:11 +00003983 return FileScopeAsmDecl::Create(Context, CurContext, Loc, AsmString);
Anders Carlssondfab6cb2008-02-08 00:33:21 +00003984}
3985