blob: 51c479040b6088ced62e941b2cf8482a32c8c197 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Anders Carlssonc7436af2008-07-03 04:20:39 +000015#include "clang/AST/APValue.h"
Chris Lattner33aad6e2008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Chris Lattner4b009652007-07-25 00:24:17 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregor279272e2009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Chris Lattner6953a072008-06-26 18:38:35 +000020#include "clang/AST/ExprCXX.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021#include "clang/Parse/DeclSpec.h"
Chris Lattner4b009652007-07-25 00:24:17 +000022#include "clang/Basic/TargetInfo.h"
Steve Naroffa9eae582008-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 Lattner33aad6e2008-02-06 00:51:33 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroffa9eae582008-01-30 23:46:05 +000026#include "clang/Lex/HeaderSearch.h"
Chris Lattner4b009652007-07-25 00:24:17 +000027#include "llvm/ADT/SmallSet.h"
Douglas Gregor39677622008-12-11 20:41:00 +000028#include "llvm/ADT/STLExtras.h"
Douglas Gregor6e71edc2008-12-23 21:05:05 +000029#include <algorithm>
30#include <functional>
Chris Lattner4b009652007-07-25 00:24:17 +000031using namespace clang;
32
Douglas Gregorf2dbdca2009-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 Gregora60c62e2009-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 Gregorf2dbdca2009-02-04 19:16:12 +000041///
42/// If name lookup results in an ambiguity, this routine will complain
43/// and then return NULL.
Douglas Gregora60c62e2009-02-09 15:09:02 +000044Sema::TypeTy *Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
Douglas Gregor1075a162009-02-04 17:00:24 +000045 Scope *S, const CXXScopeSpec *SS) {
Chris Lattner31ccf0a2009-02-16 22:07:16 +000046 NamedDecl *IIDecl = 0;
Douglas Gregor411889e2009-02-13 23:20:09 +000047 LookupResult Result = LookupParsedName(S, SS, &II, LookupOrdinaryName,
48 false, false);
Douglas Gregor29dfa2f2009-01-15 00:26:24 +000049 switch (Result.getKind()) {
Chris Lattner31ccf0a2009-02-16 22:07:16 +000050 case LookupResult::NotFound:
51 case LookupResult::FoundOverloaded:
52 return 0;
Douglas Gregor1075a162009-02-04 17:00:24 +000053
Chris Lattner31ccf0a2009-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 Gregor1075a162009-02-04 17:00:24 +000059
Chris Lattner31ccf0a2009-02-16 22:07:16 +000060 case LookupResult::Found:
61 IIDecl = Result.getAsDecl();
62 break;
Douglas Gregor29dfa2f2009-01-15 00:26:24 +000063 }
64
Steve Naroffa4e04982009-01-29 18:09:31 +000065 if (IIDecl) {
Chris Lattner31ccf0a2009-02-16 22:07:16 +000066 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +000067 // Check whether we can use this type
68 (void)DiagnoseUseOfDecl(IIDecl, NameLoc);
Chris Lattner31ccf0a2009-02-16 22:07:16 +000069
Douglas Gregora60c62e2009-02-09 15:09:02 +000070 return Context.getTypeDeclType(TD).getAsOpaquePtr();
Chris Lattner31ccf0a2009-02-16 22:07:16 +000071 }
72
73 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
Douglas Gregoraa57e862009-02-18 21:56:37 +000074 // Check whether we can use this interface.
75 (void)DiagnoseUseOfDecl(IIDecl, NameLoc);
Chris Lattner31ccf0a2009-02-16 22:07:16 +000076
Douglas Gregora60c62e2009-02-09 15:09:02 +000077 return Context.getObjCInterfaceType(IDecl).getAsOpaquePtr();
Chris Lattner31ccf0a2009-02-16 22:07:16 +000078 }
79
80 // Otherwise, could be a variable, function etc.
Steve Naroffa4e04982009-01-29 18:09:31 +000081 }
Steve Naroff81f1bba2007-09-06 21:24:23 +000082 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +000083}
84
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000085DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000086 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000087 // A C++ out-of-line method will return to the file declaration context.
Argiris Kirtzidis881964b2008-11-09 23:41:00 +000088 if (MD->isOutOfLineDefinition())
89 return MD->getLexicalDeclContext();
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000090
Chris Lattner2cb744b2009-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").
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000093 // The parsing of a C++ inline method happens at the declaration context of
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000094 // the topmost (non-nested) class it is lexically declared in.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000095 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
96 DC = MD->getParent();
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000097 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
Argiris Kirtzidis38f16712008-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
Argiris Kirtzidis881964b2008-11-09 23:41:00 +0000105 if (isa<ObjCMethodDecl>(DC))
106 return Context.getTranslationUnitDecl();
107
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +0000108 return DC->getLexicalParent();
Argiris Kirtzidis38f16712008-07-01 10:37:29 +0000109}
110
Douglas Gregor8acb7272008-12-11 16:49:14 +0000111void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000112 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xu2c9b8102008-12-08 07:14:51 +0000113 "The next DeclContext should be lexically contained in the current one.");
Chris Lattneref87a202008-04-22 18:39:57 +0000114 CurContext = DC;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000115 S->setEntity(DC);
Chris Lattnereee57c02008-04-04 06:12:32 +0000116}
117
Chris Lattnerf3874bc2008-04-06 04:47:34 +0000118void Sema::PopDeclContext() {
119 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor8acb7272008-12-11 16:49:14 +0000120
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000121 CurContext = getContainingDC(CurContext);
Chris Lattnereee57c02008-04-04 06:12:32 +0000122}
123
Douglas Gregorfcb19192009-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
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000143/// Add this decl to the scope shadowed decl chains.
144void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Douglas Gregord8028382009-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
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000152 S->AddDecl(D);
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000153
Douglas Gregor6e71edc2008-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 Gregoraf8ad2b2009-01-20 01:17:11 +0000157 CurContext->addDecl(D);
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000158
Argiris Kirtzidis59a9afb2008-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 Gregor3a423132009-01-07 16:34:42 +0000167 if (CurContext->getLookupContext()
168 == TD->getDeclContext()->getLookupContext()) {
Douglas Gregor8acb7272008-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 Gregor52ae30c2009-01-30 01:04:22 +0000172 I = IdResolver.begin(TD->getDeclName()),
Douglas Gregor6e71edc2008-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 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000193
Douglas Gregor6e71edc2008-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 Gregor8acb7272008-12-11 16:49:14 +0000201 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000202 }
Douglas Gregorfcb19192009-02-11 23:02:49 +0000203 } else if (isa<FunctionDecl>(D) &&
204 AllowOverloadingOfFunction(D, Context)) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000205 // We are pushing the name of a function, which might be an
206 // overloaded name.
Douglas Gregor8acb7272008-12-11 16:49:14 +0000207 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000208 IdentifierResolver::iterator Redecl
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000209 = std::find_if(IdResolver.begin(FD->getDeclName()),
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000210 IdResolver.end(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000211 std::bind1st(std::mem_fun(&NamedDecl::declarationReplaces),
Douglas Gregor6e71edc2008-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 Gregord2baafd2008-10-21 16:13:35 +0000218 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000219 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000220
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000221 IdResolver.AddDecl(D);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000222}
223
Steve Naroff9637a9b2007-10-09 22:01:59 +0000224void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattnera7549902007-08-26 06:24:45 +0000225 if (S->decl_empty()) return;
Douglas Gregordd861062008-12-05 18:15:24 +0000226 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
227 "Scope shouldn't contain decls!");
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000228
Chris Lattner4b009652007-07-25 00:24:17 +0000229 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
230 I != E; ++I) {
Steve Naroffd21bc0d2007-09-13 18:10:37 +0000231 Decl *TmpD = static_cast<Decl*>(*I);
232 assert(TmpD && "This decl didn't get pushed??");
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000233
Douglas Gregor8acb7272008-12-11 16:49:14 +0000234 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
235 NamedDecl *D = cast<NamedDecl>(TmpD);
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000236
Douglas Gregor8acb7272008-12-11 16:49:14 +0000237 if (!D->getDeclName()) continue;
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000238
Douglas Gregor8acb7272008-12-11 16:49:14 +0000239 // Remove this name from our lexical scope.
240 IdResolver.RemoveDecl(D);
Chris Lattner4b009652007-07-25 00:24:17 +0000241 }
242}
243
Steve Naroffe57c21a2008-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 Naroffe57c21a2008-04-01 23:04:06 +0000246ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff15208162008-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 Gregor09be81b2009-02-04 17:27:36 +0000249 NamedDecl *IDecl = LookupName(TUScope, Id, LookupOrdinaryName);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000250
Steve Naroff6384a012008-04-02 14:35:35 +0000251 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000252}
253
Douglas Gregor5eca99e2009-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 Lattnera9c87f22008-05-05 22:18:14 +0000286void Sema::InitBuiltinVaListType() {
Anders Carlsson36760332007-10-15 20:28:48 +0000287 if (!Context.getBuiltinVaListType().isNull())
288 return;
289
290 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Douglas Gregor09be81b2009-02-04 17:27:36 +0000291 NamedDecl *VaDecl = LookupName(TUScope, VaIdent, LookupOrdinaryName);
Steve Naroffbc8c52e2007-10-18 22:17:45 +0000292 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson36760332007-10-15 20:28:48 +0000293 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
294}
295
Douglas Gregor411889e2009-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 Gregoraf8ad2b2009-01-20 01:17:11 +0000300NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
Douglas Gregor411889e2009-02-13 23:20:09 +0000301 Scope *S, bool ForRedeclaration,
302 SourceLocation Loc) {
Chris Lattner4b009652007-07-25 00:24:17 +0000303 Builtin::ID BID = (Builtin::ID)bid;
304
Chris Lattnerb23469f2008-09-28 05:54:29 +0000305 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson36760332007-10-15 20:28:48 +0000306 InitBuiltinVaListType();
Douglas Gregor411889e2009-02-13 23:20:09 +0000307
Douglas Gregor1fa246d2009-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 Gregor411889e2009-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 Gregor2e8a7aa2009-02-16 21:58:21 +0000326 if (Context.BuiltinInfo.getHeaderName(BID) &&
Douglas Gregor411889e2009-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
Argiris Kirtzidis9d0d8bf2008-04-17 14:47:13 +0000334 FunctionDecl *New = FunctionDecl::Create(Context,
335 Context.getTranslationUnitDecl(),
Douglas Gregor411889e2009-02-13 23:20:09 +0000336 Loc, II, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000337 FunctionDecl::Extern, false);
Douglas Gregor411889e2009-02-13 23:20:09 +0000338 New->setImplicit();
339
Chris Lattnera9c87f22008-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 Gregoraf8ad2b2009-01-20 01:17:11 +0000346 FT->getArgType(i), VarDecl::None, 0));
Ted Kremenek8494c962009-01-14 00:42:25 +0000347 New->setParams(Context, &Params[0], Params.size());
Chris Lattnera9c87f22008-05-05 22:18:14 +0000348 }
349
Douglas Gregorb5af7382009-02-14 18:57:46 +0000350 AddKnownFunctionAttributes(New);
Chris Lattnera9c87f22008-05-05 22:18:14 +0000351
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000352 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregord394a272009-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();
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000358 PushOnScopeChains(New, TUScope);
Douglas Gregord394a272009-01-09 18:51:29 +0000359 CurContext = SavedContext;
Chris Lattner4b009652007-07-25 00:24:17 +0000360 return New;
361}
362
Sebastian Redlb93b49c2008-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 Lattnerf0939602008-11-20 05:45:14 +0000367 IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000368 DeclContext *Global = Context.getTranslationUnitDecl();
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000369 Decl *Std = LookupQualifiedName(Global, StdIdent, LookupNamespaceName);
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000370 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
371 }
372 return StdNamespace;
373}
374
Douglas Gregor083c23e2009-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.
Chris Lattner4b009652007-07-25 00:24:17 +0000380///
Douglas Gregor083c23e2009-02-16 17:45:42 +0000381bool Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Fariborz Jahaniande939672009-01-16 19:58:32 +0000382 bool objc_types = false;
Steve Naroff453a8782008-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 Lattner6d16b052008-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 Naroff453a8782008-09-09 14:32:20 +0000392 Context.setObjCIdType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000393 objc_types = true;
394 break;
Chris Lattner6d16b052008-11-20 05:41:43 +0000395 case 5:
396 if (!TypeID->isStr("Class"))
397 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000398 Context.setObjCClassType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000399 objc_types = true;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000400 return false;
Chris Lattner6d16b052008-11-20 05:41:43 +0000401 case 3:
402 if (!TypeID->isStr("SEL"))
403 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000404 Context.setObjCSelType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000405 objc_types = true;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000406 return false;
Chris Lattner6d16b052008-11-20 05:41:43 +0000407 case 8:
408 if (!TypeID->isStr("Protocol"))
409 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000410 Context.setObjCProtoType(New->getUnderlyingType());
Fariborz Jahaniande939672009-01-16 19:58:32 +0000411 objc_types = true;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000412 return false;
Steve Naroff453a8782008-09-09 14:32:20 +0000413 }
414 // Fall through - the typedef name was not a builtin type.
415 }
Douglas Gregorb31f2942009-01-28 17:15:10 +0000416 // Verify the old decl was also a type.
417 TypeDecl *Old = dyn_cast<TypeDecl>(OldD);
Chris Lattner4b009652007-07-25 00:24:17 +0000418 if (!Old) {
Douglas Gregorb31f2942009-01-28 17:15:10 +0000419 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000420 << New->getDeclName();
Fariborz Jahaniande939672009-01-16 19:58:32 +0000421 if (!objc_types)
422 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000423 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000424 }
Douglas Gregorb31f2942009-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 Lattnerbef8d622008-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 Gregorb31f2942009-01-28 17:15:10 +0000435
436 if (OldType != New->getUnderlyingType() &&
437 Context.getCanonicalType(OldType) !=
Chris Lattnerbef8d622008-07-25 18:44:27 +0000438 Context.getCanonicalType(New->getUnderlyingType())) {
Chris Lattner8d756812008-11-20 06:13:02 +0000439 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
Douglas Gregorb31f2942009-01-28 17:15:10 +0000440 << New->getUnderlyingType() << OldType;
Fariborz Jahaniande939672009-01-16 19:58:32 +0000441 if (!objc_types)
442 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000443 return true;
Chris Lattnerbef8d622008-07-25 18:44:27 +0000444 }
Douglas Gregor083c23e2009-02-16 17:45:42 +0000445 if (objc_types) return false;
446 if (getLangOptions().Microsoft) return false;
Eli Friedman324d5032008-06-11 06:20:39 +0000447
Douglas Gregor49ba1b72008-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 Gregor083c23e2009-02-16 17:45:42 +0000453 return false;
Douglas Gregor49ba1b72008-11-21 16:29:06 +0000454
455 // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
Steve Naroffa9eae582008-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 Dunbar4dbd8572008-09-12 18:10:20 +0000460 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
461 SourceManager &SrcMgr = Context.getSourceManager();
462 if (SrcMgr.isInSystemHeader(Old->getLocation()))
Douglas Gregor083c23e2009-02-16 17:45:42 +0000463 return false;
Daniel Dunbar4dbd8572008-09-12 18:10:20 +0000464 if (SrcMgr.isInSystemHeader(New->getLocation()))
Douglas Gregor083c23e2009-02-16 17:45:42 +0000465 return false;
Daniel Dunbar4dbd8572008-09-12 18:10:20 +0000466 }
Eli Friedman324d5032008-06-11 06:20:39 +0000467
Chris Lattnerb1753422008-11-23 21:45:46 +0000468 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000469 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000470 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000471}
472
Chris Lattner6953a072008-06-26 18:38:35 +0000473/// DeclhasAttr - returns true if decl Declaration already has the target
474/// attribute.
Chris Lattner402b3372008-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 Lattner402b3372008-03-03 03:28:21 +0000487 while (attr) {
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000488 tmp = attr;
489 attr = attr->getNext();
Chris Lattner402b3372008-03-03 03:28:21 +0000490
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000491 if (!DeclHasAttr(New, tmp) && tmp->isMerged()) {
492 tmp->setInherited(true);
493 New->addAttr(tmp);
Chris Lattner402b3372008-03-03 03:28:21 +0000494 } else {
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000495 tmp->setNext(0);
496 delete(tmp);
Chris Lattner402b3372008-03-03 03:28:21 +0000497 }
498 }
Nuno Lopes77654342008-06-01 22:53:53 +0000499
500 Old->invalidateAttrs();
Chris Lattner402b3372008-03-03 03:28:21 +0000501}
502
Chris Lattner3e254fb2008-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 Gregord2baafd2008-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 Gregor083c23e2009-02-16 17:45:42 +0000512///
513/// Returns true if there was an error, false otherwise.
514bool Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000515 assert(!isa<OverloadedFunctionDecl>(OldD) &&
516 "Cannot merge with an overloaded function declaration");
517
Chris Lattner4b009652007-07-25 00:24:17 +0000518 // Verify the old decl was also a function.
519 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
520 if (!Old) {
Chris Lattner8d756812008-11-20 06:13:02 +0000521 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000522 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000523 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000524 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000525 }
Douglas Gregord2baafd2008-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 Lattner1336cab2008-11-23 23:12:31 +0000531 PrevDiag = diag::note_previous_definition;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000532 else if (Old->isImplicit())
533 PrevDiag = diag::note_previous_implicit_declaration;
534 else
Chris Lattner1336cab2008-11-23 23:12:31 +0000535 PrevDiag = diag::note_previous_declaration;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000536
Chris Lattner42a21742008-04-06 23:10:54 +0000537 QualType OldQType = Context.getCanonicalType(Old->getType());
538 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner60476ff2007-11-20 19:04:50 +0000539
Douglas Gregord2baafd2008-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 Gregor411889e2009-02-13 23:20:09 +0000551 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000552 return true;
Douglas Gregord2baafd2008-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 Gregor411889e2009-02-13 23:20:09 +0000563 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000564 return true;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000565 }
Douglas Gregorb9213832008-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 Gregor411889e2009-02-13 23:20:09 +0000584 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregorb9213832008-12-15 21:24:18 +0000585 }
Douglas Gregord2baafd2008-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 Gregoraa57e862009-02-18 21:56:37 +0000594
595 // Merge the "deleted" flag.
596 if (Old->isDeleted())
597 New->setDeleted();
598
Douglas Gregord2baafd2008-10-21 16:13:35 +0000599 return MergeCXXFunctionDecl(New, Old);
600 }
601
602 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregor42214c52008-04-21 02:02:58 +0000603 }
Chris Lattner3e254fb2008-04-08 04:40:51 +0000604
605 // C: Function types need to be compatible, not identical. This handles
Steve Naroff1d5bd642008-01-14 20:51:29 +0000606 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner3e254fb2008-04-08 04:40:51 +0000607 if (!getLangOptions().CPlusPlus &&
Eli Friedman0d9549b2008-08-22 00:56:42 +0000608 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregorf1196702009-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 Gregorca9f52e2009-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 Gregorf1196702009-02-16 18:20:44 +0000640 }
641
Douglas Gregor42214c52008-04-21 02:02:58 +0000642 MergeAttributes(New, Old);
Douglas Gregoraa57e862009-02-18 21:56:37 +0000643
644 // Merge the "deleted" flag.
645 if (Old->isDeleted())
646 New->setDeleted();
Douglas Gregorf1196702009-02-16 18:20:44 +0000647
Douglas Gregor083c23e2009-02-16 17:45:42 +0000648 return false;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000649 }
Chris Lattner1470b072007-11-06 06:07:26 +0000650
Steve Naroff6c9e7922008-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 Gregor083c23e2009-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 Gregor6b3cca62009-02-18 22:00:45 +0000663 return true;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000664 }
Steve Naroff6c9e7922008-01-16 15:01:34 +0000665
Douglas Gregor083c23e2009-02-16 17:45:42 +0000666 PrevDiag = diag::note_previous_builtin_declaration;
667 }
668
Chris Lattner271d4c22008-11-24 05:29:24 +0000669 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Douglas Gregor411889e2009-02-13 23:20:09 +0000670 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000671 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000672}
673
Steve Naroffb5e78152008-08-08 17:50:35 +0000674/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd5802092008-08-10 15:28:06 +0000675static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffb5e78152008-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 Naroff4b6bd3c2008-08-10 15:20:13 +0000687 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffb5e78152008-08-08 17:50:35 +0000688
Douglas Gregor3a423132009-01-07 16:34:42 +0000689 // FIXME: I don't think this will actually see all of the
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000690 // redefinitions. Can't we check this property on-the-fly?
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000691 for (IdentifierResolver::iterator I = IdResolver.begin(VD->getIdentifier()),
692 E = IdResolver.end();
693 I != E; ++I) {
Argiris Kirtzidis90842b62008-09-09 21:18:04 +0000694 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000695 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
696
Steve Naroff4b6bd3c2008-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 Naroffb5e78152008-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 Lattnerb1753422008-11-23 21:45:46 +0000715 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000716 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Sebastian Redlc5d44692009-02-08 10:49:44 +0000717 // One redefinition error is enough.
718 break;
Steve Naroffb5e78152008-08-08 17:50:35 +0000719 }
720 }
721 }
722}
723
Chris Lattner4b009652007-07-25 00:24:17 +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 Naroffb5e78152008-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.
Chris Lattner4b009652007-07-25 00:24:17 +0000731///
Douglas Gregor083c23e2009-02-16 17:45:42 +0000732bool Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Chris Lattner4b009652007-07-25 00:24:17 +0000733 // Verify the old decl was also a variable.
734 VarDecl *Old = dyn_cast<VarDecl>(OldD);
735 if (!Old) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000736 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000737 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000738 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000739 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000740 }
Chris Lattner402b3372008-03-03 03:28:21 +0000741
742 MergeAttributes(New, Old);
743
Eli Friedman4a480d62009-01-24 23:49:55 +0000744 // Merge the types
745 QualType MergedT = Context.mergeTypes(New->getType(), Old->getType());
746 if (MergedT.isNull()) {
Douglas Gregord1675382009-01-09 19:42:16 +0000747 Diag(New->getLocation(), diag::err_redefinition_different_type)
748 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000749 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000750 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000751 }
Eli Friedman4a480d62009-01-24 23:49:55 +0000752 New->setType(MergedT);
Steve Naroffb00247f2008-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 Lattner271d4c22008-11-24 05:29:24 +0000757 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000758 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000759 return true;
Steve Naroffb00247f2008-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 Lattner271d4c22008-11-24 05:29:24 +0000764 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000765 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000766 return true;
Steve Naroffb00247f2008-01-30 00:44:01 +0000767 }
Steve Naroff2f3c4432008-09-17 14:05:40 +0000768 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
769 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000770 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000771 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000772 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000773 }
Douglas Gregor083c23e2009-02-16 17:45:42 +0000774 return false;
Chris Lattner4b009652007-07-25 00:24:17 +0000775}
776
Chris Lattner3e254fb2008-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 Gregor46fe06e2009-01-19 19:26:10 +0000790 if (!Param->isInvalidDecl() &&
791 DiagnoseIncompleteType(Param->getLocation(), Param->getType(),
792 diag::err_typecheck_decl_incomplete_type)) {
Chris Lattner3e254fb2008-04-08 04:40:51 +0000793 Param->setInvalidDecl();
794 HasInvalidParm = true;
795 }
Chris Lattnerb0b42f62008-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 Gregorca9f52e2009-02-16 20:58:07 +0000799 if (Param->getIdentifier() == 0 &&
800 !Param->isImplicit() &&
801 !getLangOptions().CPlusPlus)
Chris Lattnerb0b42f62008-12-17 07:32:46 +0000802 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000803 }
804
805 return HasInvalidParm;
806}
807
Chris Lattner4b009652007-07-25 00:24:17 +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 Gregora60c62e2009-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 Gregorb748fc52009-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 Gregord406b032009-02-06 22:42:48 +0000830 if (!DS.isMissingDeclaratorOk() &&
831 DS.getTypeSpecType() != DeclSpec::TST_error) {
Douglas Gregoredd94e92009-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 Gregor72de8492009-01-17 02:55:50 +0000834 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
835 Tag && isa<EnumDecl>(Tag)) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000836 Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
Douglas Gregor80c720e2009-01-13 23:10:51 +0000837 << DS.getSourceRange();
838 return Tag;
839 }
840
Sebastian Redlb7605e82008-12-28 15:28:59 +0000841 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
842 << DS.getSourceRange();
843 return 0;
844 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000845
Douglas Gregor723d3332009-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 Gregor09be81b2009-02-04 17:27:36 +0000872 NamedDecl *PrevDecl = LookupQualifiedName(Owner, (*F)->getDeclName(),
873 LookupOrdinaryName, true);
Douglas Gregor723d3332009-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 Gregor9ac66d22009-01-20 16:54:50 +0000892 Owner->makeDeclVisibleInContext(*F);
Douglas Gregor723d3332009-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 Gregorc7f01612009-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 Gregor2d87eb02009-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 Gregorc7f01612009-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 Gregor723d3332009-01-07 00:43:41 +00001000 } else {
1001 // FIXME: Check GNU C semantics
Douglas Gregorb748fc52009-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 Gregor723d3332009-01-07 00:43:41 +00001007 }
1008
1009 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregorb748fc52009-01-12 22:49:06 +00001010 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
1011 << (int)getLangOptions().CPlusPlus;
Douglas Gregor723d3332009-01-07 00:43:41 +00001012 Invalid = true;
1013 }
1014
1015 // Create a declaration for this anonymous struct/union.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001016 NamedDecl *Anon = 0;
Douglas Gregor723d3332009-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 Gregoraf8ad2b2009-01-20 01:17:11 +00001021 /*BitWidth=*/0, /*Mutable=*/false);
Douglas Gregorc7f01612009-01-07 19:46:03 +00001022 Anon->setAccess(AS_public);
1023 if (getLangOptions().CPlusPlus)
1024 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregor723d3332009-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 Gregoraf8ad2b2009-01-20 01:17:11 +00001047 SC, DS.getSourceRange().getBegin());
Douglas Gregor723d3332009-01-07 00:43:41 +00001048 }
Douglas Gregorc7f01612009-01-07 19:46:03 +00001049 Anon->setImplicit();
Douglas Gregor723d3332009-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 Gregor03b2ad22009-01-12 23:27:07 +00001054 Owner->addDecl(Anon);
Douglas Gregor723d3332009-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 Gregorb748fc52009-01-12 22:49:06 +00001059 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
1060 Invalid = true;
Douglas Gregor723d3332009-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;
Chris Lattner4b009652007-07-25 00:24:17 +00001074}
1075
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001076bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType,
1077 bool DirectInit) {
Steve Naroffe14e5542007-09-02 02:04:30 +00001078 // Get the type before calling CheckSingleAssignmentConstraints(), since
1079 // it can promote the expression.
Chris Lattner005ed752008-01-04 18:04:52 +00001080 QualType InitType = Init->getType();
Douglas Gregor6fd35572008-12-19 17:40:08 +00001081
Douglas Gregor6214d8a2009-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 Gregor6fd35572008-12-19 17:40:08 +00001092
Chris Lattner005ed752008-01-04 18:04:52 +00001093 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
1094 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
1095 InitType, Init, "initializing");
Steve Naroffe14e5542007-09-02 02:04:30 +00001096}
1097
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001098bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001099 const ArrayType *AT = Context.getAsArrayType(DeclT);
1100
1101 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroff0d4e6ad2008-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 Friedman8ff07782008-02-15 18:16:39 +00001107 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001108 ArrayType::Normal, 0);
Chris Lattnera1923f62008-08-04 07:31:14 +00001109 } else {
1110 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001111 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnera1923f62008-08-04 07:31:14 +00001112 // FIXME: Avoid truncation for 64-bit length strings.
1113 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001114 Diag(strLiteral->getSourceRange().getBegin(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00001115 diag::warn_initializer_string_for_char_array_too_long)
1116 << strLiteral->getSourceRange();
Steve Naroff0d4e6ad2008-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 Lattnera1923f62008-08-04 07:31:14 +00001125 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Narofff3cb5142008-01-25 00:51:06 +00001126 if (AT && AT->getElementType()->isCharType()) {
Anders Carlsson37704be2009-01-24 17:47:50 +00001127 return dyn_cast<StringLiteral>(Init->IgnoreParens());
Steve Narofff3cb5142008-01-25 00:51:06 +00001128 }
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001129 return 0;
1130}
1131
Douglas Gregor6428e762008-11-05 15:29:30 +00001132bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
1133 SourceLocation InitLoc,
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001134 DeclarationName InitEntity,
1135 bool DirectInit) {
Douglas Gregorf1ae3e02008-12-18 21:49:58 +00001136 if (DeclType->isDependentType() || Init->isTypeDependent())
1137 return false;
1138
Douglas Gregor81c29152008-10-29 00:13:59 +00001139 // C++ [dcl.init.ref]p1:
Sebastian Redl51504af2008-11-24 20:06:50 +00001140 // A variable declared to be a T&, that is "reference to type T"
Douglas Gregor81c29152008-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 Gregor6214d8a2009-01-14 15:45:31 +00001144 return CheckReferenceInit(Init, DeclType, 0, false, DirectInit);
Douglas Gregor81c29152008-10-29 00:13:59 +00001145
Steve Naroff8e9337f2008-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 Lattnera1923f62008-08-04 07:31:14 +00001148 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Chris Lattner9d2cf082008-11-19 05:27:50 +00001149 return Diag(InitLoc, diag::err_variable_object_no_init)
1150 << VAT->getSizeExpr()->getSourceRange();
Steve Naroff8e9337f2008-01-21 23:53:58 +00001151
Steve Naroffcb69fb72007-12-10 22:44:33 +00001152 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
1153 if (!InitList) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001154 // FIXME: Handle wide strings
1155 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
1156 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedman65280992008-02-08 00:48:24 +00001157
Douglas Gregor6428e762008-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 Gregor6214d8a2009-01-14 15:45:31 +00001174 InitEntity,
1175 DirectInit? IK_Direct : IK_Copy);
Douglas Gregor6428e762008-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 Gregor6fd35572008-12-19 17:40:08 +00001193 if (!PerformImplicitConversion(Init, DeclType, "initializing"))
Douglas Gregor6428e762008-11-05 15:29:30 +00001194 return false;
Chris Lattner70b93d82008-11-18 22:52:51 +00001195
Douglas Gregor62ae25a2008-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 Gregor6428e762008-11-05 15:29:30 +00001204 }
1205
Steve Naroffb2f72412008-09-29 20:07:05 +00001206 // C99 6.7.8p16.
Eli Friedman65280992008-02-08 00:48:24 +00001207 if (DeclType->isArrayType())
Chris Lattner9d2cf082008-11-19 05:27:50 +00001208 return Diag(Init->getLocStart(), diag::err_array_init_list_required)
1209 << Init->getSourceRange();
Eli Friedman65280992008-02-08 00:48:24 +00001210
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001211 return CheckSingleInitializer(Init, DeclType, DirectInit);
Douglas Gregord45210d2009-01-30 22:09:00 +00001212 }
Eli Friedman38b7a912008-06-06 19:40:52 +00001213
Douglas Gregor849afc32009-01-29 00:45:39 +00001214 bool hadError = CheckInitList(InitList, DeclType);
1215 Init = InitList;
1216 return hadError;
Steve Naroffe14e5542007-09-02 02:04:30 +00001217}
1218
Douglas Gregor6704b312008-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 Gregora60c62e2009-02-09 15:09:02 +00001232 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor6704b312008-11-17 22:58:34 +00001233 Ty = Context.getCanonicalType(Ty);
1234 return Context.DeclarationNames.getCXXConstructorName(Ty);
1235 }
1236
1237 case Declarator::DK_Destructor: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001238 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor6704b312008-11-17 22:58:34 +00001239 Ty = Context.getCanonicalType(Ty);
1240 return Context.DeclarationNames.getCXXDestructorName(Ty);
1241 }
1242
1243 case Declarator::DK_Conversion: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001244 // FIXME: We'd like to keep the non-canonical type for diagnostics!
Douglas Gregor6704b312008-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 Gregor96a32dd2008-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 Gregor6704b312008-11-17 22:58:34 +00001254 }
1255
1256 assert(false && "Unknown name kind");
1257 return DeclarationName();
1258}
1259
Douglas Gregor46cfe452009-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 Gregorc5cbc242008-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 Jahaniandfb1c372007-11-08 23:49:49 +00001283Sema::DeclTy *
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001284Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1285 bool IsFunctionDefinition) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001286 NamedDecl *LastDeclarator = dyn_cast_or_null<NamedDecl>((Decl *)lastDecl);
Douglas Gregor6704b312008-11-17 22:58:34 +00001287 DeclarationName Name = GetNameForDeclarator(D);
1288
Chris Lattner4b009652007-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 Gregor6704b312008-11-17 22:58:34 +00001291 if (!Name) {
Chris Lattnercd61d592008-11-11 06:13:16 +00001292 if (!D.getInvalidType()) // Reject this if we think it is valid.
1293 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner8ba580c2008-11-19 05:08:23 +00001294 diag::err_declarator_need_ident)
1295 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00001296 return 0;
1297 }
1298
Chris Lattnera7549902007-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 Gregor8acb7272008-12-11 16:49:14 +00001301 while ((S->getFlags() & Scope::DeclScope) == 0 ||
Douglas Gregor279272e2009-02-04 19:02:06 +00001302 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattnera7549902007-08-26 06:24:45 +00001303 S = S->getParent();
1304
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001305 DeclContext *DC;
Douglas Gregor09be81b2009-02-04 17:27:36 +00001306 NamedDecl *PrevDecl;
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001307 NamedDecl *New;
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001308 bool InvalidDecl = false;
Douglas Gregor083c23e2009-02-16 17:45:42 +00001309
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001310 // See if this is a redefinition of a variable in the same scope.
Douglas Gregor52ae30c2009-01-30 01:04:22 +00001311 if (!D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid()) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001312 DC = CurContext;
Douglas Gregor4d6b1022009-02-17 03:23:10 +00001313 PrevDecl = LookupName(S, Name, LookupOrdinaryName, true,
1314 D.getDeclSpec().getStorageClassSpec() !=
1315 DeclSpec::SCS_static,
Douglas Gregor411889e2009-02-13 23:20:09 +00001316 D.getIdentifierLoc());
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001317 } else { // Something like "int foo::x;"
1318 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregor411889e2009-02-13 23:20:09 +00001319 PrevDecl = LookupQualifiedName(DC, Name, LookupOrdinaryName, true);
Argiris Kirtzidis054a2632008-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 Gregorc5cbc242008-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 Gregor98341042008-12-12 08:25:50 +00001333 // class X {
1334 // void f();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001335 // void f(float);
Douglas Gregor98341042008-12-12 08:25:50 +00001336 // };
1337 //
Douglas Gregorc5cbc242008-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 Gregor46cfe452009-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)) {
Argiris Kirtzidis054a2632008-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 Gregor46cfe452009-02-06 17:46:57 +00001353 if (isa<FunctionDecl>(CurContext))
Chris Lattner254de7d2008-11-23 20:28:15 +00001354 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Douglas Gregor46cfe452009-02-06 17:46:57 +00001355 else
Chris Lattner254de7d2008-11-23 20:28:15 +00001356 Diag(L, diag::err_invalid_declarator_scope)
Douglas Gregor46cfe452009-02-06 17:46:57 +00001357 << Name << cast<NamedDecl>(DC) << R;
Douglas Gregor8acb7272008-12-11 16:49:14 +00001358 InvalidDecl = true;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001359 }
1360 }
1361
Douglas Gregor2715a1f2008-12-08 18:40:42 +00001362 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00001363 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001364 InvalidDecl = InvalidDecl
1365 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregordd861062008-12-05 18:15:24 +00001366 // Just pretend that we didn't see the previous declaration.
1367 PrevDecl = 0;
1368 }
1369
Douglas Gregor1d661552008-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 Gregorb31f2942009-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 Gregor1d661552008-04-13 21:07:44 +00001376 PrevDecl = 0;
1377
Chris Lattner82bb4792007-11-14 06:34:38 +00001378 QualType R = GetTypeForDeclarator(D, S);
Chris Lattner21759472009-02-19 23:13:55 +00001379 if (R.isNull()) {
1380 InvalidDecl = true;
1381 R = Context.IntTy;
1382 }
Chris Lattner82bb4792007-11-14 06:34:38 +00001383
Douglas Gregor083c23e2009-02-16 17:45:42 +00001384 bool Redeclaration = false;
Chris Lattner4b009652007-07-25 00:24:17 +00001385 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001386 New = ActOnTypedefDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001387 InvalidDecl, Redeclaration);
Chris Lattner82bb4792007-11-14 06:34:38 +00001388 } else if (R.getTypePtr()->isFunctionType()) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001389 New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001390 IsFunctionDefinition, InvalidDecl,
1391 Redeclaration);
Chris Lattner4b009652007-07-25 00:24:17 +00001392 } else {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001393 New = ActOnVariableDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001394 InvalidDecl, Redeclaration);
Chris Lattner4b009652007-07-25 00:24:17 +00001395 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001396
1397 if (New == 0)
1398 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001399
Argiris Kirtzidis881964b2008-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 Gregor083c23e2009-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))
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00001407 PushOnScopeChains(New, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001408 // If any semantic error occurred, mark the decl as invalid.
1409 if (D.getInvalidType() || InvalidDecl)
1410 New->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00001411
1412 return New;
1413}
1414
Eli Friedmand4314282009-02-21 00:44:51 +00001415/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
1416/// types into constant array types in certain situations which would otherwise
1417/// be errors (for GCC compatibility).
1418static QualType TryToFixInvalidVariablyModifiedType(QualType T,
1419 ASTContext &Context,
1420 bool &SizeIsNegative) {
1421 // This method tries to turn a variable array into a constant
1422 // array even when the size isn't an ICE. This is necessary
1423 // for compatibility with code that depends on gcc's buggy
1424 // constant expression folding, like struct {char x[(int)(char*)2];}
1425 SizeIsNegative = false;
1426
1427 if (const PointerType* PTy = dyn_cast<PointerType>(T)) {
1428 QualType Pointee = PTy->getPointeeType();
1429 QualType FixedType =
1430 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative);
1431 if (FixedType.isNull()) return FixedType;
Eli Friedman73cd1e82009-02-21 00:58:02 +00001432 FixedType = Context.getPointerType(FixedType);
1433 FixedType.setCVRQualifiers(T.getCVRQualifiers());
1434 return FixedType;
Eli Friedmand4314282009-02-21 00:44:51 +00001435 }
1436
1437 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
1438 if (!VLATy) return QualType();
1439
1440 Expr::EvalResult EvalResult;
1441 if (!VLATy->getSizeExpr() ||
1442 !VLATy->getSizeExpr()->Evaluate(EvalResult, Context))
1443 return QualType();
1444
1445 assert(EvalResult.Val.isInt() && "Size expressions must be integers!");
1446 llvm::APSInt &Res = EvalResult.Val.getInt();
1447 if (Res >= llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
1448 return Context.getConstantArrayType(VLATy->getElementType(),
1449 Res, ArrayType::Normal, 0);
1450
1451 SizeIsNegative = true;
1452 return QualType();
1453}
1454
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001455NamedDecl*
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001456Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001457 QualType R, Decl* LastDeclarator,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001458 Decl* PrevDecl, bool& InvalidDecl,
1459 bool &Redeclaration) {
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001460 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1461 if (D.getCXXScopeSpec().isSet()) {
1462 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1463 << D.getCXXScopeSpec().getRange();
1464 InvalidDecl = true;
1465 // Pretend we didn't see the scope specifier.
1466 DC = 0;
1467 }
1468
1469 // Check that there are no default arguments (C++ only).
1470 if (getLangOptions().CPlusPlus)
1471 CheckExtraCXXDefaultArguments(D);
1472
1473 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
1474 if (!NewTD) return 0;
1475
1476 // Handle attributes prior to checking for duplicates in MergeVarDecl
1477 ProcessDeclAttributes(NewTD, D);
1478 // Merge the decl with the existing one if appropriate. If the decl is
1479 // in an outer scope, it isn't the same thing.
1480 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Douglas Gregor083c23e2009-02-16 17:45:42 +00001481 Redeclaration = true;
1482 if (MergeTypeDefDecl(NewTD, PrevDecl))
1483 InvalidDecl = true;
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001484 }
1485
1486 if (S->getFnParent() == 0) {
Eli Friedmand4314282009-02-21 00:44:51 +00001487 QualType T = NewTD->getUnderlyingType();
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001488 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1489 // then it shall have block scope.
Eli Friedmand4314282009-02-21 00:44:51 +00001490 if (T->isVariablyModifiedType()) {
1491 bool SizeIsNegative;
1492 QualType FixedTy =
1493 TryToFixInvalidVariablyModifiedType(T, Context, SizeIsNegative);
1494 if (!FixedTy.isNull()) {
1495 Diag(D.getIdentifierLoc(), diag::warn_illegal_constant_array_size);
1496 NewTD->setUnderlyingType(FixedTy);
1497 } else {
1498 if (SizeIsNegative)
1499 Diag(D.getIdentifierLoc(), diag::err_typecheck_negative_array_size);
1500 else if (T->isVariableArrayType())
1501 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1502 else
1503 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1504 InvalidDecl = true;
1505 }
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001506 }
1507 }
1508 return NewTD;
1509}
1510
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001511NamedDecl*
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001512Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001513 QualType R, Decl* LastDeclarator,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001514 Decl* PrevDecl, bool& InvalidDecl,
1515 bool &Redeclaration) {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001516 DeclarationName Name = GetNameForDeclarator(D);
1517
1518 // Check that there are no default arguments (C++ only).
1519 if (getLangOptions().CPlusPlus)
1520 CheckExtraCXXDefaultArguments(D);
1521
1522 if (R.getTypePtr()->isObjCInterfaceType()) {
Steve Naroffa442ad92009-02-20 22:59:16 +00001523 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object);
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001524 InvalidDecl = true;
1525 }
1526
1527 VarDecl *NewVD;
1528 VarDecl::StorageClass SC;
1529 switch (D.getDeclSpec().getStorageClassSpec()) {
1530 default: assert(0 && "Unknown storage class!");
1531 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1532 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1533 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1534 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1535 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1536 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1537 case DeclSpec::SCS_mutable:
1538 // mutable can only appear on non-static class members, so it's always
1539 // an error here
1540 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1541 InvalidDecl = true;
1542 SC = VarDecl::None;
1543 break;
1544 }
1545
1546 IdentifierInfo *II = Name.getAsIdentifierInfo();
1547 if (!II) {
1548 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1549 << Name.getAsString();
1550 return 0;
1551 }
1552
1553 if (DC->isRecord()) {
1554 // This is a static data member for a C++ class.
1555 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
1556 D.getIdentifierLoc(), II,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001557 R);
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001558 } else {
1559 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
1560 if (S->getFnParent() == 0) {
1561 // C99 6.9p2: The storage-class specifiers auto and register shall not
1562 // appear in the declaration specifiers in an external declaration.
1563 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1564 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
1565 InvalidDecl = true;
1566 }
1567 }
1568 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001569 II, R, SC,
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001570 // FIXME: Move to DeclGroup...
1571 D.getDeclSpec().getSourceRange().getBegin());
1572 NewVD->setThreadSpecified(ThreadSpecified);
1573 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001574 NewVD->setNextDeclarator(LastDeclarator);
1575
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001576 // Handle attributes prior to checking for duplicates in MergeVarDecl
1577 ProcessDeclAttributes(NewVD, D);
1578
1579 // Handle GNU asm-label extension (encoded as an attribute).
1580 if (Expr *E = (Expr*) D.getAsmLabel()) {
1581 // The parser guarantees this is a string.
1582 StringLiteral *SE = cast<StringLiteral>(E);
1583 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1584 SE->getByteLength())));
1585 }
1586
1587 // Emit an error if an address space was applied to decl with local storage.
1588 // This includes arrays of objects with address space qualifiers, but not
1589 // automatic variables that point to other address spaces.
1590 // ISO/IEC TR 18037 S5.1.2
1591 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1592 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1593 InvalidDecl = true;
1594 }
1595 // Merge the decl with the existing one if appropriate. If the decl is
1596 // in an outer scope, it isn't the same thing.
1597 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1598 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1599 // The user tried to define a non-static data member
1600 // out-of-line (C++ [dcl.meaning]p1).
1601 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1602 << D.getCXXScopeSpec().getRange();
1603 NewVD->Destroy(Context);
1604 return 0;
1605 }
1606
Douglas Gregor083c23e2009-02-16 17:45:42 +00001607 Redeclaration = true;
1608 if (MergeVarDecl(NewVD, PrevDecl))
1609 InvalidDecl = true;
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001610
1611 if (D.getCXXScopeSpec().isSet()) {
1612 // No previous declaration in the qualifying scope.
1613 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1614 << Name << D.getCXXScopeSpec().getRange();
1615 InvalidDecl = true;
1616 }
1617 }
1618 return NewVD;
1619}
1620
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001621NamedDecl*
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001622Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001623 QualType R, Decl *LastDeclarator,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001624 Decl* PrevDecl, bool IsFunctionDefinition,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001625 bool& InvalidDecl, bool &Redeclaration) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001626 assert(R.getTypePtr()->isFunctionType());
1627
1628 DeclarationName Name = GetNameForDeclarator(D);
1629 FunctionDecl::StorageClass SC = FunctionDecl::None;
1630 switch (D.getDeclSpec().getStorageClassSpec()) {
1631 default: assert(0 && "Unknown storage class!");
1632 case DeclSpec::SCS_auto:
1633 case DeclSpec::SCS_register:
1634 case DeclSpec::SCS_mutable:
1635 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func);
1636 InvalidDecl = true;
1637 break;
1638 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1639 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
1640 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
1641 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
1642 }
1643
1644 bool isInline = D.getDeclSpec().isInlineSpecified();
1645 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1646 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1647
1648 FunctionDecl *NewFD;
1649 if (D.getKind() == Declarator::DK_Constructor) {
1650 // This is a C++ constructor declaration.
1651 assert(DC->isRecord() &&
1652 "Constructors can only be declared in a member context");
1653
1654 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
1655
1656 // Create the new declaration
1657 NewFD = CXXConstructorDecl::Create(Context,
1658 cast<CXXRecordDecl>(DC),
1659 D.getIdentifierLoc(), Name, R,
1660 isExplicit, isInline,
1661 /*isImplicitlyDeclared=*/false);
1662
1663 if (InvalidDecl)
1664 NewFD->setInvalidDecl();
1665 } else if (D.getKind() == Declarator::DK_Destructor) {
1666 // This is a C++ destructor declaration.
1667 if (DC->isRecord()) {
1668 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
1669
1670 NewFD = CXXDestructorDecl::Create(Context,
1671 cast<CXXRecordDecl>(DC),
1672 D.getIdentifierLoc(), Name, R,
1673 isInline,
1674 /*isImplicitlyDeclared=*/false);
1675
1676 if (InvalidDecl)
1677 NewFD->setInvalidDecl();
1678 } else {
1679 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
1680
1681 // Create a FunctionDecl to satisfy the function definition parsing
1682 // code path.
1683 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001684 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001685 // FIXME: Move to DeclGroup...
1686 D.getDeclSpec().getSourceRange().getBegin());
1687 InvalidDecl = true;
1688 NewFD->setInvalidDecl();
1689 }
1690 } else if (D.getKind() == Declarator::DK_Conversion) {
1691 if (!DC->isRecord()) {
1692 Diag(D.getIdentifierLoc(),
1693 diag::err_conv_function_not_member);
1694 return 0;
1695 } else {
1696 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
1697
1698 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
1699 D.getIdentifierLoc(), Name, R,
1700 isInline, isExplicit);
1701
1702 if (InvalidDecl)
1703 NewFD->setInvalidDecl();
1704 }
1705 } else if (DC->isRecord()) {
1706 // This is a C++ method declaration.
1707 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
1708 D.getIdentifierLoc(), Name, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001709 (SC == FunctionDecl::Static), isInline);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001710 } else {
1711 NewFD = FunctionDecl::Create(Context, DC,
1712 D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001713 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001714 // FIXME: Move to DeclGroup...
1715 D.getDeclSpec().getSourceRange().getBegin());
1716 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001717 NewFD->setNextDeclarator(LastDeclarator);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001718
1719 // Set the lexical context. If the declarator has a C++
1720 // scope specifier, the lexical context will be different
1721 // from the semantic context.
1722 NewFD->setLexicalDeclContext(CurContext);
1723
1724 // Handle GNU asm-label extension (encoded as an attribute).
1725 if (Expr *E = (Expr*) D.getAsmLabel()) {
1726 // The parser guarantees this is a string.
1727 StringLiteral *SE = cast<StringLiteral>(E);
1728 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1729 SE->getByteLength())));
1730 }
1731
1732 // Copy the parameter declarations from the declarator D to
1733 // the function declaration NewFD, if they are available.
1734 if (D.getNumTypeObjects() > 0) {
1735 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1736
1737 // Create Decl objects for each parameter, adding them to the
1738 // FunctionDecl.
1739 llvm::SmallVector<ParmVarDecl*, 16> Params;
1740
1741 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1742 // function that takes no arguments, not a function that takes a
1743 // single void argument.
1744 // We let through "const void" here because Sema::GetTypeForDeclarator
1745 // already checks for that case.
1746 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1747 FTI.ArgInfo[0].Param &&
1748 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1749 // empty arg list, don't push any params.
1750 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1751
1752 // In C++, the empty parameter-type-list must be spelled "void"; a
1753 // typedef of void is not permitted.
1754 if (getLangOptions().CPlusPlus &&
1755 Param->getType().getUnqualifiedType() != Context.VoidTy) {
1756 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1757 }
1758 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1759 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1760 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1761 }
1762
1763 NewFD->setParams(Context, &Params[0], Params.size());
1764 } else if (R->getAsTypedefType()) {
1765 // When we're declaring a function with a typedef, as in the
1766 // following example, we'll need to synthesize (unnamed)
1767 // parameters for use in the declaration.
1768 //
1769 // @code
1770 // typedef void fn(int);
1771 // fn f;
1772 // @endcode
1773 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1774 if (!FT) {
1775 // This is a typedef of a function with no prototype, so we
1776 // don't need to do anything.
1777 } else if ((FT->getNumArgs() == 0) ||
1778 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1779 FT->getArgType(0)->isVoidType())) {
1780 // This is a zero-argument function. We don't need to do anything.
1781 } else {
1782 // Synthesize a parameter for each argument type.
1783 llvm::SmallVector<ParmVarDecl*, 16> Params;
1784 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1785 ArgType != FT->arg_type_end(); ++ArgType) {
Douglas Gregorca9f52e2009-02-16 20:58:07 +00001786 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC,
1787 SourceLocation(), 0,
1788 *ArgType, VarDecl::None,
1789 0);
1790 Param->setImplicit();
1791 Params.push_back(Param);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001792 }
1793
1794 NewFD->setParams(Context, &Params[0], Params.size());
1795 }
1796 }
1797
1798 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1799 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
1800 else if (isa<CXXDestructorDecl>(NewFD)) {
1801 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1802 Record->setUserDeclaredDestructor(true);
1803 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1804 // user-defined destructor.
1805 Record->setPOD(false);
1806 } else if (CXXConversionDecl *Conversion =
1807 dyn_cast<CXXConversionDecl>(NewFD))
1808 ActOnConversionDeclarator(Conversion);
1809
1810 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1811 if (NewFD->isOverloadedOperator() &&
1812 CheckOverloadedOperatorDeclaration(NewFD))
1813 NewFD->setInvalidDecl();
1814
1815 // Merge the decl with the existing one if appropriate. Since C functions
1816 // are in a flat namespace, make sure we consider decls in outer scopes.
Douglas Gregorfcb19192009-02-11 23:02:49 +00001817 bool OverloadableAttrRequired = false;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001818 if (PrevDecl &&
1819 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
Douglas Gregorfcb19192009-02-11 23:02:49 +00001820 // Determine whether NewFD is an overload of PrevDecl or
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001821 // a declaration that requires merging. If it's an overload,
1822 // there's no more work to do here; we'll just add the new
1823 // function to the scope.
1824 OverloadedFunctionDecl::function_iterator MatchedDecl;
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001825
1826 if (!getLangOptions().CPlusPlus &&
Douglas Gregor7f49ea22009-02-18 06:34:51 +00001827 AllowOverloadingOfFunction(PrevDecl, Context)) {
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001828 OverloadableAttrRequired = true;
1829
Douglas Gregor7f49ea22009-02-18 06:34:51 +00001830 // Functions marked "overloadable" must have a prototype (that
1831 // we can't get through declaration merging).
1832 if (!R->getAsFunctionTypeProto()) {
1833 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_no_prototype)
1834 << NewFD;
1835 InvalidDecl = true;
1836 Redeclaration = true;
1837
1838 // Turn this into a variadic function with no parameters.
1839 R = Context.getFunctionType(R->getAsFunctionType()->getResultType(),
1840 0, 0, true, 0);
1841 NewFD->setType(R);
1842 }
1843 }
1844
1845 if (PrevDecl &&
1846 (!AllowOverloadingOfFunction(PrevDecl, Context) ||
1847 !IsOverload(NewFD, PrevDecl, MatchedDecl))) {
Douglas Gregor083c23e2009-02-16 17:45:42 +00001848 Redeclaration = true;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001849 Decl *OldDecl = PrevDecl;
1850
1851 // If PrevDecl was an overloaded function, extract the
1852 // FunctionDecl that matched.
1853 if (isa<OverloadedFunctionDecl>(PrevDecl))
1854 OldDecl = *MatchedDecl;
1855
1856 // NewFD and PrevDecl represent declarations that need to be
1857 // merged.
Douglas Gregor083c23e2009-02-16 17:45:42 +00001858 if (MergeFunctionDecl(NewFD, OldDecl))
1859 InvalidDecl = true;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001860
Douglas Gregor083c23e2009-02-16 17:45:42 +00001861 if (!InvalidDecl) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001862 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1863
1864 // An out-of-line member function declaration must also be a
1865 // definition (C++ [dcl.meaning]p1).
1866 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1867 !InvalidDecl) {
1868 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1869 << D.getCXXScopeSpec().getRange();
1870 NewFD->setInvalidDecl();
1871 }
1872 }
1873 }
Douglas Gregor46cfe452009-02-06 17:46:57 +00001874 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001875
Douglas Gregor46cfe452009-02-06 17:46:57 +00001876 if (D.getCXXScopeSpec().isSet() &&
1877 (!PrevDecl || !Redeclaration)) {
1878 // The user tried to provide an out-of-line definition for a
1879 // function that is a member of a class or namespace, but there
1880 // was no such member function declared (C++ [class.mfct]p2,
1881 // C++ [namespace.memdef]p2). For example:
1882 //
1883 // class X {
1884 // void f() const;
1885 // };
1886 //
1887 // void X::f() { } // ill-formed
1888 //
1889 // Complain about this problem, and attempt to suggest close
1890 // matches (e.g., those that differ only in cv-qualifiers and
1891 // whether the parameter types are references).
Douglas Gregor46cfe452009-02-06 17:46:57 +00001892 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
Douglas Gregoree785232009-02-06 22:58:38 +00001893 << cast<NamedDecl>(DC) << D.getCXXScopeSpec().getRange();
Douglas Gregor46cfe452009-02-06 17:46:57 +00001894 InvalidDecl = true;
1895
1896 LookupResult Prev = LookupQualifiedName(DC, Name, LookupOrdinaryName,
1897 true);
1898 assert(!Prev.isAmbiguous() &&
1899 "Cannot have an ambiguity in previous-declaration lookup");
1900 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
1901 Func != FuncEnd; ++Func) {
1902 if (isa<FunctionDecl>(*Func) &&
1903 isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD))
1904 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001905 }
Douglas Gregor46cfe452009-02-06 17:46:57 +00001906
1907 PrevDecl = 0;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001908 }
Douglas Gregorbd4b0852009-02-02 21:35:47 +00001909
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001910 // Handle attributes. We need to have merged decls when handling attributes
1911 // (for example to check for conflicts, etc).
1912 ProcessDeclAttributes(NewFD, D);
Douglas Gregorb5af7382009-02-14 18:57:46 +00001913 AddKnownFunctionAttributes(NewFD);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001914
Douglas Gregorfcb19192009-02-11 23:02:49 +00001915 if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) {
1916 // If a function name is overloadable in C, then every function
1917 // with that name must be marked "overloadable".
1918 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001919 << Redeclaration << NewFD;
Douglas Gregorfcb19192009-02-11 23:02:49 +00001920 if (PrevDecl)
1921 Diag(PrevDecl->getLocation(),
1922 diag::note_attribute_overloadable_prev_overload);
1923 NewFD->addAttr(new OverloadableAttr);
1924 }
1925
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001926 if (getLangOptions().CPlusPlus) {
Sebastian Redl0d2157d2009-02-08 14:56:26 +00001927 // In C++, check default arguments now that we have merged decls. Unless
1928 // the lexical context is the class, because in this case this is done
1929 // during delayed parsing anyway.
1930 if (!CurContext->isRecord())
1931 CheckCXXDefaultArguments(NewFD);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001932
1933 // An out-of-line member function declaration must also be a
1934 // definition (C++ [dcl.meaning]p1).
1935 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
1936 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1937 << D.getCXXScopeSpec().getRange();
1938 InvalidDecl = true;
1939 }
1940 }
1941 return NewFD;
1942}
1943
Steve Narofffc08f5e2008-10-27 11:34:16 +00001944void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattner9d2cf082008-11-19 05:27:50 +00001945 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1946 << Init->getSourceRange();
Steve Narofffc08f5e2008-10-27 11:34:16 +00001947}
1948
Eli Friedman02c22ce2008-05-20 13:48:25 +00001949bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1950 switch (Init->getStmtClass()) {
1951 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001952 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001953 return true;
1954 case Expr::ParenExprClass: {
1955 const ParenExpr* PE = cast<ParenExpr>(Init);
1956 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1957 }
1958 case Expr::CompoundLiteralExprClass:
1959 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregor566782a2009-01-06 05:10:23 +00001960 case Expr::DeclRefExprClass:
1961 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001962 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman8cb86e32008-05-21 03:39:11 +00001963 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1964 if (VD->hasGlobalStorage())
1965 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001966 InitializerElementNotConstant(Init);
Eli Friedman8cb86e32008-05-21 03:39:11 +00001967 return true;
1968 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001969 if (isa<FunctionDecl>(D))
1970 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001971 InitializerElementNotConstant(Init);
Steve Narofff0b23542008-01-10 22:15:12 +00001972 return true;
1973 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001974 case Expr::MemberExprClass: {
1975 const MemberExpr *M = cast<MemberExpr>(Init);
1976 if (M->isArrow())
1977 return CheckAddressConstantExpression(M->getBase());
1978 return CheckAddressConstantExpressionLValue(M->getBase());
1979 }
1980 case Expr::ArraySubscriptExprClass: {
1981 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1982 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1983 return CheckAddressConstantExpression(ASE->getBase()) ||
1984 CheckArithmeticConstantExpression(ASE->getIdx());
1985 }
1986 case Expr::StringLiteralClass:
Chris Lattner69909292008-08-10 01:53:14 +00001987 case Expr::PredefinedExprClass:
Eli Friedman02c22ce2008-05-20 13:48:25 +00001988 return false;
1989 case Expr::UnaryOperatorClass: {
1990 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1991
1992 // C99 6.6p9
1993 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman8cb86e32008-05-21 03:39:11 +00001994 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001995
Steve Narofffc08f5e2008-10-27 11:34:16 +00001996 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001997 return true;
1998 }
1999 }
2000}
2001
2002bool Sema::CheckAddressConstantExpression(const Expr* Init) {
2003 switch (Init->getStmtClass()) {
2004 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002005 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002006 return true;
Chris Lattner0903cba2008-10-06 07:26:43 +00002007 case Expr::ParenExprClass:
2008 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00002009 case Expr::StringLiteralClass:
2010 case Expr::ObjCStringLiteralClass:
2011 return false;
Chris Lattner0903cba2008-10-06 07:26:43 +00002012 case Expr::CallExprClass:
Douglas Gregor65fedaf2008-11-14 16:09:21 +00002013 case Expr::CXXOperatorCallExprClass:
Chris Lattner0903cba2008-10-06 07:26:43 +00002014 // __builtin___CFStringMakeConstantString is a valid constant l-value.
Douglas Gregorb5af7382009-02-14 18:57:46 +00002015 if (cast<CallExpr>(Init)->isBuiltinCall(Context) ==
Chris Lattner0903cba2008-10-06 07:26:43 +00002016 Builtin::BI__builtin___CFStringMakeConstantString)
2017 return false;
2018
Steve Narofffc08f5e2008-10-27 11:34:16 +00002019 InitializerElementNotConstant(Init);
Chris Lattner0903cba2008-10-06 07:26:43 +00002020 return true;
2021
Eli Friedman02c22ce2008-05-20 13:48:25 +00002022 case Expr::UnaryOperatorClass: {
2023 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2024
2025 // C99 6.6p9
2026 if (Exp->getOpcode() == UnaryOperator::AddrOf)
2027 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
2028
2029 if (Exp->getOpcode() == UnaryOperator::Extension)
2030 return CheckAddressConstantExpression(Exp->getSubExpr());
2031
Steve Narofffc08f5e2008-10-27 11:34:16 +00002032 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002033 return true;
2034 }
2035 case Expr::BinaryOperatorClass: {
2036 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
2037 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2038
2039 Expr *PExp = Exp->getLHS();
2040 Expr *IExp = Exp->getRHS();
2041 if (IExp->getType()->isPointerType())
2042 std::swap(PExp, IExp);
2043
2044 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
2045 return CheckAddressConstantExpression(PExp) ||
2046 CheckArithmeticConstantExpression(IExp);
2047 }
Eli Friedman1fad3c62008-08-25 20:46:57 +00002048 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00002049 case Expr::CStyleCastExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002050 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman1fad3c62008-08-25 20:46:57 +00002051 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
2052 // Check for implicit promotion
2053 if (SubExpr->getType()->isFunctionType() ||
2054 SubExpr->getType()->isArrayType())
2055 return CheckAddressConstantExpressionLValue(SubExpr);
2056 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002057
2058 // Check for pointer->pointer cast
2059 if (SubExpr->getType()->isPointerType())
2060 return CheckAddressConstantExpression(SubExpr);
2061
Eli Friedman1fad3c62008-08-25 20:46:57 +00002062 if (SubExpr->getType()->isIntegralType()) {
2063 // Check for the special-case of a pointer->int->pointer cast;
2064 // this isn't standard, but some code requires it. See
2065 // PR2720 for an example.
2066 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
2067 if (SubCast->getSubExpr()->getType()->isPointerType()) {
2068 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
2069 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2070 if (IntWidth >= PointerWidth) {
2071 return CheckAddressConstantExpression(SubCast->getSubExpr());
2072 }
2073 }
2074 }
2075 }
2076 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002077 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedman1fad3c62008-08-25 20:46:57 +00002078 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002079
Steve Narofffc08f5e2008-10-27 11:34:16 +00002080 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002081 return true;
2082 }
2083 case Expr::ConditionalOperatorClass: {
2084 // FIXME: Should we pedwarn here?
2085 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
2086 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002087 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002088 return true;
2089 }
2090 if (CheckArithmeticConstantExpression(Exp->getCond()))
2091 return true;
2092 if (Exp->getLHS() &&
2093 CheckAddressConstantExpression(Exp->getLHS()))
2094 return true;
2095 return CheckAddressConstantExpression(Exp->getRHS());
2096 }
2097 case Expr::AddrLabelExprClass:
2098 return false;
2099 }
2100}
2101
Eli Friedman998dffb2008-06-09 05:05:07 +00002102static const Expr* FindExpressionBaseAddress(const Expr* E);
2103
2104static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
2105 switch (E->getStmtClass()) {
2106 default:
2107 return E;
2108 case Expr::ParenExprClass: {
2109 const ParenExpr* PE = cast<ParenExpr>(E);
2110 return FindExpressionBaseAddressLValue(PE->getSubExpr());
2111 }
2112 case Expr::MemberExprClass: {
2113 const MemberExpr *M = cast<MemberExpr>(E);
2114 if (M->isArrow())
2115 return FindExpressionBaseAddress(M->getBase());
2116 return FindExpressionBaseAddressLValue(M->getBase());
2117 }
2118 case Expr::ArraySubscriptExprClass: {
2119 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
2120 return FindExpressionBaseAddress(ASE->getBase());
2121 }
2122 case Expr::UnaryOperatorClass: {
2123 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2124
2125 if (Exp->getOpcode() == UnaryOperator::Deref)
2126 return FindExpressionBaseAddress(Exp->getSubExpr());
2127
2128 return E;
2129 }
2130 }
2131}
2132
2133static const Expr* FindExpressionBaseAddress(const Expr* E) {
2134 switch (E->getStmtClass()) {
2135 default:
2136 return E;
2137 case Expr::ParenExprClass: {
2138 const ParenExpr* PE = cast<ParenExpr>(E);
2139 return FindExpressionBaseAddress(PE->getSubExpr());
2140 }
2141 case Expr::UnaryOperatorClass: {
2142 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2143
2144 // C99 6.6p9
2145 if (Exp->getOpcode() == UnaryOperator::AddrOf)
2146 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
2147
2148 if (Exp->getOpcode() == UnaryOperator::Extension)
2149 return FindExpressionBaseAddress(Exp->getSubExpr());
2150
2151 return E;
2152 }
2153 case Expr::BinaryOperatorClass: {
2154 const BinaryOperator *Exp = cast<BinaryOperator>(E);
2155
2156 Expr *PExp = Exp->getLHS();
2157 Expr *IExp = Exp->getRHS();
2158 if (IExp->getType()->isPointerType())
2159 std::swap(PExp, IExp);
2160
2161 return FindExpressionBaseAddress(PExp);
2162 }
2163 case Expr::ImplicitCastExprClass: {
2164 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
2165
2166 // Check for implicit promotion
2167 if (SubExpr->getType()->isFunctionType() ||
2168 SubExpr->getType()->isArrayType())
2169 return FindExpressionBaseAddressLValue(SubExpr);
2170
2171 // Check for pointer->pointer cast
2172 if (SubExpr->getType()->isPointerType())
2173 return FindExpressionBaseAddress(SubExpr);
2174
2175 // We assume that we have an arithmetic expression here;
2176 // if we don't, we'll figure it out later
2177 return 0;
2178 }
Douglas Gregor035d0882008-10-28 15:36:24 +00002179 case Expr::CStyleCastExprClass: {
Eli Friedman998dffb2008-06-09 05:05:07 +00002180 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
2181
2182 // Check for pointer->pointer cast
2183 if (SubExpr->getType()->isPointerType())
2184 return FindExpressionBaseAddress(SubExpr);
2185
2186 // We assume that we have an arithmetic expression here;
2187 // if we don't, we'll figure it out later
2188 return 0;
2189 }
2190 }
2191}
2192
Anders Carlssone8bd9f22008-11-22 21:04:56 +00002193bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002194 switch (Init->getStmtClass()) {
2195 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002196 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002197 return true;
2198 case Expr::ParenExprClass: {
2199 const ParenExpr* PE = cast<ParenExpr>(Init);
2200 return CheckArithmeticConstantExpression(PE->getSubExpr());
2201 }
2202 case Expr::FloatingLiteralClass:
2203 case Expr::IntegerLiteralClass:
2204 case Expr::CharacterLiteralClass:
2205 case Expr::ImaginaryLiteralClass:
2206 case Expr::TypesCompatibleExprClass:
2207 case Expr::CXXBoolLiteralExprClass:
2208 return false;
Douglas Gregor65fedaf2008-11-14 16:09:21 +00002209 case Expr::CallExprClass:
2210 case Expr::CXXOperatorCallExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002211 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002212
2213 // Allow any constant foldable calls to builtins.
Douglas Gregorb5af7382009-02-14 18:57:46 +00002214 if (CE->isBuiltinCall(Context) && CE->isEvaluatable(Context))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002215 return false;
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002216
Steve Narofffc08f5e2008-10-27 11:34:16 +00002217 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002218 return true;
2219 }
Douglas Gregor566782a2009-01-06 05:10:23 +00002220 case Expr::DeclRefExprClass:
2221 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002222 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2223 if (isa<EnumConstantDecl>(D))
2224 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002225 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002226 return true;
2227 }
2228 case Expr::CompoundLiteralExprClass:
2229 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2230 // but vectors are allowed to be magic.
2231 if (Init->getType()->isVectorType())
2232 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002233 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002234 return true;
2235 case Expr::UnaryOperatorClass: {
2236 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2237
2238 switch (Exp->getOpcode()) {
2239 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2240 // See C99 6.6p3.
2241 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002242 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002243 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002244 case UnaryOperator::OffsetOf:
Eli Friedman02c22ce2008-05-20 13:48:25 +00002245 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2246 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002247 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002248 return true;
2249 case UnaryOperator::Extension:
2250 case UnaryOperator::LNot:
2251 case UnaryOperator::Plus:
2252 case UnaryOperator::Minus:
2253 case UnaryOperator::Not:
2254 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2255 }
2256 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002257 case Expr::SizeOfAlignOfExprClass: {
2258 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002259 // Special check for void types, which are allowed as an extension
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002260 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedman02c22ce2008-05-20 13:48:25 +00002261 return false;
2262 // alignof always evaluates to a constant.
2263 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002264 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002265 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002266 return true;
2267 }
2268 return false;
2269 }
2270 case Expr::BinaryOperatorClass: {
2271 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2272
2273 if (Exp->getLHS()->getType()->isArithmeticType() &&
2274 Exp->getRHS()->getType()->isArithmeticType()) {
2275 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2276 CheckArithmeticConstantExpression(Exp->getRHS());
2277 }
2278
Eli Friedman998dffb2008-06-09 05:05:07 +00002279 if (Exp->getLHS()->getType()->isPointerType() &&
2280 Exp->getRHS()->getType()->isPointerType()) {
2281 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2282 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2283
2284 // Only allow a null (constant integer) base; we could
2285 // allow some additional cases if necessary, but this
2286 // is sufficient to cover offsetof-like constructs.
2287 if (!LHSBase && !RHSBase) {
2288 return CheckAddressConstantExpression(Exp->getLHS()) ||
2289 CheckAddressConstantExpression(Exp->getRHS());
2290 }
2291 }
2292
Steve Narofffc08f5e2008-10-27 11:34:16 +00002293 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002294 return true;
2295 }
2296 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00002297 case Expr::CStyleCastExprClass: {
Nuno Lopes7dd54222009-02-02 22:57:15 +00002298 const CastExpr *CE = cast<CastExpr>(Init);
2299 const Expr *SubExpr = CE->getSubExpr();
2300
Eli Friedmand662caa2008-09-01 22:08:17 +00002301 if (SubExpr->getType()->isArithmeticType())
2302 return CheckArithmeticConstantExpression(SubExpr);
2303
Eli Friedman266df142008-09-02 09:37:00 +00002304 if (SubExpr->getType()->isPointerType()) {
2305 const Expr* Base = FindExpressionBaseAddress(SubExpr);
Nuno Lopes7dd54222009-02-02 22:57:15 +00002306 if (Base) {
2307 // the cast is only valid if done to a wide enough type
2308 if (Context.getTypeSize(CE->getType()) >=
2309 Context.getTypeSize(SubExpr->getType()))
2310 return false;
2311 } else {
2312 // If the pointer has a null base, this is an offsetof-like construct
2313 return CheckAddressConstantExpression(SubExpr);
2314 }
Eli Friedman266df142008-09-02 09:37:00 +00002315 }
2316
Steve Narofffc08f5e2008-10-27 11:34:16 +00002317 InitializerElementNotConstant(Init);
Eli Friedmand662caa2008-09-01 22:08:17 +00002318 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002319 }
2320 case Expr::ConditionalOperatorClass: {
2321 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner94d45412008-10-06 05:42:39 +00002322
2323 // If GNU extensions are disabled, we require all operands to be arithmetic
2324 // constant expressions.
2325 if (getLangOptions().NoExtensions) {
2326 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2327 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2328 CheckArithmeticConstantExpression(Exp->getRHS());
2329 }
2330
2331 // Otherwise, we have to emulate some of the behavior of fold here.
2332 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2333 // because it can constant fold things away. To retain compatibility with
2334 // GCC code, we see if we can fold the condition to a constant (which we
2335 // should always be able to do in theory). If so, we only require the
2336 // specified arm of the conditional to be a constant. This is a horrible
2337 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson8c3de802008-12-19 20:58:05 +00002338 Expr::EvalResult EvalResult;
2339 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2340 EvalResult.HasSideEffects) {
Chris Lattneref069662008-11-16 21:24:15 +00002341 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattner94d45412008-10-06 05:42:39 +00002342 // won't be able to either. Use it to emit the diagnostic though.
2343 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattneref069662008-11-16 21:24:15 +00002344 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattner94d45412008-10-06 05:42:39 +00002345 return Res;
2346 }
2347
2348 // Verify that the side following the condition is also a constant.
2349 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson8c3de802008-12-19 20:58:05 +00002350 if (EvalResult.Val.getInt() == 0)
Chris Lattner94d45412008-10-06 05:42:39 +00002351 std::swap(TrueSide, FalseSide);
2352
2353 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002354 return true;
Chris Lattner94d45412008-10-06 05:42:39 +00002355
2356 // Okay, the evaluated side evaluates to a constant, so we accept this.
2357 // Check to see if the other side is obviously not a constant. If so,
2358 // emit a warning that this is a GNU extension.
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002359 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner94d45412008-10-06 05:42:39 +00002360 Diag(Init->getExprLoc(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00002361 diag::ext_typecheck_expression_not_constant_but_accepted)
2362 << FalseSide->getSourceRange();
Chris Lattner94d45412008-10-06 05:42:39 +00002363 return false;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002364 }
2365 }
2366}
2367
2368bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00002369 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init))
2370 Init = DIE->getInit();
2371
Nuno Lopese7280452008-07-07 16:46:50 +00002372 Init = Init->IgnoreParens();
2373
Nate Begemand6d2f772009-01-18 03:20:47 +00002374 if (Init->isEvaluatable(Context))
Anders Carlssonf6791c62008-12-05 05:09:56 +00002375 return false;
2376
Eli Friedman02c22ce2008-05-20 13:48:25 +00002377 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2378 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2379 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2380
Nuno Lopese7280452008-07-07 16:46:50 +00002381 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2382 return CheckForConstantInitializer(e->getInitializer(), DclT);
2383
Douglas Gregorc9e012a2009-01-29 17:44:32 +00002384 if (isa<ImplicitValueInitExpr>(Init)) {
2385 // FIXME: In C++, check for non-POD types.
2386 return false;
2387 }
2388
Eli Friedman02c22ce2008-05-20 13:48:25 +00002389 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2390 unsigned numInits = Exp->getNumInits();
2391 for (unsigned i = 0; i < numInits; i++) {
2392 // FIXME: Need to get the type of the declaration for C++,
2393 // because it could be a reference?
Douglas Gregorf603b472009-01-28 21:54:33 +00002394
Eli Friedman02c22ce2008-05-20 13:48:25 +00002395 if (CheckForConstantInitializer(Exp->getInit(i),
2396 Exp->getInit(i)->getType()))
2397 return true;
2398 }
2399 return false;
2400 }
2401
Anders Carlssonf6791c62008-12-05 05:09:56 +00002402 // FIXME: We can probably remove some of this code below, now that
2403 // Expr::Evaluate is doing the heavy lifting for scalars.
2404
Eli Friedman02c22ce2008-05-20 13:48:25 +00002405 if (Init->isNullPointerConstant(Context))
2406 return false;
2407 if (Init->getType()->isArithmeticType()) {
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00002408 QualType InitTy = Context.getCanonicalType(Init->getType())
2409 .getUnqualifiedType();
Eli Friedman25086f02008-05-30 18:14:48 +00002410 if (InitTy == Context.BoolTy) {
2411 // Special handling for pointers implicitly cast to bool;
2412 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2413 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2414 Expr* SubE = ICE->getSubExpr();
2415 if (SubE->getType()->isPointerType() ||
2416 SubE->getType()->isArrayType() ||
2417 SubE->getType()->isFunctionType()) {
2418 return CheckAddressConstantExpression(Init);
2419 }
2420 }
2421 } else if (InitTy->isIntegralType()) {
2422 Expr* SubE = 0;
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00002423 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedman25086f02008-05-30 18:14:48 +00002424 SubE = CE->getSubExpr();
2425 // Special check for pointer cast to int; we allow as an extension
2426 // an address constant cast to an integer if the integer
2427 // is of an appropriate width (this sort of code is apparently used
2428 // in some places).
2429 // FIXME: Add pedwarn?
2430 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2431 if (SubE && (SubE->getType()->isPointerType() ||
2432 SubE->getType()->isArrayType() ||
2433 SubE->getType()->isFunctionType())) {
2434 unsigned IntWidth = Context.getTypeSize(Init->getType());
2435 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2436 if (IntWidth >= PointerWidth)
2437 return CheckAddressConstantExpression(Init);
2438 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002439 }
2440
2441 return CheckArithmeticConstantExpression(Init);
2442 }
2443
2444 if (Init->getType()->isPointerType())
2445 return CheckAddressConstantExpression(Init);
2446
Eli Friedman25086f02008-05-30 18:14:48 +00002447 // An array type at the top level that isn't an init-list must
2448 // be a string literal
Eli Friedman02c22ce2008-05-20 13:48:25 +00002449 if (Init->getType()->isArrayType())
2450 return false;
2451
Nuno Lopes1dc26762008-09-01 18:42:41 +00002452 if (Init->getType()->isFunctionType())
2453 return false;
2454
Steve Naroffdff3fb22008-10-02 17:12:56 +00002455 // Allow block exprs at top level.
2456 if (Init->getType()->isBlockPointerType())
2457 return false;
Nuno Lopes8260d5d2009-01-15 16:44:45 +00002458
2459 // GCC cast to union extension
2460 // note: the validity of the cast expr is checked by CheckCastTypes()
2461 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2462 QualType T = C->getType();
2463 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2464 }
2465
Steve Narofffc08f5e2008-10-27 11:34:16 +00002466 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002467 return true;
Steve Narofff0b23542008-01-10 22:15:12 +00002468}
2469
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002470void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002471 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2472}
2473
2474/// AddInitializerToDecl - Adds the initializer Init to the
2475/// declaration dcl. If DirectInit is true, this is C++ direct
2476/// initialization rather than copy initialization.
2477void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002478 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002479 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002480 assert(Init && "missing initializer");
Steve Naroff6a0e2092007-09-12 14:07:44 +00002481
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002482 // If there is no declaration, there was an error parsing it. Just ignore
2483 // the initializer.
2484 if (RealDecl == 0) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00002485 Init->Destroy(Context);
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002486 return;
2487 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002488
Steve Naroff420d0f52007-09-12 20:13:48 +00002489 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2490 if (!VDecl) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002491 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
Steve Naroff420d0f52007-09-12 20:13:48 +00002492 RealDecl->setInvalidDecl();
2493 return;
2494 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002495 // Get the decls type and save a reference for later, since
Steve Narofff0b23542008-01-10 22:15:12 +00002496 // CheckInitializerTypes may change it.
Steve Naroff420d0f52007-09-12 20:13:48 +00002497 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002498 if (VDecl->isBlockVarDecl()) {
2499 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002500 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff420d0f52007-09-12 20:13:48 +00002501 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002502 VDecl->setInvalidDecl();
2503 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002504 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002505 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002506 VDecl->setInvalidDecl();
Anders Carlssonea7140a2008-08-22 05:00:02 +00002507
2508 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
Eli Friedmanf4756c22009-02-20 01:34:21 +00002509 // Don't check invalid declarations to avoid emitting useless diagnostics.
2510 if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
Anders Carlssonea7140a2008-08-22 05:00:02 +00002511 if (SC == VarDecl::Static) // C99 6.7.8p4.
2512 CheckForConstantInitializer(Init, DclT);
2513 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002514 }
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002515 } else if (VDecl->isFileVarDecl()) {
2516 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff420d0f52007-09-12 20:13:48 +00002517 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002518 if (!VDecl->isInvalidDecl())
Douglas Gregor6428e762008-11-05 15:29:30 +00002519 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002520 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002521 VDecl->setInvalidDecl();
Steve Narofff0b23542008-01-10 22:15:12 +00002522
Anders Carlssonea7140a2008-08-22 05:00:02 +00002523 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
Eli Friedmanf4756c22009-02-20 01:34:21 +00002524 // Don't check invalid declarations to avoid emitting useless diagnostics.
2525 if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
Anders Carlssonea7140a2008-08-22 05:00:02 +00002526 // C99 6.7.8p4. All file scoped initializers need to be constant.
2527 CheckForConstantInitializer(Init, DclT);
2528 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002529 }
2530 // If the type changed, it means we had an incomplete type that was
2531 // completed by the initializer. For example:
2532 // int ary[] = { 1, 3, 5 };
2533 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb62f06b62007-11-29 19:09:19 +00002534 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002535 VDecl->setType(DclT);
Christopher Lamb62f06b62007-11-29 19:09:19 +00002536 Init->setType(DclT);
2537 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002538
2539 // Attach the initializer to the decl.
Steve Naroff420d0f52007-09-12 20:13:48 +00002540 VDecl->setInit(Init);
Steve Naroff6a0e2092007-09-12 14:07:44 +00002541 return;
2542}
2543
Douglas Gregor81c29152008-10-29 00:13:59 +00002544void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2545 Decl *RealDecl = static_cast<Decl *>(dcl);
2546
Argiris Kirtzidis9c0e9942008-11-07 13:01:22 +00002547 // If there is no declaration, there was an error parsing it. Just ignore it.
2548 if (RealDecl == 0)
2549 return;
2550
Douglas Gregor81c29152008-10-29 00:13:59 +00002551 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2552 QualType Type = Var->getType();
2553 // C++ [dcl.init.ref]p3:
2554 // The initializer can be omitted for a reference only in a
2555 // parameter declaration (8.3.5), in the declaration of a
2556 // function return type, in the declaration of a class member
2557 // within its class declaration (9.2), and where the extern
2558 // specifier is explicitly used.
Douglas Gregorb9213832008-12-15 21:24:18 +00002559 if (Type->isReferenceType() &&
2560 Var->getStorageClass() != VarDecl::Extern &&
2561 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner77d52da2008-11-20 06:06:08 +00002562 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattner271d4c22008-11-24 05:29:24 +00002563 << Var->getDeclName()
2564 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor5870a952008-11-03 20:45:27 +00002565 Var->setInvalidDecl();
2566 return;
2567 }
2568
2569 // C++ [dcl.init]p9:
2570 //
2571 // If no initializer is specified for an object, and the object
2572 // is of (possibly cv-qualified) non-POD class type (or array
2573 // thereof), the object shall be default-initialized; if the
2574 // object is of const-qualified type, the underlying class type
2575 // shall have a user-declared default constructor.
2576 if (getLangOptions().CPlusPlus) {
2577 QualType InitType = Type;
2578 if (const ArrayType *Array = Context.getAsArrayType(Type))
2579 InitType = Array->getElementType();
Douglas Gregorb9213832008-12-15 21:24:18 +00002580 if (Var->getStorageClass() != VarDecl::Extern &&
2581 Var->getStorageClass() != VarDecl::PrivateExtern &&
2582 InitType->isRecordType()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002583 const CXXConstructorDecl *Constructor
2584 = PerformInitializationByConstructor(InitType, 0, 0,
2585 Var->getLocation(),
2586 SourceRange(Var->getLocation(),
2587 Var->getLocation()),
Chris Lattner271d4c22008-11-24 05:29:24 +00002588 Var->getDeclName(),
Douglas Gregor6428e762008-11-05 15:29:30 +00002589 IK_Default);
Douglas Gregor5870a952008-11-03 20:45:27 +00002590 if (!Constructor)
2591 Var->setInvalidDecl();
2592 }
2593 }
Douglas Gregor81c29152008-10-29 00:13:59 +00002594
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002595#if 0
2596 // FIXME: Temporarily disabled because we are not properly parsing
2597 // linkage specifications on declarations, e.g.,
2598 //
2599 // extern "C" const CGPoint CGPointerZero;
2600 //
Douglas Gregor81c29152008-10-29 00:13:59 +00002601 // C++ [dcl.init]p9:
2602 //
2603 // If no initializer is specified for an object, and the
2604 // object is of (possibly cv-qualified) non-POD class type (or
2605 // array thereof), the object shall be default-initialized; if
2606 // the object is of const-qualified type, the underlying class
2607 // type shall have a user-declared default
2608 // constructor. Otherwise, if no initializer is specified for
2609 // an object, the object and its subobjects, if any, have an
2610 // indeterminate initial value; if the object or any of its
2611 // subobjects are of const-qualified type, the program is
2612 // ill-formed.
2613 //
2614 // This isn't technically an error in C, so we don't diagnose it.
2615 //
2616 // FIXME: Actually perform the POD/user-defined default
2617 // constructor check.
2618 if (getLangOptions().CPlusPlus &&
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002619 Context.getCanonicalType(Type).isConstQualified() &&
2620 Var->getStorageClass() != VarDecl::Extern)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002621 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2622 << Var->getName()
2623 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002624#endif
Douglas Gregor81c29152008-10-29 00:13:59 +00002625 }
2626}
2627
Chris Lattner4b009652007-07-25 00:24:17 +00002628/// The declarators are chained together backwards, reverse the list.
2629Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2630 // Often we have single declarators, handle them quickly.
Argiris Kirtzidisb50464f2009-02-17 20:23:54 +00002631 Decl *Group = static_cast<Decl*>(group);
2632 if (Group == 0)
Steve Naroff6a0e2092007-09-12 14:07:44 +00002633 return 0;
Steve Naroff2591e1b2007-09-13 23:52:58 +00002634
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002635 Decl *NewGroup = 0;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002636 if (Group->getNextDeclarator() == 0)
Chris Lattner4b009652007-07-25 00:24:17 +00002637 NewGroup = Group;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002638 else { // reverse the list.
2639 while (Group) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002640 Decl *Next = Group->getNextDeclarator();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002641 Group->setNextDeclarator(NewGroup);
2642 NewGroup = Group;
2643 Group = Next;
2644 }
2645 }
2646 // Perform semantic analysis that depends on having fully processed both
2647 // the declarator and initializer.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002648 for (Decl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroff6a0e2092007-09-12 14:07:44 +00002649 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2650 if (!IDecl)
2651 continue;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002652 QualType T = IDecl->getType();
2653
Anders Carlsson68adbd12008-12-07 00:20:55 +00002654 if (T->isVariableArrayType()) {
Anders Carlssonef2f7df2008-12-20 21:51:53 +00002655 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002656
2657 // FIXME: This won't give the correct result for
2658 // int a[10][n];
2659 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002660 if (IDecl->isFileVarDecl()) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002661 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2662 SizeRange;
2663
Eli Friedman8ff07782008-02-15 18:16:39 +00002664 IDecl->setInvalidDecl();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002665 } else {
2666 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2667 // static storage duration, it shall not have a variable length array.
2668 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002669 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2670 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002671 IDecl->setInvalidDecl();
2672 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002673 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2674 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002675 IDecl->setInvalidDecl();
2676 }
2677 }
2678 } else if (T->isVariablyModifiedType()) {
2679 if (IDecl->isFileVarDecl()) {
2680 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2681 IDecl->setInvalidDecl();
2682 } else {
2683 if (IDecl->getStorageClass() == VarDecl::Extern) {
2684 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2685 IDecl->setInvalidDecl();
2686 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002687 }
2688 }
Anders Carlsson68adbd12008-12-07 00:20:55 +00002689
Steve Naroff6a0e2092007-09-12 14:07:44 +00002690 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2691 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002692 if (IDecl->isBlockVarDecl() &&
2693 IDecl->getStorageClass() != VarDecl::Extern) {
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002694 if (!IDecl->isInvalidDecl() &&
2695 DiagnoseIncompleteType(IDecl->getLocation(), T,
2696 diag::err_typecheck_decl_incomplete_type))
Steve Naroff6a0e2092007-09-12 14:07:44 +00002697 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002698 }
2699 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2700 // object that has file scope without an initializer, and without a
2701 // storage-class specifier or with the storage-class specifier "static",
2702 // constitutes a tentative definition. Note: A tentative definition with
2703 // external linkage is valid (C99 6.2.2p5).
Steve Naroffb5e78152008-08-08 17:50:35 +00002704 if (isTentativeDefinition(IDecl)) {
Eli Friedmane0079792008-02-15 12:53:51 +00002705 if (T->isIncompleteArrayType()) {
Steve Naroff60685462008-01-18 20:40:52 +00002706 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2707 // array to be completed. Don't issue a diagnostic.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002708 } else if (!IDecl->isInvalidDecl() &&
2709 DiagnoseIncompleteType(IDecl->getLocation(), T,
2710 diag::err_typecheck_decl_incomplete_type))
Steve Naroff60685462008-01-18 20:40:52 +00002711 // C99 6.9.2p3: If the declaration of an identifier for an object is
2712 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2713 // declared type shall not be an incomplete type.
Steve Naroff6a0e2092007-09-12 14:07:44 +00002714 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002715 }
Steve Naroffb5e78152008-08-08 17:50:35 +00002716 if (IDecl->isFileVarDecl())
2717 CheckForFileScopedRedefinitions(S, IDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00002718 }
2719 return NewGroup;
2720}
Steve Naroff91b03f72007-08-28 03:03:08 +00002721
Chris Lattner3e254fb2008-04-08 04:40:51 +00002722/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2723/// to introduce parameters into function prototype scope.
2724Sema::DeclTy *
2725Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner5e77ade2008-06-26 06:49:43 +00002726 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002727
Chris Lattner3e254fb2008-04-08 04:40:51 +00002728 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002729 VarDecl::StorageClass StorageClass = VarDecl::None;
2730 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2731 StorageClass = VarDecl::Register;
2732 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002733 Diag(DS.getStorageClassSpecLoc(),
2734 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002735 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002736 }
2737 if (DS.isThreadSpecified()) {
2738 Diag(DS.getThreadSpecLoc(),
2739 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002740 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002741 }
2742
Douglas Gregor2b9422f2008-05-07 04:49:29 +00002743 // Check that there are no default arguments inside the type of this
2744 // parameter (C++ only).
2745 if (getLangOptions().CPlusPlus)
2746 CheckExtraCXXDefaultArguments(D);
2747
Chris Lattner3e254fb2008-04-08 04:40:51 +00002748 // In this context, we *do not* check D.getInvalidType(). If the declarator
2749 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2750 // though it will not reflect the user specified type.
2751 QualType parmDeclType = GetTypeForDeclarator(D, S);
2752
2753 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2754
Chris Lattner4b009652007-07-25 00:24:17 +00002755 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2756 // Can this happen for params? We already checked that they don't conflict
2757 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002758 IdentifierInfo *II = D.getIdentifier();
Chris Lattner310dea32009-01-21 02:38:50 +00002759 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00002760 if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) {
Chris Lattner310dea32009-01-21 02:38:50 +00002761 if (PrevDecl->isTemplateParameter()) {
2762 // Maybe we will complain about the shadowed template parameter.
2763 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2764 // Just pretend that we didn't see the previous declaration.
2765 PrevDecl = 0;
2766 } else if (S->isDeclScope(PrevDecl)) {
2767 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002768
Chris Lattner310dea32009-01-21 02:38:50 +00002769 // Recover by removing the name
2770 II = 0;
2771 D.SetIdentifier(0, D.getIdentifierLoc());
2772 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002773 }
Chris Lattner4b009652007-07-25 00:24:17 +00002774 }
Steve Naroff94cd93f2007-08-07 22:44:21 +00002775
2776 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2777 // Doing the promotion here has a win and a loss. The win is the type for
2778 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2779 // code generator). The loss is the orginal type isn't preserved. For example:
2780 //
2781 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2782 // int blockvardecl[5];
2783 // sizeof(parmvardecl); // size == 4
2784 // sizeof(blockvardecl); // size == 20
2785 // }
2786 //
2787 // For expressions, all implicit conversions are captured using the
2788 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2789 //
2790 // FIXME: If a source translation tool needs to see the original type, then
2791 // we need to consider storing both types (in ParmVarDecl)...
2792 //
Chris Lattner19eb97e2008-04-02 05:18:44 +00002793 if (parmDeclType->isArrayType()) {
Chris Lattnerc08564a2008-01-02 22:50:48 +00002794 // int x[restrict 4] -> int *restrict
Chris Lattner19eb97e2008-04-02 05:18:44 +00002795 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattnerc08564a2008-01-02 22:50:48 +00002796 } else if (parmDeclType->isFunctionType())
Steve Naroff94cd93f2007-08-07 22:44:21 +00002797 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor8acb7272008-12-11 16:49:14 +00002798
Chris Lattner3e254fb2008-04-08 04:40:51 +00002799 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2800 D.getIdentifierLoc(), II,
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002801 parmDeclType, StorageClass,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002802 0);
Anders Carlsson3f70c542008-02-15 07:04:12 +00002803
Chris Lattner3e254fb2008-04-08 04:40:51 +00002804 if (D.getInvalidType())
Steve Naroffcae537d2007-08-28 18:45:29 +00002805 New->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00002806
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002807 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2808 if (D.getCXXScopeSpec().isSet()) {
2809 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2810 << D.getCXXScopeSpec().getRange();
2811 New->setInvalidDecl();
2812 }
Steve Naroffa442ad92009-02-20 22:59:16 +00002813 // Parameter declarators cannot be interface types. All ObjC objects are
2814 // passed by reference.
2815 if (parmDeclType->isObjCInterfaceType()) {
2816 Diag(D.getIdentifierLoc(), diag::err_object_cannot_be_by_value)
2817 << "passed";
2818 New->setInvalidDecl();
2819 }
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002820
Douglas Gregor8acb7272008-12-11 16:49:14 +00002821 // Add the parameter declaration into this scope.
2822 S->AddDecl(New);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002823 if (II)
Douglas Gregor8acb7272008-12-11 16:49:14 +00002824 IdResolver.AddDecl(New);
Nate Begeman9f3c4bb2008-02-17 21:20:31 +00002825
Chris Lattner9b384ca2008-06-29 00:02:00 +00002826 ProcessDeclAttributes(New, D);
Chris Lattner4b009652007-07-25 00:24:17 +00002827 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002828
Chris Lattner4b009652007-07-25 00:24:17 +00002829}
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00002830
Douglas Gregor65075ec2009-01-23 16:23:13 +00002831void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D) {
Chris Lattner4b009652007-07-25 00:24:17 +00002832 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2833 "Not a function declarator!");
2834 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002835
Chris Lattner4b009652007-07-25 00:24:17 +00002836 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2837 // for a K&R function.
2838 if (!FTI.hasPrototype) {
2839 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002840 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002841 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2842 << FTI.ArgInfo[i].Ident;
Chris Lattner4b009652007-07-25 00:24:17 +00002843 // Implicitly declare the argument as type 'int' for lack of a better
2844 // type.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002845 DeclSpec DS;
2846 const char* PrevSpec; // unused
2847 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2848 PrevSpec);
2849 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2850 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
Douglas Gregor65075ec2009-01-23 16:23:13 +00002851 FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
Chris Lattner4b009652007-07-25 00:24:17 +00002852 }
2853 }
Douglas Gregor65075ec2009-01-23 16:23:13 +00002854 }
2855}
2856
2857Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
2858 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
2859 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2860 "Not a function declarator!");
2861 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2862
2863 if (FTI.hasPrototype) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002864 // FIXME: Diagnose arguments without names in C.
Chris Lattner4b009652007-07-25 00:24:17 +00002865 }
2866
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002867 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroff1d5bd642008-01-14 20:51:29 +00002868
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002869 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002870 ActOnDeclarator(ParentScope, D, 0,
2871 /*IsFunctionDefinition=*/true));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002872}
2873
2874Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2875 Decl *decl = static_cast<Decl*>(D);
Chris Lattner2d2216b2008-02-16 01:20:36 +00002876 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregor56da7862008-10-29 15:10:40 +00002877
2878 // See if this is a redefinition.
2879 const FunctionDecl *Definition;
2880 if (FD->getBody(Definition)) {
Chris Lattnerb1753422008-11-23 21:45:46 +00002881 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +00002882 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregor56da7862008-10-29 15:10:40 +00002883 }
2884
Douglas Gregor083c23e2009-02-16 17:45:42 +00002885 // Builtin functions cannot be defined.
2886 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
Douglas Gregorfe3ccfa2009-02-17 16:03:01 +00002887 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
Douglas Gregor083c23e2009-02-16 17:45:42 +00002888 Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
Douglas Gregorfe3ccfa2009-02-17 16:03:01 +00002889 FD->setInvalidDecl();
2890 }
Douglas Gregor083c23e2009-02-16 17:45:42 +00002891 }
2892
Douglas Gregor8acb7272008-12-11 16:49:14 +00002893 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002894
Chris Lattner3e254fb2008-04-08 04:40:51 +00002895 // Check the validity of our function parameters
2896 CheckParmsForFunctionDef(FD);
2897
2898 // Introduce our parameters into the function scope
2899 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2900 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregord394a272009-01-09 18:51:29 +00002901 Param->setOwningFunction(FD);
2902
Chris Lattner3e254fb2008-04-08 04:40:51 +00002903 // If this has an identifier, add it to the scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002904 if (Param->getIdentifier())
2905 PushOnScopeChains(Param, FnBodyScope);
Chris Lattner4b009652007-07-25 00:24:17 +00002906 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002907
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002908 // Checking attributes of current function definition
2909 // dllimport attribute.
2910 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2911 // dllimport attribute cannot be applied to definition.
2912 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2913 Diag(FD->getLocation(),
2914 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2915 << "dllimport";
2916 FD->setInvalidDecl();
2917 return FD;
2918 } else {
2919 // If a symbol previously declared dllimport is later defined, the
2920 // attribute is ignored in subsequent references, and a warning is
2921 // emitted.
2922 Diag(FD->getLocation(),
2923 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2924 << FD->getNameAsCString() << "dllimport";
2925 }
2926 }
Chris Lattner4b009652007-07-25 00:24:17 +00002927 return FD;
2928}
2929
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002930Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroff99ee4302007-11-11 23:20:51 +00002931 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002932 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff3ac43f92008-07-25 17:57:26 +00002933 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002934 FD->setBody(Body);
Argiris Kirtzidis95256e62008-06-28 06:07:14 +00002935 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff3ac43f92008-07-25 17:57:26 +00002936 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Chris Lattner5e3f2172009-02-16 19:27:54 +00002937 assert(MD == getCurMethodDecl() && "Method parsing confused");
Steve Naroff99ee4302007-11-11 23:20:51 +00002938 MD->setBody((Stmt*)Body);
Ted Kremenek0c97e042009-02-07 01:47:29 +00002939 } else {
2940 Body->Destroy(Context);
Steve Naroff3ac43f92008-07-25 17:57:26 +00002941 return 0;
Ted Kremenek0c97e042009-02-07 01:47:29 +00002942 }
Chris Lattnerf3874bc2008-04-06 04:47:34 +00002943 PopDeclContext();
Chris Lattner4b009652007-07-25 00:24:17 +00002944 // Verify and clean out per-function state.
2945
2946 // Check goto/label use.
2947 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2948 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
2949 // Verify that we have no forward references left. If so, there was a goto
2950 // or address of a label taken, but no definition of it. Label fwd
2951 // definitions are indicated with a null substmt.
2952 if (I->second->getSubStmt() == 0) {
2953 LabelStmt *L = I->second;
2954 // Emit error.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002955 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Chris Lattner4b009652007-07-25 00:24:17 +00002956
2957 // At this point, we have gotos that use the bogus label. Stitch it into
2958 // the function body so that they aren't leaked and that the AST is well
2959 // formed.
Chris Lattner83343342008-01-25 00:01:10 +00002960 if (Body) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00002961#if 0
2962 // FIXME: Why do this? Having a 'push_back' in CompoundStmt is ugly,
2963 // and the AST is malformed anyway. We should just blow away 'L'.
2964 L->setSubStmt(new (Context) NullStmt(L->getIdentLoc()));
2965 cast<CompoundStmt>(Body)->push_back(L);
2966#else
2967 L->Destroy(Context);
2968#endif
Chris Lattner83343342008-01-25 00:01:10 +00002969 } else {
2970 // The whole function wasn't parsed correctly, just delete this.
Ted Kremenek0c97e042009-02-07 01:47:29 +00002971 L->Destroy(Context);
Chris Lattner83343342008-01-25 00:01:10 +00002972 }
Chris Lattner4b009652007-07-25 00:24:17 +00002973 }
2974 }
2975 LabelMap.clear();
2976
Steve Naroff99ee4302007-11-11 23:20:51 +00002977 return D;
Fariborz Jahaniane6f59f12007-11-10 16:31:34 +00002978}
2979
Chris Lattner4b009652007-07-25 00:24:17 +00002980/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2981/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002982NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2983 IdentifierInfo &II, Scope *S) {
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002984 // Extension in C99. Legal in C90, but warn about it.
2985 if (getLangOptions().C99)
Chris Lattner65cae292008-11-19 08:23:25 +00002986 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002987 else
Chris Lattner65cae292008-11-19 08:23:25 +00002988 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Chris Lattner4b009652007-07-25 00:24:17 +00002989
2990 // FIXME: handle stuff like:
2991 // void foo() { extern float X(); }
2992 // void bar() { X(); } <-- implicit decl for X in another scope.
2993
2994 // Set a Declarator for the implicit definition: int foo();
2995 const char *Dummy;
2996 DeclSpec DS;
2997 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
2998 Error = Error; // Silence warning.
2999 assert(!Error && "Error setting up implicit decl!");
3000 Declarator D(DS, Declarator::BlockContext);
Douglas Gregor88a25f82009-02-18 07:07:28 +00003001 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, SourceLocation(),
3002 0, 0, 0, Loc, D),
Sebastian Redl0c986032009-02-09 18:23:29 +00003003 SourceLocation());
Chris Lattner4b009652007-07-25 00:24:17 +00003004 D.SetIdentifier(&II, Loc);
Sebastian Redl0c986032009-02-09 18:23:29 +00003005
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00003006 // Insert this function into translation-unit scope.
3007
3008 DeclContext *PrevDC = CurContext;
3009 CurContext = Context.getTranslationUnitDecl();
3010
Steve Naroff9104f3c2008-04-04 14:32:09 +00003011 FunctionDecl *FD =
Daniel Dunbar72eaf8a2008-08-05 16:28:08 +00003012 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroff9104f3c2008-04-04 14:32:09 +00003013 FD->setImplicit();
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00003014
3015 CurContext = PrevDC;
3016
Douglas Gregorb5af7382009-02-14 18:57:46 +00003017 AddKnownFunctionAttributes(FD);
3018
Steve Naroff9104f3c2008-04-04 14:32:09 +00003019 return FD;
Chris Lattner4b009652007-07-25 00:24:17 +00003020}
3021
Douglas Gregorb5af7382009-02-14 18:57:46 +00003022/// \brief Adds any function attributes that we know a priori based on
3023/// the declaration of this function.
3024///
3025/// These attributes can apply both to implicitly-declared builtins
3026/// (like __builtin___printf_chk) or to library-declared functions
3027/// like NSLog or printf.
3028void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
3029 if (FD->isInvalidDecl())
3030 return;
3031
3032 // If this is a built-in function, map its builtin attributes to
3033 // actual attributes.
3034 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
3035 // Handle printf-formatting attributes.
3036 unsigned FormatIdx;
3037 bool HasVAListArg;
3038 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
3039 if (!FD->getAttr<FormatAttr>())
3040 FD->addAttr(new FormatAttr("printf", FormatIdx + 1, FormatIdx + 2));
3041 }
Daniel Dunbarfd46ea22009-02-16 22:43:43 +00003042
3043 // Mark const if we don't care about errno and that is the only
3044 // thing preventing the function from being const. This allows
3045 // IRgen to use LLVM intrinsics for such functions.
3046 if (!getLangOptions().MathErrno &&
3047 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
3048 if (!FD->getAttr<ConstAttr>())
3049 FD->addAttr(new ConstAttr());
3050 }
Douglas Gregorb5af7382009-02-14 18:57:46 +00003051 }
3052
3053 IdentifierInfo *Name = FD->getIdentifier();
3054 if (!Name)
3055 return;
3056 if ((!getLangOptions().CPlusPlus &&
3057 FD->getDeclContext()->isTranslationUnit()) ||
3058 (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
3059 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
3060 LinkageSpecDecl::lang_c)) {
3061 // Okay: this could be a libc/libm/Objective-C function we know
3062 // about.
3063 } else
3064 return;
3065
3066 unsigned KnownID;
3067 for (KnownID = 0; KnownID != id_num_known_functions; ++KnownID)
3068 if (KnownFunctionIDs[KnownID] == Name)
3069 break;
3070
3071 switch (KnownID) {
3072 case id_NSLog:
3073 case id_NSLogv:
3074 if (const FormatAttr *Format = FD->getAttr<FormatAttr>()) {
3075 // FIXME: We known better than our headers.
3076 const_cast<FormatAttr *>(Format)->setType("printf");
3077 } else
3078 FD->addAttr(new FormatAttr("printf", 1, 2));
3079 break;
3080
3081 case id_asprintf:
3082 case id_vasprintf:
3083 if (!FD->getAttr<FormatAttr>())
3084 FD->addAttr(new FormatAttr("printf", 2, 3));
3085 break;
3086
3087 default:
3088 // Unknown function or known function without any attributes to
3089 // add. Do nothing.
3090 break;
3091 }
3092}
Chris Lattner4b009652007-07-25 00:24:17 +00003093
Chris Lattner82bb4792007-11-14 06:34:38 +00003094TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003095 Decl *LastDeclarator) {
Chris Lattner4b009652007-07-25 00:24:17 +00003096 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003097 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Chris Lattner4b009652007-07-25 00:24:17 +00003098
3099 // Scope manipulation handled by caller.
Chris Lattnereee57c02008-04-04 06:12:32 +00003100 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
3101 D.getIdentifierLoc(),
Chris Lattnere4650482008-03-15 06:12:44 +00003102 D.getIdentifier(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003103 T);
3104 NewTD->setNextDeclarator(LastDeclarator);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003105 if (D.getInvalidType())
3106 NewTD->setInvalidDecl();
3107 return NewTD;
Chris Lattner4b009652007-07-25 00:24:17 +00003108}
3109
Steve Naroff0acc9c92007-09-15 18:49:24 +00003110/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Chris Lattner4b009652007-07-25 00:24:17 +00003111/// former case, Name will be non-null. In the later case, Name will be null.
Douglas Gregor98b27542009-01-17 00:42:38 +00003112/// TagSpec indicates what kind of tag this is. TK indicates whether this is a
Chris Lattner4b009652007-07-25 00:24:17 +00003113/// reference/declaration/definition of a tag.
Douglas Gregor98b27542009-01-17 00:42:38 +00003114Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagKind TK,
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +00003115 SourceLocation KWLoc, const CXXScopeSpec &SS,
3116 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregord406b032009-02-06 22:42:48 +00003117 AttributeList *Attr) {
Douglas Gregorae644892008-12-15 16:32:14 +00003118 // If this is not a definition, it must have a name.
Chris Lattner4b009652007-07-25 00:24:17 +00003119 assert((Name != 0 || TK == TK_Definition) &&
3120 "Nameless record must be a definition!");
Douglas Gregor279272e2009-02-04 19:02:06 +00003121
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003122 TagDecl::TagKind Kind;
Douglas Gregor98b27542009-01-17 00:42:38 +00003123 switch (TagSpec) {
Chris Lattner4b009652007-07-25 00:24:17 +00003124 default: assert(0 && "Unknown tag type!");
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003125 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
3126 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
3127 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
3128 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Chris Lattner4b009652007-07-25 00:24:17 +00003129 }
3130
Douglas Gregorb748fc52009-01-12 22:49:06 +00003131 DeclContext *SearchDC = CurContext;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003132 DeclContext *DC = CurContext;
Douglas Gregor09be81b2009-02-04 17:27:36 +00003133 NamedDecl *PrevDecl = 0;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00003134
Douglas Gregor98b27542009-01-17 00:42:38 +00003135 bool Invalid = false;
3136
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003137 if (Name && SS.isNotEmpty()) {
3138 // We have a nested-name tag ('struct foo::bar').
3139
3140 // Check for invalid 'foo::'.
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003141 if (SS.isInvalid()) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003142 Name = 0;
3143 goto CreateNewDecl;
3144 }
3145
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003146 DC = static_cast<DeclContext*>(SS.getScopeRep());
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003147 SearchDC = DC;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003148 // Look-up name inside 'foo::'.
Steve Naroffc349ee22009-01-29 00:07:50 +00003149 PrevDecl = dyn_cast_or_null<TagDecl>(
Douglas Gregor7a7be652009-02-03 19:21:40 +00003150 LookupQualifiedName(DC, Name, LookupTagName, true).getAsDecl());
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003151
3152 // A tag 'foo::bar' must already exist.
3153 if (PrevDecl == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00003154 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003155 Name = 0;
3156 goto CreateNewDecl;
3157 }
Chris Lattner310dea32009-01-21 02:38:50 +00003158 } else if (Name) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003159 // If this is a named struct, check to see if there was a previous forward
3160 // declaration or definition.
Douglas Gregor7a7be652009-02-03 19:21:40 +00003161 // FIXME: We're looking into outer scopes here, even when we
3162 // shouldn't be. Doing so can result in ambiguities that we
3163 // shouldn't be diagnosing.
Douglas Gregor362c8952009-02-03 19:26:08 +00003164 LookupResult R = LookupName(S, Name, LookupTagName,
3165 /*RedeclarationOnly=*/(TK != TK_Reference));
Douglas Gregor7a7be652009-02-03 19:21:40 +00003166 if (R.isAmbiguous()) {
3167 DiagnoseAmbiguousLookup(R, Name, NameLoc);
3168 // FIXME: This is not best way to recover from case like:
3169 //
3170 // struct S s;
3171 //
3172 // causes needless err_ovl_no_viable_function_in_init latter.
3173 Name = 0;
3174 PrevDecl = 0;
3175 Invalid = true;
3176 }
3177 else
Douglas Gregor09be81b2009-02-04 17:27:36 +00003178 PrevDecl = R;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003179
3180 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
3181 // FIXME: This makes sure that we ignore the contexts associated
3182 // with C structs, unions, and enums when looking for a matching
3183 // tag declaration or definition. See the similar lookup tweak
Douglas Gregor52ae30c2009-01-30 01:04:22 +00003184 // in Sema::LookupName; is there a better way to deal with this?
Douglas Gregorb748fc52009-01-12 22:49:06 +00003185 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
3186 SearchDC = SearchDC->getParent();
Douglas Gregordb568cf2009-01-08 20:45:30 +00003187 }
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003188 }
3189
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003190 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003191 // Maybe we will complain about the shadowed template parameter.
3192 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
3193 // Just pretend that we didn't see the previous declaration.
3194 PrevDecl = 0;
3195 }
3196
Chris Lattner31ccf0a2009-02-16 22:07:16 +00003197 if (PrevDecl) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00003198 // Check whether the previous declaration is usable.
3199 (void)DiagnoseUseOfDecl(PrevDecl, NameLoc);
Chris Lattner31ccf0a2009-02-16 22:07:16 +00003200
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003201 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003202 // If this is a use of a previous tag, or if the tag is already declared
3203 // in the same scope (so that the definition/declaration completes or
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003204 // rementions the tag), reuse the decl.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003205 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003206 // Make sure that this wasn't declared as an enum and now used as a
3207 // struct or something similar.
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003208 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner65cae292008-11-19 08:23:25 +00003209 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00003210 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003211 // Recover by making this an anonymous redefinition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003212 Name = 0;
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003213 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003214 Invalid = true;
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003215 } else {
Douglas Gregorae644892008-12-15 16:32:14 +00003216 // If this is a use, just return the declaration we found.
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003217
Douglas Gregorae644892008-12-15 16:32:14 +00003218 // FIXME: In the future, return a variant or some other clue
3219 // for the consumer of this Decl to know it doesn't own it.
3220 // For our current ASTs this shouldn't be a problem, but will
3221 // need to be changed with DeclGroups.
3222 if (TK == TK_Reference)
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003223 return PrevDecl;
Douglas Gregor279272e2009-02-04 19:02:06 +00003224
Douglas Gregorae644892008-12-15 16:32:14 +00003225 // Diagnose attempts to redefine a tag.
3226 if (TK == TK_Definition) {
3227 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
3228 Diag(NameLoc, diag::err_redefinition) << Name;
3229 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregor98b27542009-01-17 00:42:38 +00003230 // If this is a redefinition, recover by making this
3231 // struct be anonymous, which will make any later
3232 // references get the previous definition.
Douglas Gregorae644892008-12-15 16:32:14 +00003233 Name = 0;
3234 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003235 Invalid = true;
3236 } else {
3237 // If the type is currently being defined, complain
3238 // about a nested redefinition.
3239 TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
3240 if (Tag->isBeingDefined()) {
3241 Diag(NameLoc, diag::err_nested_redefinition) << Name;
3242 Diag(PrevTagDecl->getLocation(),
3243 diag::note_previous_definition);
3244 Name = 0;
3245 PrevDecl = 0;
3246 Invalid = true;
3247 }
Douglas Gregorae644892008-12-15 16:32:14 +00003248 }
Douglas Gregor98b27542009-01-17 00:42:38 +00003249
Douglas Gregorae644892008-12-15 16:32:14 +00003250 // Okay, this is definition of a previously declared or referenced
3251 // tag PrevDecl. We're going to create a new Decl for it.
Douglas Gregor98b27542009-01-17 00:42:38 +00003252 }
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003253 }
Douglas Gregorae644892008-12-15 16:32:14 +00003254 // If we get here we have (another) forward declaration or we
3255 // have a definition. Just create a new decl.
3256 } else {
3257 // If we get here, this is a definition of a new tag type in a nested
3258 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
3259 // new decl/type. We set PrevDecl to NULL so that the entities
3260 // have distinct types.
3261 PrevDecl = 0;
Chris Lattner4b009652007-07-25 00:24:17 +00003262 }
Douglas Gregorae644892008-12-15 16:32:14 +00003263 // If we get here, we're going to create a new Decl. If PrevDecl
3264 // is non-NULL, it's a definition of the tag declared by
3265 // PrevDecl. If it's NULL, we have a new definition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003266 } else {
Douglas Gregorb31f2942009-01-28 17:15:10 +00003267 // PrevDecl is a namespace, template, or anything else
3268 // that lives in the IDNS_Tag identifier namespace.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003269 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremenek40e70e72008-09-03 18:03:35 +00003270 // The tag name clashes with a namespace name, issue an error and
3271 // recover by making this tag be anonymous.
Chris Lattner65cae292008-11-19 08:23:25 +00003272 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00003273 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003274 Name = 0;
Douglas Gregorae644892008-12-15 16:32:14 +00003275 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003276 Invalid = true;
Douglas Gregorae644892008-12-15 16:32:14 +00003277 } else {
3278 // The existing declaration isn't relevant to us; we're in a
3279 // new scope, so clear out the previous declaration.
3280 PrevDecl = 0;
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003281 }
Chris Lattner4b009652007-07-25 00:24:17 +00003282 }
Douglas Gregorcab994d2009-01-09 22:42:13 +00003283 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
3284 (Kind != TagDecl::TK_enum)) {
3285 // C++ [basic.scope.pdecl]p5:
3286 // -- for an elaborated-type-specifier of the form
3287 //
3288 // class-key identifier
3289 //
3290 // if the elaborated-type-specifier is used in the
3291 // decl-specifier-seq or parameter-declaration-clause of a
3292 // function defined in namespace scope, the identifier is
3293 // declared as a class-name in the namespace that contains
3294 // the declaration; otherwise, except as a friend
3295 // declaration, the identifier is declared in the smallest
3296 // non-class, non-function-prototype scope that contains the
3297 // declaration.
3298 //
3299 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
3300 // C structs and unions.
3301
3302 // Find the context where we'll be declaring the tag.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003303 // FIXME: We would like to maintain the current DeclContext as the
3304 // lexical context,
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003305 while (SearchDC->isRecord())
3306 SearchDC = SearchDC->getParent();
Douglas Gregorcab994d2009-01-09 22:42:13 +00003307
3308 // Find the scope where we'll be declaring the tag.
3309 while (S->isClassScope() ||
3310 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003311 ((S->getFlags() & Scope::DeclScope) == 0) ||
3312 (S->getEntity() &&
3313 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregorcab994d2009-01-09 22:42:13 +00003314 S = S->getParent();
Chris Lattner4b009652007-07-25 00:24:17 +00003315 }
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00003316
Chris Lattner9bb9abf2008-12-17 07:13:27 +00003317CreateNewDecl:
Chris Lattner4b009652007-07-25 00:24:17 +00003318
3319 // If there is an identifier, use the location of the identifier as the
3320 // location of the decl, otherwise use the location of the struct/union
3321 // keyword.
3322 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
3323
Douglas Gregorae644892008-12-15 16:32:14 +00003324 // Otherwise, create a new declaration. If there is a previous
3325 // declaration of the same entity, the two will be linked via
3326 // PrevDecl.
Chris Lattner4b009652007-07-25 00:24:17 +00003327 TagDecl *New;
Douglas Gregor723d3332009-01-07 00:43:41 +00003328
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003329 if (Kind == TagDecl::TK_enum) {
Chris Lattner4b009652007-07-25 00:24:17 +00003330 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3331 // enum X { A, B, C } D; D should chain to X.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003332 New = EnumDecl::Create(Context, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003333 cast_or_null<EnumDecl>(PrevDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003334 // If this is an undefined enum, warn.
3335 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003336 } else {
3337 // struct/union/class
3338
Chris Lattner4b009652007-07-25 00:24:17 +00003339 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3340 // struct X { int A; } D; D should chain to X.
Douglas Gregord406b032009-02-06 22:42:48 +00003341 if (getLangOptions().CPlusPlus)
Ted Kremenek770b11d2008-09-05 17:39:33 +00003342 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003343 New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003344 cast_or_null<CXXRecordDecl>(PrevDecl));
Douglas Gregord406b032009-02-06 22:42:48 +00003345 else
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003346 New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003347 cast_or_null<RecordDecl>(PrevDecl));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003348 }
Douglas Gregorae644892008-12-15 16:32:14 +00003349
3350 if (Kind != TagDecl::TK_enum) {
3351 // Handle #pragma pack: if the #pragma pack stack has non-default
3352 // alignment, make up a packed attribute for this decl. These
3353 // attributes are checked when the ASTContext lays out the
3354 // structure.
3355 //
3356 // It is important for implementing the correct semantics that this
3357 // happen here (in act on tag decl). The #pragma pack stack is
3358 // maintained as a result of parser callbacks which can occur at
3359 // many points during the parsing of a struct declaration (because
3360 // the #pragma tokens are effectively skipped over during the
3361 // parsing of the struct).
Chris Lattnera8699562009-02-17 01:09:29 +00003362 if (unsigned Alignment = getPragmaPackAlignment())
Douglas Gregorae644892008-12-15 16:32:14 +00003363 New->addAttr(new PackedAttr(Alignment * 8));
3364 }
3365
Douglas Gregorb31f2942009-01-28 17:15:10 +00003366 if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
3367 // C++ [dcl.typedef]p3:
3368 // [...] Similarly, in a given scope, a class or enumeration
3369 // shall not be declared with the same name as a typedef-name
3370 // that is declared in that scope and refers to a type other
3371 // than the class or enumeration itself.
Douglas Gregor52ae30c2009-01-30 01:04:22 +00003372 LookupResult Lookup = LookupName(S, Name, LookupOrdinaryName, true);
Douglas Gregorb31f2942009-01-28 17:15:10 +00003373 TypedefDecl *PrevTypedef = 0;
3374 if (Lookup.getKind() == LookupResult::Found)
3375 PrevTypedef = dyn_cast<TypedefDecl>(Lookup.getAsDecl());
3376
3377 if (PrevTypedef && isDeclInScope(PrevTypedef, SearchDC, S) &&
3378 Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
3379 Context.getCanonicalType(Context.getTypeDeclType(New))) {
3380 Diag(Loc, diag::err_tag_definition_of_typedef)
3381 << Context.getTypeDeclType(New)
3382 << PrevTypedef->getUnderlyingType();
3383 Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
3384 Invalid = true;
3385 }
3386 }
3387
Douglas Gregor98b27542009-01-17 00:42:38 +00003388 if (Invalid)
3389 New->setInvalidDecl();
3390
Douglas Gregorae644892008-12-15 16:32:14 +00003391 if (Attr)
3392 ProcessDeclAttributeList(New, Attr);
3393
Douglas Gregor98b27542009-01-17 00:42:38 +00003394 // If we're declaring or defining a tag in function prototype scope
3395 // in C, note that this type can only be used within the function.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003396 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3397 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3398
Douglas Gregorae644892008-12-15 16:32:14 +00003399 // Set the lexical context. If the tag has a C++ scope specifier, the
3400 // lexical context will be different from the semantic context.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003401 New->setLexicalDeclContext(CurContext);
Douglas Gregor98b27542009-01-17 00:42:38 +00003402
3403 if (TK == TK_Definition)
3404 New->startDefinition();
Chris Lattner4b009652007-07-25 00:24:17 +00003405
3406 // If this has an identifier, add it to the scope stack.
3407 if (Name) {
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003408 S = getNonFieldDeclScope(S);
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003409 PushOnScopeChains(New, S);
Douglas Gregorb748fc52009-01-12 22:49:06 +00003410 } else {
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003411 CurContext->addDecl(New);
Chris Lattner4b009652007-07-25 00:24:17 +00003412 }
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00003413
Chris Lattner4b009652007-07-25 00:24:17 +00003414 return New;
3415}
3416
Douglas Gregordb568cf2009-01-08 20:45:30 +00003417void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregor279272e2009-02-04 19:02:06 +00003418 AdjustDeclIfTemplate(TagD);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003419 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3420
3421 // Enter the tag context.
3422 PushDeclContext(S, Tag);
3423
3424 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3425 FieldCollector->StartClass();
3426
3427 if (Record->getIdentifier()) {
3428 // C++ [class]p2:
3429 // [...] The class-name is also inserted into the scope of the
3430 // class itself; this is known as the injected-class-name. For
3431 // purposes of access checking, the injected-class-name is treated
3432 // as if it were a public member name.
3433 RecordDecl *InjectedClassName
3434 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3435 CurContext, Record->getLocation(),
3436 Record->getIdentifier(), Record);
3437 InjectedClassName->setImplicit();
3438 PushOnScopeChains(InjectedClassName, S);
3439 }
3440 }
3441}
3442
3443void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregor279272e2009-02-04 19:02:06 +00003444 AdjustDeclIfTemplate(TagD);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003445 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3446
3447 if (isa<CXXRecordDecl>(Tag))
3448 FieldCollector->FinishClass();
3449
3450 // Exit this scope of this tag's definition.
3451 PopDeclContext();
3452
3453 // Notify the consumer that we've defined a tag.
3454 Consumer.HandleTagDeclDefinition(Tag);
3455}
Chris Lattner1bf58f62008-06-21 19:39:06 +00003456
Anders Carlsson108229a2008-12-06 20:33:04 +00003457bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattner8464c372008-12-12 04:56:04 +00003458 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson108229a2008-12-06 20:33:04 +00003459 // FIXME: 6.7.2.1p4 - verify the field type.
3460
3461 llvm::APSInt Value;
3462 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3463 return true;
3464
Chris Lattner8464c372008-12-12 04:56:04 +00003465 // Zero-width bitfield is ok for anonymous field.
3466 if (Value == 0 && FieldName)
3467 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3468
3469 if (Value.isNegative())
3470 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson108229a2008-12-06 20:33:04 +00003471
3472 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3473 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattner8464c372008-12-12 04:56:04 +00003474 if (TypeSize && Value.getZExtValue() > TypeSize)
3475 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3476 << FieldName << (unsigned)TypeSize;
Anders Carlsson108229a2008-12-06 20:33:04 +00003477
3478 return false;
3479}
3480
Steve Naroff0acc9c92007-09-15 18:49:24 +00003481/// ActOnField - Each field of a struct/union/class is passed into this in order
Chris Lattner4b009652007-07-25 00:24:17 +00003482/// to create a FieldDecl object for it.
Douglas Gregor8acb7272008-12-11 16:49:14 +00003483Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Chris Lattner4b009652007-07-25 00:24:17 +00003484 SourceLocation DeclStart,
3485 Declarator &D, ExprTy *BitfieldWidth) {
3486 IdentifierInfo *II = D.getIdentifier();
3487 Expr *BitWidth = (Expr*)BitfieldWidth;
Chris Lattner4b009652007-07-25 00:24:17 +00003488 SourceLocation Loc = DeclStart;
Douglas Gregor8acb7272008-12-11 16:49:14 +00003489 RecordDecl *Record = (RecordDecl *)TagD;
Chris Lattner4b009652007-07-25 00:24:17 +00003490 if (II) Loc = D.getIdentifierLoc();
3491
3492 // FIXME: Unnamed fields can be handled in various different ways, for
3493 // example, unnamed unions inject all members into the struct namespace!
Chris Lattner4b009652007-07-25 00:24:17 +00003494
Chris Lattner4b009652007-07-25 00:24:17 +00003495 QualType T = GetTypeForDeclarator(D, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003496 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3497 bool InvalidDecl = false;
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003498
Chris Lattner4b009652007-07-25 00:24:17 +00003499 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3500 // than a variably modified type.
Eli Friedmane0079792008-02-15 12:53:51 +00003501 if (T->isVariablyModifiedType()) {
Eli Friedmand4314282009-02-21 00:44:51 +00003502 bool SizeIsNegative;
3503 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context,
3504 SizeIsNegative);
3505 if (!FixedTy.isNull()) {
3506 Diag(Loc, diag::warn_illegal_constant_array_size);
3507 T = FixedTy;
3508 } else {
3509 if (SizeIsNegative)
3510 Diag(Loc, diag::err_typecheck_negative_array_size);
3511 else
3512 Diag(Loc, diag::err_typecheck_field_variable_size);
3513 T = Context.IntTy;
3514 InvalidDecl = true;
3515 }
Chris Lattner4b009652007-07-25 00:24:17 +00003516 }
Anders Carlsson108229a2008-12-06 20:33:04 +00003517
3518 if (BitWidth) {
3519 if (VerifyBitField(Loc, II, T, BitWidth))
3520 InvalidDecl = true;
3521 } else {
3522 // Not a bitfield.
3523
3524 // validate II.
3525
3526 }
3527
Chris Lattner97e84d62009-02-20 20:41:34 +00003528 FieldDecl *NewFD = FieldDecl::Create(Context, Record,
3529 Loc, II, T, BitWidth,
3530 D.getDeclSpec().getStorageClassSpec() ==
3531 DeclSpec::SCS_mutable);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003532
Douglas Gregordb568cf2009-01-08 20:45:30 +00003533 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00003534 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003535 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3536 && !isa<TagDecl>(PrevDecl)) {
3537 Diag(Loc, diag::err_duplicate_member) << II;
3538 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3539 NewFD->setInvalidDecl();
3540 Record->setInvalidDecl();
3541 }
3542 }
3543
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003544 if (getLangOptions().CPlusPlus) {
Douglas Gregor605de8d2008-12-16 21:30:33 +00003545 CheckExtraCXXDefaultArguments(D);
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003546 if (!T->isPODType())
3547 cast<CXXRecordDecl>(Record)->setPOD(false);
3548 }
Douglas Gregor605de8d2008-12-16 21:30:33 +00003549
Chris Lattner9b384ca2008-06-29 00:02:00 +00003550 ProcessDeclAttributes(NewFD, D);
Fariborz Jahanian85534582009-02-19 00:22:47 +00003551 if (T.isObjCGCWeak())
Fariborz Jahanian2062bb22009-02-18 18:14:41 +00003552 Diag(Loc, diag::warn_attribute_weak_on_field);
Anders Carlsson136cdc32008-02-16 00:29:18 +00003553
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003554 if (D.getInvalidType() || InvalidDecl)
3555 NewFD->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00003556
Douglas Gregordb568cf2009-01-08 20:45:30 +00003557 if (II) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003558 PushOnScopeChains(NewFD, S);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003559 } else
Douglas Gregor03b2ad22009-01-12 23:27:07 +00003560 Record->addDecl(NewFD);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003561
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003562 return NewFD;
Chris Lattner4b009652007-07-25 00:24:17 +00003563}
3564
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003565/// TranslateIvarVisibility - Translate visibility from a token ID to an
3566/// AST enum value.
Ted Kremenek42730c52008-01-07 19:49:32 +00003567static ObjCIvarDecl::AccessControl
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003568TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Naroffffeaa552007-09-14 23:09:53 +00003569 switch (ivarVisibility) {
Chris Lattner504c5432008-10-12 00:28:42 +00003570 default: assert(0 && "Unknown visitibility kind");
3571 case tok::objc_private: return ObjCIvarDecl::Private;
3572 case tok::objc_public: return ObjCIvarDecl::Public;
3573 case tok::objc_protected: return ObjCIvarDecl::Protected;
3574 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Naroffffeaa552007-09-14 23:09:53 +00003575 }
3576}
3577
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003578/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3579/// in order to create an IvarDecl object for it.
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003580Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003581 SourceLocation DeclStart,
3582 Declarator &D, ExprTy *BitfieldWidth,
3583 tok::ObjCKeywordKind Visibility) {
Douglas Gregordb568cf2009-01-08 20:45:30 +00003584
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003585 IdentifierInfo *II = D.getIdentifier();
3586 Expr *BitWidth = (Expr*)BitfieldWidth;
3587 SourceLocation Loc = DeclStart;
3588 if (II) Loc = D.getIdentifierLoc();
3589
3590 // FIXME: Unnamed fields can be handled in various different ways, for
3591 // example, unnamed unions inject all members into the struct namespace!
3592
Anders Carlsson108229a2008-12-06 20:33:04 +00003593 QualType T = GetTypeForDeclarator(D, S);
3594 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3595 bool InvalidDecl = false;
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003596
3597 if (BitWidth) {
Steve Naroff466a8f22009-02-20 17:57:11 +00003598 // 6.7.2.1p3, 6.7.2.1p4
3599 if (VerifyBitField(Loc, II, T, BitWidth))
3600 InvalidDecl = true;
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003601 } else {
3602 // Not a bitfield.
3603
3604 // validate II.
3605
3606 }
3607
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003608 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3609 // than a variably modified type.
3610 if (T->isVariablyModifiedType()) {
Anders Carlsson68adbd12008-12-07 00:20:55 +00003611 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003612 InvalidDecl = true;
3613 }
3614
Ted Kremenek173dd312008-07-23 18:04:17 +00003615 // Get the visibility (access control) for this ivar.
3616 ObjCIvarDecl::AccessControl ac =
3617 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3618 : ObjCIvarDecl::None;
3619
3620 // Construct the decl.
Argiris Kirtzidis96e79bf2009-02-17 20:20:37 +00003621 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, CurContext, Loc, II, T,ac,
Steve Naroffd3354222008-07-16 18:22:22 +00003622 (Expr *)BitfieldWidth);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003623
Douglas Gregordb568cf2009-01-08 20:45:30 +00003624 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00003625 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003626 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3627 && !isa<TagDecl>(PrevDecl)) {
3628 Diag(Loc, diag::err_duplicate_member) << II;
3629 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3630 NewID->setInvalidDecl();
3631 }
3632 }
3633
Ted Kremenek173dd312008-07-23 18:04:17 +00003634 // Process attributes attached to the ivar.
Chris Lattner9b384ca2008-06-29 00:02:00 +00003635 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003636
3637 if (D.getInvalidType() || InvalidDecl)
3638 NewID->setInvalidDecl();
Ted Kremenek173dd312008-07-23 18:04:17 +00003639
Douglas Gregordb568cf2009-01-08 20:45:30 +00003640 if (II) {
3641 // FIXME: When interfaces are DeclContexts, we'll need to add
3642 // these to the interface.
3643 S->AddDecl(NewID);
3644 IdResolver.AddDecl(NewID);
3645 }
3646
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003647 return NewID;
3648}
3649
Fariborz Jahanian0c5affb2007-09-29 00:54:24 +00003650void Sema::ActOnFields(Scope* S,
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003651 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff0acc9c92007-09-15 18:49:24 +00003652 DeclTy **Fields, unsigned NumFields,
Daniel Dunbarf3944442008-10-03 02:03:53 +00003653 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar175e6392008-10-03 17:33:35 +00003654 AttributeList *Attr) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003655 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3656 assert(EnclosingDecl && "missing record or interface decl");
3657 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
3658
Chris Lattner4b009652007-07-25 00:24:17 +00003659 // Verify that all the fields are okay.
3660 unsigned NumNamedMembers = 0;
3661 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregorc7f01612009-01-07 19:46:03 +00003662
Chris Lattner4b009652007-07-25 00:24:17 +00003663 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003664 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3665 assert(FD && "missing field decl");
3666
Chris Lattner4b009652007-07-25 00:24:17 +00003667 // Get the type for the field.
Chris Lattner36be3d82007-07-31 21:33:24 +00003668 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregorc7f01612009-01-07 19:46:03 +00003669
Douglas Gregordb568cf2009-01-08 20:45:30 +00003670 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregorc7f01612009-01-07 19:46:03 +00003671 // Remember all fields written by the user.
3672 RecFields.push_back(FD);
3673 }
Steve Naroffffeaa552007-09-14 23:09:53 +00003674
Chris Lattner4b009652007-07-25 00:24:17 +00003675 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner36be3d82007-07-31 21:33:24 +00003676 if (FDTy->isFunctionType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003677 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattner271d4c22008-11-24 05:29:24 +00003678 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003679 FD->setInvalidDecl();
3680 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003681 continue;
3682 }
Chris Lattner4b009652007-07-25 00:24:17 +00003683 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
3684 if (FDTy->isIncompleteType()) {
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003685 if (!Record) { // Incomplete ivar type is always an error.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003686 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3687 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003688 FD->setInvalidDecl();
3689 EnclosingDecl->setInvalidDecl();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003690 continue;
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003691 }
Chris Lattner4b009652007-07-25 00:24:17 +00003692 if (i != NumFields-1 || // ... that the last member ...
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003693 !Record->isStruct() || // ... of a structure ...
Chris Lattner36be3d82007-07-31 21:33:24 +00003694 !FDTy->isArrayType()) { //... may have incomplete array type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003695 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3696 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003697 FD->setInvalidDecl();
3698 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003699 continue;
3700 }
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003701 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003702 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003703 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003704 FD->setInvalidDecl();
3705 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003706 continue;
3707 }
Chris Lattner4b009652007-07-25 00:24:17 +00003708 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003709 if (Record)
3710 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003711 }
Chris Lattner4b009652007-07-25 00:24:17 +00003712 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3713 /// field of another structure or the element of an array.
Chris Lattner36be3d82007-07-31 21:33:24 +00003714 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003715 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3716 // If this is a member of a union, then entire union becomes "flexible".
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003717 if (Record && Record->isUnion()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003718 Record->setHasFlexibleArrayMember(true);
3719 } else {
3720 // If this is a struct/class and this is not the last element, reject
3721 // it. Note that GCC supports variable sized arrays in the middle of
3722 // structures.
3723 if (i != NumFields-1) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003724 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003725 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003726 FD->setInvalidDecl();
3727 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003728 continue;
3729 }
Chris Lattner4b009652007-07-25 00:24:17 +00003730 // We support flexible arrays at the end of structs in other structs
3731 // as an extension.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003732 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003733 << FD->getDeclName();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003734 if (Record)
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003735 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003736 }
3737 }
3738 }
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003739 /// A field cannot be an Objective-c object
Ted Kremenek42730c52008-01-07 19:49:32 +00003740 if (FDTy->isObjCInterfaceType()) {
Steve Naroffa442ad92009-02-20 22:59:16 +00003741 Diag(FD->getLocation(), diag::err_statically_allocated_object);
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003742 FD->setInvalidDecl();
3743 EnclosingDecl->setInvalidDecl();
3744 continue;
3745 }
Chris Lattner4b009652007-07-25 00:24:17 +00003746 // Keep track of the number of named members.
Douglas Gregordb568cf2009-01-08 20:45:30 +00003747 if (FD->getIdentifier())
Chris Lattner4b009652007-07-25 00:24:17 +00003748 ++NumNamedMembers;
Chris Lattner4b009652007-07-25 00:24:17 +00003749 }
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003750
Chris Lattner4b009652007-07-25 00:24:17 +00003751 // Okay, we successfully defined 'Record'.
Chris Lattner33aad6e2008-02-06 00:51:33 +00003752 if (Record) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003753 Record->completeDefinition(Context);
Chris Lattner33aad6e2008-02-06 00:51:33 +00003754 } else {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003755 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003756 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattnerdf6133b2009-02-20 21:35:13 +00003757 ID->setIVarList(ClsFields, RecFields.size(), Context);
3758 ID->setLocEnd(RBrac);
3759
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003760 // Must enforce the rule that ivars in the base classes may not be
3761 // duplicates.
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003762 if (ID->getSuperClass()) {
3763 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3764 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3765 ObjCIvarDecl* Ivar = (*IVI);
3766 IdentifierInfo *II = Ivar->getIdentifier();
Fariborz Jahanianbeae78e2009-02-16 19:35:27 +00003767 ObjCIvarDecl* prevIvar = ID->getSuperClass()->lookupInstanceVariable(II);
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003768 if (prevIvar) {
3769 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003770 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003771 }
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003772 }
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003773 }
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003774 }
Chris Lattner1100cfb2008-02-05 22:40:55 +00003775 else if (ObjCImplementationDecl *IMPDecl =
3776 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremenek42730c52008-01-07 19:49:32 +00003777 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
Chris Lattnerdf6133b2009-02-20 21:35:13 +00003778 IMPDecl->setIVarList(ClsFields, RecFields.size(), Context);
Fariborz Jahanian87093732007-10-31 18:48:14 +00003779 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand34caf92007-09-26 18:27:25 +00003780 }
Fariborz Jahanianebcc9b62007-09-14 21:08:27 +00003781 }
Daniel Dunbar175e6392008-10-03 17:33:35 +00003782
3783 if (Attr)
3784 ProcessDeclAttributeList(Record, Attr);
Chris Lattner4b009652007-07-25 00:24:17 +00003785}
3786
Steve Naroff0acc9c92007-09-15 18:49:24 +00003787Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Chris Lattner4b009652007-07-25 00:24:17 +00003788 DeclTy *lastEnumConst,
3789 SourceLocation IdLoc, IdentifierInfo *Id,
3790 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattnereee57c02008-04-04 06:12:32 +00003791 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003792 EnumConstantDecl *LastEnumConst =
3793 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3794 Expr *Val = static_cast<Expr*>(val);
3795
Chris Lattnera7549902007-08-26 06:24:45 +00003796 // The scope passed in may not be a decl scope. Zip up the scope tree until
3797 // we find one that is.
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003798 S = getNonFieldDeclScope(S);
Chris Lattnera7549902007-08-26 06:24:45 +00003799
Chris Lattner4b009652007-07-25 00:24:17 +00003800 // Verify that there isn't already something declared with this name in this
3801 // scope.
Douglas Gregor09be81b2009-02-04 17:27:36 +00003802 NamedDecl *PrevDecl = LookupName(S, Id, LookupOrdinaryName);
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003803 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003804 // Maybe we will complain about the shadowed template parameter.
3805 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3806 // Just pretend that we didn't see the previous declaration.
3807 PrevDecl = 0;
3808 }
3809
3810 if (PrevDecl) {
Argiris Kirtzidis4f071ec2008-07-16 21:01:53 +00003811 // When in C++, we may get a TagDecl with the same name; in this case the
3812 // enum constant will 'hide' the tag.
3813 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3814 "Received TagDecl when not in C++!");
Argiris Kirtzidis90842b62008-09-09 21:18:04 +00003815 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003816 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner65cae292008-11-19 08:23:25 +00003817 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Chris Lattner4b009652007-07-25 00:24:17 +00003818 else
Chris Lattner65cae292008-11-19 08:23:25 +00003819 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner1336cab2008-11-23 23:12:31 +00003820 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Ted Kremenek0c97e042009-02-07 01:47:29 +00003821 Val->Destroy(Context);
Chris Lattner4b009652007-07-25 00:24:17 +00003822 return 0;
3823 }
3824 }
3825
3826 llvm::APSInt EnumVal(32);
3827 QualType EltTy;
3828 if (Val) {
Chris Lattner2cda8792007-08-27 21:16:18 +00003829 // Make sure to promote the operand type to int.
3830 UsualUnaryConversions(Val);
3831
Chris Lattner4b009652007-07-25 00:24:17 +00003832 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3833 SourceLocation ExpLoc;
Anders Carlsson5374c6b2008-12-05 16:33:57 +00003834 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00003835 Val->Destroy(Context);
Chris Lattnere7f53a42007-08-27 17:37:24 +00003836 Val = 0; // Just forget about it.
Chris Lattner7cea0552007-08-29 16:03:41 +00003837 } else {
3838 EltTy = Val->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00003839 }
Chris Lattnere7f53a42007-08-27 17:37:24 +00003840 }
3841
3842 if (!Val) {
3843 if (LastEnumConst) {
3844 // Assign the last value + 1.
3845 EnumVal = LastEnumConst->getInitVal();
3846 ++EnumVal;
Chris Lattner2cda8792007-08-27 21:16:18 +00003847
3848 // Check for overflow on increment.
3849 if (EnumVal < LastEnumConst->getInitVal())
3850 Diag(IdLoc, diag::warn_enum_value_overflow);
3851
Chris Lattnere7f53a42007-08-27 17:37:24 +00003852 EltTy = LastEnumConst->getType();
3853 } else {
3854 // First value, set to zero.
3855 EltTy = Context.IntTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003856 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnere7f53a42007-08-27 17:37:24 +00003857 }
Chris Lattner4b009652007-07-25 00:24:17 +00003858 }
3859
Chris Lattnere4650482008-03-15 06:12:44 +00003860 EnumConstantDecl *New =
Chris Lattnereee57c02008-04-04 06:12:32 +00003861 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003862 Val, EnumVal);
Chris Lattner4b009652007-07-25 00:24:17 +00003863
3864 // Register this decl in the current scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00003865 PushOnScopeChains(New, S);
Douglas Gregor0c3ab042008-12-17 02:04:30 +00003866
Chris Lattner4b009652007-07-25 00:24:17 +00003867 return New;
3868}
3869
Steve Naroffb0726b82008-08-07 14:08:16 +00003870// FIXME: For consistency with ActOnFields(), we should have the parser
3871// pass in the source location for the left/right braces.
Steve Naroff0acc9c92007-09-15 18:49:24 +00003872void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Chris Lattner4b009652007-07-25 00:24:17 +00003873 DeclTy **Elements, unsigned NumElements) {
3874 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregord8028382009-01-05 19:45:36 +00003875 QualType EnumType = Context.getTypeDeclType(Enum);
Chris Lattner4b009652007-07-25 00:24:17 +00003876
Chris Lattner435c3fd2007-08-28 05:10:31 +00003877 // TODO: If the result value doesn't fit in an int, it must be a long or long
3878 // long value. ISO C does not support this, but GCC does as an extension,
3879 // emit a warning.
Chris Lattner8cd0e932008-03-05 18:54:05 +00003880 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattner435c3fd2007-08-28 05:10:31 +00003881
Chris Lattner206754a2007-08-28 06:15:15 +00003882 // Verify that all the values are okay, compute the size of the values, and
3883 // reverse the list.
3884 unsigned NumNegativeBits = 0;
3885 unsigned NumPositiveBits = 0;
3886
3887 // Keep track of whether all elements have type int.
3888 bool AllElementsInt = true;
3889
Chris Lattner4b009652007-07-25 00:24:17 +00003890 for (unsigned i = 0; i != NumElements; ++i) {
3891 EnumConstantDecl *ECD =
3892 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3893 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003894
3895 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003896 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003897 assert(InitVal.getBitWidth() >= IntWidth &&
3898 "Should have promoted value to int");
Chris Lattnercb33ae12007-08-28 05:27:00 +00003899 if (InitVal.getBitWidth() > IntWidth) {
3900 llvm::APSInt V(InitVal);
3901 V.trunc(IntWidth);
3902 V.extend(InitVal.getBitWidth());
3903 if (V != InitVal)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003904 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3905 << InitVal.toString(10);
Chris Lattnercb33ae12007-08-28 05:27:00 +00003906 }
Chris Lattner206754a2007-08-28 06:15:15 +00003907
3908 // Keep track of the size of positive and negative values.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003909 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattneraff63f02008-01-14 21:47:29 +00003910 NumPositiveBits = std::max(NumPositiveBits,
3911 (unsigned)InitVal.getActiveBits());
Chris Lattner206754a2007-08-28 06:15:15 +00003912 else
Chris Lattneraff63f02008-01-14 21:47:29 +00003913 NumNegativeBits = std::max(NumNegativeBits,
3914 (unsigned)InitVal.getMinSignedBits());
Chris Lattner4b009652007-07-25 00:24:17 +00003915
Chris Lattner206754a2007-08-28 06:15:15 +00003916 // Keep track of whether every enum element has type int (very commmon).
3917 if (AllElementsInt)
3918 AllElementsInt = ECD->getType() == Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003919 }
3920
Chris Lattner206754a2007-08-28 06:15:15 +00003921 // Figure out the type that should be used for this enum.
3922 // FIXME: Support attribute(packed) on enums and -fshort-enums.
3923 QualType BestType;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003924 unsigned BestWidth;
Chris Lattner206754a2007-08-28 06:15:15 +00003925
3926 if (NumNegativeBits) {
3927 // If there is a negative value, figure out the smallest integer type (of
3928 // int/long/longlong) that fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003929 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003930 BestType = Context.IntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003931 BestWidth = IntWidth;
3932 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003933 BestWidth = Context.Target.getLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003934
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003935 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003936 BestType = Context.LongTy;
3937 else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003938 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003939
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003940 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003941 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3942 BestType = Context.LongLongTy;
3943 }
3944 }
3945 } else {
3946 // If there is no negative value, figure out which of uint, ulong, ulonglong
3947 // fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003948 if (NumPositiveBits <= IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003949 BestType = Context.UnsignedIntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003950 BestWidth = IntWidth;
3951 } else if (NumPositiveBits <=
Chris Lattner8cd0e932008-03-05 18:54:05 +00003952 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattner206754a2007-08-28 06:15:15 +00003953 BestType = Context.UnsignedLongTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003954 } else {
3955 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003956 assert(NumPositiveBits <= BestWidth &&
Chris Lattner206754a2007-08-28 06:15:15 +00003957 "How could an initializer get larger than ULL?");
3958 BestType = Context.UnsignedLongLongTy;
3959 }
3960 }
3961
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003962 // Loop over all of the enumerator constants, changing their types to match
3963 // the type of the enum if needed.
3964 for (unsigned i = 0; i != NumElements; ++i) {
3965 EnumConstantDecl *ECD =
3966 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3967 if (!ECD) continue; // Already issued a diagnostic.
3968
3969 // Standard C says the enumerators have int type, but we allow, as an
3970 // extension, the enumerators to be larger than int size. If each
3971 // enumerator value fits in an int, type it as an int, otherwise type it the
3972 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3973 // that X has type 'int', not 'unsigned'.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003974 if (ECD->getType() == Context.IntTy) {
3975 // Make sure the init value is signed.
3976 llvm::APSInt IV = ECD->getInitVal();
3977 IV.setIsSigned(true);
3978 ECD->setInitVal(IV);
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003979
3980 if (getLangOptions().CPlusPlus)
3981 // C++ [dcl.enum]p4: Following the closing brace of an
3982 // enum-specifier, each enumerator has the type of its
3983 // enumeration.
3984 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003985 continue; // Already int type.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003986 }
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003987
3988 // Determine whether the value fits into an int.
3989 llvm::APSInt InitVal = ECD->getInitVal();
3990 bool FitsInInt;
3991 if (InitVal.isUnsigned() || !InitVal.isNegative())
3992 FitsInInt = InitVal.getActiveBits() < IntWidth;
3993 else
3994 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3995
3996 // If it fits into an integer type, force it. Otherwise force it to match
3997 // the enum decl type.
3998 QualType NewTy;
3999 unsigned NewWidth;
4000 bool NewSign;
4001 if (FitsInInt) {
4002 NewTy = Context.IntTy;
4003 NewWidth = IntWidth;
4004 NewSign = true;
4005 } else if (ECD->getType() == BestType) {
4006 // Already the right type!
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00004007 if (getLangOptions().CPlusPlus)
4008 // C++ [dcl.enum]p4: Following the closing brace of an
4009 // enum-specifier, each enumerator has the type of its
4010 // enumeration.
4011 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004012 continue;
4013 } else {
4014 NewTy = BestType;
4015 NewWidth = BestWidth;
4016 NewSign = BestType->isSignedIntegerType();
4017 }
4018
4019 // Adjust the APSInt value.
4020 InitVal.extOrTrunc(NewWidth);
4021 InitVal.setIsSigned(NewSign);
4022 ECD->setInitVal(InitVal);
4023
4024 // Adjust the Expr initializer and type.
Chris Lattner8c6dc7a2009-01-15 19:19:42 +00004025 if (ECD->getInitExpr())
Ted Kremenek0c97e042009-02-07 01:47:29 +00004026 ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy, ECD->getInitExpr(),
4027 /*isLvalue=*/false));
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00004028 if (getLangOptions().CPlusPlus)
4029 // C++ [dcl.enum]p4: Following the closing brace of an
4030 // enum-specifier, each enumerator has the type of its
4031 // enumeration.
4032 ECD->setType(EnumType);
4033 else
4034 ECD->setType(NewTy);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004035 }
Chris Lattner206754a2007-08-28 06:15:15 +00004036
Douglas Gregor8acb7272008-12-11 16:49:14 +00004037 Enum->completeDefinition(Context, BestType);
Chris Lattner4b009652007-07-25 00:24:17 +00004038}
4039
Anders Carlsson4f7f4412008-02-08 00:33:21 +00004040Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00004041 ExprArg expr) {
4042 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
4043
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00004044 return FileScopeAsmDecl::Create(Context, CurContext, Loc, AsmString);
Anders Carlsson4f7f4412008-02-08 00:33:21 +00004045}
4046