blob: abb5e40dd4a755fef85ca0d6f8a9bc72b04051ce [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));
Douglas Gregoraf682022009-02-24 01:23:02 +0000213 if (Redecl != IdResolver.end() && S->isDeclScope(*Redecl)) {
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000214 // 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 Gregoraf682022009-02-24 01:23:02 +0000540 if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
541 New->getStorageClass() == FunctionDecl::Static &&
542 Old->getStorageClass() != FunctionDecl::Static) {
543 Diag(New->getLocation(), diag::err_static_non_static)
544 << New;
545 Diag(Old->getLocation(), PrevDiag);
546 return true;
547 }
548
Douglas Gregord2baafd2008-10-21 16:13:35 +0000549 if (getLangOptions().CPlusPlus) {
550 // (C++98 13.1p2):
551 // Certain function declarations cannot be overloaded:
552 // -- Function declarations that differ only in the return type
553 // cannot be overloaded.
554 QualType OldReturnType
555 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
556 QualType NewReturnType
557 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
558 if (OldReturnType != NewReturnType) {
559 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
Douglas Gregor411889e2009-02-13 23:20:09 +0000560 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000561 return true;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000562 }
563
564 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
565 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
566 if (OldMethod && NewMethod) {
567 // -- Member function declarations with the same name and the
568 // same parameter types cannot be overloaded if any of them
569 // is a static member function declaration.
570 if (OldMethod->isStatic() || NewMethod->isStatic()) {
571 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
Douglas Gregor411889e2009-02-13 23:20:09 +0000572 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000573 return true;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000574 }
Douglas Gregorb9213832008-12-15 21:24:18 +0000575
576 // C++ [class.mem]p1:
577 // [...] A member shall not be declared twice in the
578 // member-specification, except that a nested class or member
579 // class template can be declared and then later defined.
580 if (OldMethod->getLexicalDeclContext() ==
581 NewMethod->getLexicalDeclContext()) {
582 unsigned NewDiag;
583 if (isa<CXXConstructorDecl>(OldMethod))
584 NewDiag = diag::err_constructor_redeclared;
585 else if (isa<CXXDestructorDecl>(NewMethod))
586 NewDiag = diag::err_destructor_redeclared;
587 else if (isa<CXXConversionDecl>(NewMethod))
588 NewDiag = diag::err_conv_function_redeclared;
589 else
590 NewDiag = diag::err_member_redeclared;
591
592 Diag(New->getLocation(), NewDiag);
Douglas Gregor411889e2009-02-13 23:20:09 +0000593 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregorb9213832008-12-15 21:24:18 +0000594 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000595 }
596
597 // (C++98 8.3.5p3):
598 // All declarations for a function shall agree exactly in both the
599 // return type and the parameter-type-list.
Douglas Gregoraf682022009-02-24 01:23:02 +0000600 if (OldQType == NewQType)
601 return MergeCompatibleFunctionDecls(New, Old);
Douglas Gregord2baafd2008-10-21 16:13:35 +0000602
603 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregor42214c52008-04-21 02:02:58 +0000604 }
Chris Lattner3e254fb2008-04-08 04:40:51 +0000605
606 // C: Function types need to be compatible, not identical. This handles
Steve Naroff1d5bd642008-01-14 20:51:29 +0000607 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner3e254fb2008-04-08 04:40:51 +0000608 if (!getLangOptions().CPlusPlus &&
Eli Friedman0d9549b2008-08-22 00:56:42 +0000609 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregorf1196702009-02-16 18:20:44 +0000610 const FunctionType *NewFuncType = NewQType->getAsFunctionType();
611 const FunctionTypeProto *OldProto = 0;
612 if (isa<FunctionTypeNoProto>(NewFuncType) &&
613 (OldProto = OldQType->getAsFunctionTypeProto())) {
614 // The old declaration provided a function prototype, but the
615 // new declaration does not. Merge in the prototype.
616 llvm::SmallVector<QualType, 16> ParamTypes(OldProto->arg_type_begin(),
617 OldProto->arg_type_end());
618 NewQType = Context.getFunctionType(NewFuncType->getResultType(),
619 &ParamTypes[0], ParamTypes.size(),
620 OldProto->isVariadic(),
621 OldProto->getTypeQuals());
622 New->setType(NewQType);
623 New->setInheritedPrototype();
Douglas Gregorca9f52e2009-02-16 20:58:07 +0000624
625 // Synthesize a parameter for each argument type.
626 llvm::SmallVector<ParmVarDecl*, 16> Params;
627 for (FunctionTypeProto::arg_type_iterator
628 ParamType = OldProto->arg_type_begin(),
629 ParamEnd = OldProto->arg_type_end();
630 ParamType != ParamEnd; ++ParamType) {
631 ParmVarDecl *Param = ParmVarDecl::Create(Context, New,
632 SourceLocation(), 0,
633 *ParamType, VarDecl::None,
634 0);
635 Param->setImplicit();
636 Params.push_back(Param);
637 }
638
639 New->setParams(Context, &Params[0], Params.size());
640
Douglas Gregorf1196702009-02-16 18:20:44 +0000641 }
642
Douglas Gregoraf682022009-02-24 01:23:02 +0000643 return MergeCompatibleFunctionDecls(New, Old);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000644 }
Chris Lattner1470b072007-11-06 06:07:26 +0000645
Steve Naroff6c9e7922008-01-16 15:01:34 +0000646 // A function that has already been declared has been redeclared or defined
647 // with a different type- show appropriate diagnostic
Douglas Gregor083c23e2009-02-16 17:45:42 +0000648 if (unsigned BuiltinID = Old->getBuiltinID(Context)) {
649 // The user has declared a builtin function with an incompatible
650 // signature.
651 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
652 // The function the user is redeclaring is a library-defined
653 // function like 'malloc' or 'printf'. Warn about the
654 // redeclaration, then ignore it.
655 Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
656 Diag(Old->getLocation(), diag::note_previous_builtin_declaration)
657 << Old << Old->getType();
Douglas Gregor6b3cca62009-02-18 22:00:45 +0000658 return true;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000659 }
Steve Naroff6c9e7922008-01-16 15:01:34 +0000660
Douglas Gregor083c23e2009-02-16 17:45:42 +0000661 PrevDiag = diag::note_previous_builtin_declaration;
662 }
663
Chris Lattner271d4c22008-11-24 05:29:24 +0000664 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Douglas Gregor411889e2009-02-13 23:20:09 +0000665 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000666 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000667}
668
Douglas Gregoraf682022009-02-24 01:23:02 +0000669/// \brief Completes the merge of two function declarations that are
670/// known to be compatible.
671///
672/// This routine handles the merging of attributes and other
673/// properties of function declarations form the old declaration to
674/// the new declaration, once we know that New is in fact a
675/// redeclaration of Old.
676///
677/// \returns false
678bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old) {
679 // Merge the attributes
680 MergeAttributes(New, Old);
681
682 // Merge the storage class.
683 New->setStorageClass(Old->getStorageClass());
684
685 // FIXME: need to implement inline semantics
686
687 // Merge "pure" flag.
688 if (Old->isPure())
689 New->setPure();
690
691 // Merge the "deleted" flag.
692 if (Old->isDeleted())
693 New->setDeleted();
694
695 if (getLangOptions().CPlusPlus)
696 return MergeCXXFunctionDecl(New, Old);
697
698 return false;
699}
700
Steve Naroffb5e78152008-08-08 17:50:35 +0000701/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd5802092008-08-10 15:28:06 +0000702static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000703 if (VD->isFileVarDecl())
704 return (!VD->getInit() &&
705 (VD->getStorageClass() == VarDecl::None ||
706 VD->getStorageClass() == VarDecl::Static));
707 return false;
708}
709
710/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
711/// when dealing with C "tentative" external object definitions (C99 6.9.2).
712void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
713 bool VDIsTentative = isTentativeDefinition(VD);
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000714 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffb5e78152008-08-08 17:50:35 +0000715
Douglas Gregor3a423132009-01-07 16:34:42 +0000716 // FIXME: I don't think this will actually see all of the
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000717 // redefinitions. Can't we check this property on-the-fly?
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000718 for (IdentifierResolver::iterator I = IdResolver.begin(VD->getIdentifier()),
719 E = IdResolver.end();
720 I != E; ++I) {
Argiris Kirtzidis90842b62008-09-09 21:18:04 +0000721 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000722 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
723
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000724 // Handle the following case:
725 // int a[10];
726 // int a[]; - the code below makes sure we set the correct type.
727 // int a[11]; - this is an error, size isn't 10.
728 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
729 OldDecl->getType()->isConstantArrayType())
730 VD->setType(OldDecl->getType());
731
Steve Naroffb5e78152008-08-08 17:50:35 +0000732 // Check for "tentative" definitions. We can't accomplish this in
733 // MergeVarDecl since the initializer hasn't been attached.
734 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
735 continue;
736
737 // Handle __private_extern__ just like extern.
738 if (OldDecl->getStorageClass() != VarDecl::Extern &&
739 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
740 VD->getStorageClass() != VarDecl::Extern &&
741 VD->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000742 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000743 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Sebastian Redlc5d44692009-02-08 10:49:44 +0000744 // One redefinition error is enough.
745 break;
Steve Naroffb5e78152008-08-08 17:50:35 +0000746 }
747 }
748 }
749}
750
Chris Lattner4b009652007-07-25 00:24:17 +0000751/// MergeVarDecl - We just parsed a variable 'New' which has the same name
752/// and scope as a previous declaration 'Old'. Figure out how to resolve this
753/// situation, merging decls or emitting diagnostics as appropriate.
754///
Steve Naroffb5e78152008-08-08 17:50:35 +0000755/// Tentative definition rules (C99 6.9.2p2) are checked by
756/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
757/// definitions here, since the initializer hasn't been attached.
Chris Lattner4b009652007-07-25 00:24:17 +0000758///
Douglas Gregor083c23e2009-02-16 17:45:42 +0000759bool Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Chris Lattner4b009652007-07-25 00:24:17 +0000760 // Verify the old decl was also a variable.
761 VarDecl *Old = dyn_cast<VarDecl>(OldD);
762 if (!Old) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000763 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000764 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000765 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000766 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000767 }
Chris Lattner402b3372008-03-03 03:28:21 +0000768
769 MergeAttributes(New, Old);
770
Eli Friedman4a480d62009-01-24 23:49:55 +0000771 // Merge the types
772 QualType MergedT = Context.mergeTypes(New->getType(), Old->getType());
773 if (MergedT.isNull()) {
Douglas Gregord1675382009-01-09 19:42:16 +0000774 Diag(New->getLocation(), diag::err_redefinition_different_type)
775 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000776 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000777 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000778 }
Eli Friedman4a480d62009-01-24 23:49:55 +0000779 New->setType(MergedT);
Steve Naroffb00247f2008-01-30 00:44:01 +0000780 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
781 if (New->getStorageClass() == VarDecl::Static &&
782 (Old->getStorageClass() == VarDecl::None ||
783 Old->getStorageClass() == VarDecl::Extern)) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000784 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000785 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000786 return true;
Steve Naroffb00247f2008-01-30 00:44:01 +0000787 }
788 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
789 if (New->getStorageClass() != VarDecl::Static &&
790 Old->getStorageClass() == VarDecl::Static) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000791 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000792 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000793 return true;
Steve Naroffb00247f2008-01-30 00:44:01 +0000794 }
Steve Naroff2f3c4432008-09-17 14:05:40 +0000795 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
796 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000797 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000798 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000799 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000800 }
Douglas Gregor083c23e2009-02-16 17:45:42 +0000801 return false;
Chris Lattner4b009652007-07-25 00:24:17 +0000802}
803
Chris Lattner3e254fb2008-04-08 04:40:51 +0000804/// CheckParmsForFunctionDef - Check that the parameters of the given
805/// function are appropriate for the definition of a function. This
806/// takes care of any checks that cannot be performed on the
807/// declaration itself, e.g., that the types of each of the function
808/// parameters are complete.
809bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
810 bool HasInvalidParm = false;
811 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
812 ParmVarDecl *Param = FD->getParamDecl(p);
813
814 // C99 6.7.5.3p4: the parameters in a parameter type list in a
815 // function declarator that is part of a function definition of
816 // that function shall not have incomplete type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +0000817 if (!Param->isInvalidDecl() &&
818 DiagnoseIncompleteType(Param->getLocation(), Param->getType(),
819 diag::err_typecheck_decl_incomplete_type)) {
Chris Lattner3e254fb2008-04-08 04:40:51 +0000820 Param->setInvalidDecl();
821 HasInvalidParm = true;
822 }
Chris Lattnerb0b42f62008-12-17 07:32:46 +0000823
824 // C99 6.9.1p5: If the declarator includes a parameter type list, the
825 // declaration of each parameter shall include an identifier.
Douglas Gregorca9f52e2009-02-16 20:58:07 +0000826 if (Param->getIdentifier() == 0 &&
827 !Param->isImplicit() &&
828 !getLangOptions().CPlusPlus)
Chris Lattnerb0b42f62008-12-17 07:32:46 +0000829 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000830 }
831
832 return HasInvalidParm;
833}
834
Chris Lattner4b009652007-07-25 00:24:17 +0000835/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
836/// no declarator (e.g. "struct foo;") is parsed.
837Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
Douglas Gregora60c62e2009-02-09 15:09:02 +0000838 TagDecl *Tag = 0;
839 if (DS.getTypeSpecType() == DeclSpec::TST_class ||
840 DS.getTypeSpecType() == DeclSpec::TST_struct ||
841 DS.getTypeSpecType() == DeclSpec::TST_union ||
842 DS.getTypeSpecType() == DeclSpec::TST_enum)
843 Tag = dyn_cast<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
844
Douglas Gregorb748fc52009-01-12 22:49:06 +0000845 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
846 if (!Record->getDeclName() && Record->isDefinition() &&
847 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
848 return BuildAnonymousStructOrUnion(S, DS, Record);
849
850 // Microsoft allows unnamed struct/union fields. Don't complain
851 // about them.
852 // FIXME: Should we support Microsoft's extensions in this area?
853 if (Record->getDeclName() && getLangOptions().Microsoft)
854 return Tag;
855 }
856
Douglas Gregord406b032009-02-06 22:42:48 +0000857 if (!DS.isMissingDeclaratorOk() &&
858 DS.getTypeSpecType() != DeclSpec::TST_error) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000859 // Warn about typedefs of enums without names, since this is an
860 // extension in both Microsoft an GNU.
Douglas Gregor72de8492009-01-17 02:55:50 +0000861 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
862 Tag && isa<EnumDecl>(Tag)) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000863 Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
Douglas Gregor80c720e2009-01-13 23:10:51 +0000864 << DS.getSourceRange();
865 return Tag;
866 }
867
Sebastian Redlb7605e82008-12-28 15:28:59 +0000868 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
869 << DS.getSourceRange();
870 return 0;
871 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000872
Douglas Gregor723d3332009-01-07 00:43:41 +0000873 return Tag;
874}
875
876/// InjectAnonymousStructOrUnionMembers - Inject the members of the
877/// anonymous struct or union AnonRecord into the owning context Owner
878/// and scope S. This routine will be invoked just after we realize
879/// that an unnamed union or struct is actually an anonymous union or
880/// struct, e.g.,
881///
882/// @code
883/// union {
884/// int i;
885/// float f;
886/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
887/// // f into the surrounding scope.x
888/// @endcode
889///
890/// This routine is recursive, injecting the names of nested anonymous
891/// structs/unions into the owning context and scope as well.
892bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
893 RecordDecl *AnonRecord) {
894 bool Invalid = false;
895 for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
896 FEnd = AnonRecord->field_end();
897 F != FEnd; ++F) {
898 if ((*F)->getDeclName()) {
Douglas Gregor09be81b2009-02-04 17:27:36 +0000899 NamedDecl *PrevDecl = LookupQualifiedName(Owner, (*F)->getDeclName(),
900 LookupOrdinaryName, true);
Douglas Gregor723d3332009-01-07 00:43:41 +0000901 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
902 // C++ [class.union]p2:
903 // The names of the members of an anonymous union shall be
904 // distinct from the names of any other entity in the
905 // scope in which the anonymous union is declared.
906 unsigned diagKind
907 = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl
908 : diag::err_anonymous_struct_member_redecl;
909 Diag((*F)->getLocation(), diagKind)
910 << (*F)->getDeclName();
911 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
912 Invalid = true;
913 } else {
914 // C++ [class.union]p2:
915 // For the purpose of name lookup, after the anonymous union
916 // definition, the members of the anonymous union are
917 // considered to have been defined in the scope in which the
918 // anonymous union is declared.
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000919 Owner->makeDeclVisibleInContext(*F);
Douglas Gregor723d3332009-01-07 00:43:41 +0000920 S->AddDecl(*F);
921 IdResolver.AddDecl(*F);
922 }
923 } else if (const RecordType *InnerRecordType
924 = (*F)->getType()->getAsRecordType()) {
925 RecordDecl *InnerRecord = InnerRecordType->getDecl();
926 if (InnerRecord->isAnonymousStructOrUnion())
927 Invalid = Invalid ||
928 InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
929 }
930 }
931
932 return Invalid;
933}
934
935/// ActOnAnonymousStructOrUnion - Handle the declaration of an
936/// anonymous structure or union. Anonymous unions are a C++ feature
937/// (C++ [class.union]) and a GNU C extension; anonymous structures
938/// are a GNU C and GNU C++ extension.
939Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
940 RecordDecl *Record) {
941 DeclContext *Owner = Record->getDeclContext();
942
943 // Diagnose whether this anonymous struct/union is an extension.
944 if (Record->isUnion() && !getLangOptions().CPlusPlus)
945 Diag(Record->getLocation(), diag::ext_anonymous_union);
946 else if (!Record->isUnion())
947 Diag(Record->getLocation(), diag::ext_anonymous_struct);
948
949 // C and C++ require different kinds of checks for anonymous
950 // structs/unions.
951 bool Invalid = false;
952 if (getLangOptions().CPlusPlus) {
953 const char* PrevSpec = 0;
954 // C++ [class.union]p3:
955 // Anonymous unions declared in a named namespace or in the
956 // global namespace shall be declared static.
957 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
958 (isa<TranslationUnitDecl>(Owner) ||
959 (isa<NamespaceDecl>(Owner) &&
960 cast<NamespaceDecl>(Owner)->getDeclName()))) {
961 Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
962 Invalid = true;
963
964 // Recover by adding 'static'.
965 DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec);
966 }
967 // C++ [class.union]p3:
968 // A storage class is not allowed in a declaration of an
969 // anonymous union in a class scope.
970 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
971 isa<RecordDecl>(Owner)) {
972 Diag(DS.getStorageClassSpecLoc(),
973 diag::err_anonymous_union_with_storage_spec);
974 Invalid = true;
975
976 // Recover by removing the storage specifier.
977 DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
978 PrevSpec);
979 }
Douglas Gregorc7f01612009-01-07 19:46:03 +0000980
981 // C++ [class.union]p2:
982 // The member-specification of an anonymous union shall only
983 // define non-static data members. [Note: nested types and
984 // functions cannot be declared within an anonymous union. ]
985 for (DeclContext::decl_iterator Mem = Record->decls_begin(),
986 MemEnd = Record->decls_end();
987 Mem != MemEnd; ++Mem) {
988 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
989 // C++ [class.union]p3:
990 // An anonymous union shall not have private or protected
991 // members (clause 11).
992 if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
993 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
994 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
995 Invalid = true;
996 }
997 } else if ((*Mem)->isImplicit()) {
998 // Any implicit members are fine.
Douglas Gregor2d87eb02009-02-03 00:34:39 +0000999 } else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) {
1000 // This is a type that showed up in an
1001 // elaborated-type-specifier inside the anonymous struct or
1002 // union, but which actually declares a type outside of the
1003 // anonymous struct or union. It's okay.
Douglas Gregorc7f01612009-01-07 19:46:03 +00001004 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
1005 if (!MemRecord->isAnonymousStructOrUnion() &&
1006 MemRecord->getDeclName()) {
1007 // This is a nested type declaration.
1008 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
1009 << (int)Record->isUnion();
1010 Invalid = true;
1011 }
1012 } else {
1013 // We have something that isn't a non-static data
1014 // member. Complain about it.
1015 unsigned DK = diag::err_anonymous_record_bad_member;
1016 if (isa<TypeDecl>(*Mem))
1017 DK = diag::err_anonymous_record_with_type;
1018 else if (isa<FunctionDecl>(*Mem))
1019 DK = diag::err_anonymous_record_with_function;
1020 else if (isa<VarDecl>(*Mem))
1021 DK = diag::err_anonymous_record_with_static;
1022 Diag((*Mem)->getLocation(), DK)
1023 << (int)Record->isUnion();
1024 Invalid = true;
1025 }
1026 }
Douglas Gregor723d3332009-01-07 00:43:41 +00001027 } else {
1028 // FIXME: Check GNU C semantics
Douglas Gregorb748fc52009-01-12 22:49:06 +00001029 if (Record->isUnion() && !Owner->isRecord()) {
1030 Diag(Record->getLocation(), diag::err_anonymous_union_not_member)
1031 << (int)getLangOptions().CPlusPlus;
1032 Invalid = true;
1033 }
Douglas Gregor723d3332009-01-07 00:43:41 +00001034 }
1035
1036 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregorb748fc52009-01-12 22:49:06 +00001037 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
1038 << (int)getLangOptions().CPlusPlus;
Douglas Gregor723d3332009-01-07 00:43:41 +00001039 Invalid = true;
1040 }
1041
1042 // Create a declaration for this anonymous struct/union.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001043 NamedDecl *Anon = 0;
Douglas Gregor723d3332009-01-07 00:43:41 +00001044 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
1045 Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
1046 /*IdentifierInfo=*/0,
1047 Context.getTypeDeclType(Record),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001048 /*BitWidth=*/0, /*Mutable=*/false);
Douglas Gregorc7f01612009-01-07 19:46:03 +00001049 Anon->setAccess(AS_public);
1050 if (getLangOptions().CPlusPlus)
1051 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregor723d3332009-01-07 00:43:41 +00001052 } else {
1053 VarDecl::StorageClass SC;
1054 switch (DS.getStorageClassSpec()) {
1055 default: assert(0 && "Unknown storage class!");
1056 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1057 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1058 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1059 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1060 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1061 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1062 case DeclSpec::SCS_mutable:
1063 // mutable can only appear on non-static class members, so it's always
1064 // an error here
1065 Diag(Record->getLocation(), diag::err_mutable_nonmember);
1066 Invalid = true;
1067 SC = VarDecl::None;
1068 break;
1069 }
1070
1071 Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
1072 /*IdentifierInfo=*/0,
1073 Context.getTypeDeclType(Record),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001074 SC, DS.getSourceRange().getBegin());
Douglas Gregor723d3332009-01-07 00:43:41 +00001075 }
Douglas Gregorc7f01612009-01-07 19:46:03 +00001076 Anon->setImplicit();
Douglas Gregor723d3332009-01-07 00:43:41 +00001077
1078 // Add the anonymous struct/union object to the current
1079 // context. We'll be referencing this object when we refer to one of
1080 // its members.
Douglas Gregor03b2ad22009-01-12 23:27:07 +00001081 Owner->addDecl(Anon);
Douglas Gregor723d3332009-01-07 00:43:41 +00001082
1083 // Inject the members of the anonymous struct/union into the owning
1084 // context and into the identifier resolver chain for name lookup
1085 // purposes.
Douglas Gregorb748fc52009-01-12 22:49:06 +00001086 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
1087 Invalid = true;
Douglas Gregor723d3332009-01-07 00:43:41 +00001088
1089 // Mark this as an anonymous struct/union type. Note that we do not
1090 // do this until after we have already checked and injected the
1091 // members of this anonymous struct/union type, because otherwise
1092 // the members could be injected twice: once by DeclContext when it
1093 // builds its lookup table, and once by
1094 // InjectAnonymousStructOrUnionMembers.
1095 Record->setAnonymousStructOrUnion(true);
1096
1097 if (Invalid)
1098 Anon->setInvalidDecl();
1099
1100 return Anon;
Chris Lattner4b009652007-07-25 00:24:17 +00001101}
1102
Steve Naroffe14e5542007-09-02 02:04:30 +00001103
Douglas Gregor6704b312008-11-17 22:58:34 +00001104/// GetNameForDeclarator - Determine the full declaration name for the
1105/// given Declarator.
1106DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1107 switch (D.getKind()) {
1108 case Declarator::DK_Abstract:
1109 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
1110 return DeclarationName();
1111
1112 case Declarator::DK_Normal:
1113 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
1114 return DeclarationName(D.getIdentifier());
1115
1116 case Declarator::DK_Constructor: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001117 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor6704b312008-11-17 22:58:34 +00001118 Ty = Context.getCanonicalType(Ty);
1119 return Context.DeclarationNames.getCXXConstructorName(Ty);
1120 }
1121
1122 case Declarator::DK_Destructor: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001123 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor6704b312008-11-17 22:58:34 +00001124 Ty = Context.getCanonicalType(Ty);
1125 return Context.DeclarationNames.getCXXDestructorName(Ty);
1126 }
1127
1128 case Declarator::DK_Conversion: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001129 // FIXME: We'd like to keep the non-canonical type for diagnostics!
Douglas Gregor6704b312008-11-17 22:58:34 +00001130 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1131 Ty = Context.getCanonicalType(Ty);
1132 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
1133 }
Douglas Gregor96a32dd2008-11-18 14:39:36 +00001134
1135 case Declarator::DK_Operator:
1136 assert(D.getIdentifier() == 0 && "operator names have no identifier");
1137 return Context.DeclarationNames.getCXXOperatorName(
1138 D.getOverloadedOperator());
Douglas Gregor6704b312008-11-17 22:58:34 +00001139 }
1140
1141 assert(false && "Unknown name kind");
1142 return DeclarationName();
1143}
1144
Douglas Gregor46cfe452009-02-06 17:46:57 +00001145/// isNearlyMatchingFunction - Determine whether the C++ functions
1146/// Declaration and Definition are "nearly" matching. This heuristic
1147/// is used to improve diagnostics in the case where an out-of-line
1148/// function definition doesn't match any declaration within
1149/// the class or namespace.
1150static bool isNearlyMatchingFunction(ASTContext &Context,
1151 FunctionDecl *Declaration,
1152 FunctionDecl *Definition) {
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001153 if (Declaration->param_size() != Definition->param_size())
1154 return false;
1155 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1156 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1157 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1158
1159 DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType());
1160 DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType());
1161 if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType())
1162 return false;
1163 }
1164
1165 return true;
1166}
1167
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00001168Sema::DeclTy *
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001169Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1170 bool IsFunctionDefinition) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001171 NamedDecl *LastDeclarator = dyn_cast_or_null<NamedDecl>((Decl *)lastDecl);
Douglas Gregor6704b312008-11-17 22:58:34 +00001172 DeclarationName Name = GetNameForDeclarator(D);
1173
Chris Lattner4b009652007-07-25 00:24:17 +00001174 // All of these full declarators require an identifier. If it doesn't have
1175 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor6704b312008-11-17 22:58:34 +00001176 if (!Name) {
Chris Lattnercd61d592008-11-11 06:13:16 +00001177 if (!D.getInvalidType()) // Reject this if we think it is valid.
1178 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner8ba580c2008-11-19 05:08:23 +00001179 diag::err_declarator_need_ident)
1180 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00001181 return 0;
1182 }
1183
Chris Lattnera7549902007-08-26 06:24:45 +00001184 // The scope passed in may not be a decl scope. Zip up the scope tree until
1185 // we find one that is.
Douglas Gregor8acb7272008-12-11 16:49:14 +00001186 while ((S->getFlags() & Scope::DeclScope) == 0 ||
Douglas Gregor279272e2009-02-04 19:02:06 +00001187 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattnera7549902007-08-26 06:24:45 +00001188 S = S->getParent();
1189
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001190 DeclContext *DC;
Douglas Gregor09be81b2009-02-04 17:27:36 +00001191 NamedDecl *PrevDecl;
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001192 NamedDecl *New;
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001193 bool InvalidDecl = false;
Douglas Gregor083c23e2009-02-16 17:45:42 +00001194
Douglas Gregor1c52c632009-02-24 20:03:32 +00001195 QualType R = GetTypeForDeclarator(D, S);
1196 if (R.isNull()) {
1197 InvalidDecl = true;
1198 R = Context.IntTy;
1199 }
1200
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001201 // See if this is a redefinition of a variable in the same scope.
Douglas Gregor52ae30c2009-01-30 01:04:22 +00001202 if (!D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid()) {
Douglas Gregor1c52c632009-02-24 20:03:32 +00001203 LookupNameKind NameKind = LookupOrdinaryName;
1204
1205 // If the declaration we're planning to build will be a function
1206 // or object with linkage, then look for another declaration with
1207 // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
1208 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
1209 /* Do nothing*/;
1210 else if (R->isFunctionType()) {
1211 if (CurContext->isFunctionOrMethod())
1212 NameKind = LookupRedeclarationWithLinkage;
1213 } else if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern)
1214 NameKind = LookupRedeclarationWithLinkage;
1215
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001216 DC = CurContext;
Douglas Gregor1c52c632009-02-24 20:03:32 +00001217 PrevDecl = LookupName(S, Name, NameKind, true,
Douglas Gregor4d6b1022009-02-17 03:23:10 +00001218 D.getDeclSpec().getStorageClassSpec() !=
1219 DeclSpec::SCS_static,
Douglas Gregor411889e2009-02-13 23:20:09 +00001220 D.getIdentifierLoc());
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001221 } else { // Something like "int foo::x;"
1222 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregor411889e2009-02-13 23:20:09 +00001223 PrevDecl = LookupQualifiedName(DC, Name, LookupOrdinaryName, true);
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001224
1225 // C++ 7.3.1.2p2:
1226 // Members (including explicit specializations of templates) of a named
1227 // namespace can also be defined outside that namespace by explicit
1228 // qualification of the name being defined, provided that the entity being
1229 // defined was already declared in the namespace and the definition appears
1230 // after the point of declaration in a namespace that encloses the
1231 // declarations namespace.
1232 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001233 // Note that we only check the context at this point. We don't yet
1234 // have enough information to make sure that PrevDecl is actually
1235 // the declaration we want to match. For example, given:
1236 //
Douglas Gregor98341042008-12-12 08:25:50 +00001237 // class X {
1238 // void f();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001239 // void f(float);
Douglas Gregor98341042008-12-12 08:25:50 +00001240 // };
1241 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001242 // void X::f(int) { } // ill-formed
1243 //
1244 // In this case, PrevDecl will point to the overload set
1245 // containing the two f's declared in X, but neither of them
1246 // matches.
Douglas Gregor46cfe452009-02-06 17:46:57 +00001247
1248 // First check whether we named the global scope.
1249 if (isa<TranslationUnitDecl>(DC)) {
1250 Diag(D.getIdentifierLoc(), diag::err_invalid_declarator_global_scope)
1251 << Name << D.getCXXScopeSpec().getRange();
1252 } else if (!CurContext->Encloses(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001253 // The qualifying scope doesn't enclose the original declaration.
1254 // Emit diagnostic based on current scope.
1255 SourceLocation L = D.getIdentifierLoc();
1256 SourceRange R = D.getCXXScopeSpec().getRange();
Douglas Gregor46cfe452009-02-06 17:46:57 +00001257 if (isa<FunctionDecl>(CurContext))
Chris Lattner254de7d2008-11-23 20:28:15 +00001258 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Douglas Gregor46cfe452009-02-06 17:46:57 +00001259 else
Chris Lattner254de7d2008-11-23 20:28:15 +00001260 Diag(L, diag::err_invalid_declarator_scope)
Douglas Gregor46cfe452009-02-06 17:46:57 +00001261 << Name << cast<NamedDecl>(DC) << R;
Douglas Gregor8acb7272008-12-11 16:49:14 +00001262 InvalidDecl = true;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001263 }
1264 }
1265
Douglas Gregor2715a1f2008-12-08 18:40:42 +00001266 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00001267 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001268 InvalidDecl = InvalidDecl
1269 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregordd861062008-12-05 18:15:24 +00001270 // Just pretend that we didn't see the previous declaration.
1271 PrevDecl = 0;
1272 }
1273
Douglas Gregor1d661552008-04-13 21:07:44 +00001274 // In C++, the previous declaration we find might be a tag type
1275 // (class or enum). In this case, the new declaration will hide the
Douglas Gregorb31f2942009-01-28 17:15:10 +00001276 // tag type. Note that this does does not apply if we're declaring a
1277 // typedef (C++ [dcl.typedef]p4).
1278 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag &&
1279 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
Douglas Gregor1d661552008-04-13 21:07:44 +00001280 PrevDecl = 0;
1281
Douglas Gregor083c23e2009-02-16 17:45:42 +00001282 bool Redeclaration = false;
Chris Lattner4b009652007-07-25 00:24:17 +00001283 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001284 New = ActOnTypedefDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001285 InvalidDecl, Redeclaration);
Douglas Gregor1c52c632009-02-24 20:03:32 +00001286 } else if (R->isFunctionType()) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001287 New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001288 IsFunctionDefinition, InvalidDecl,
1289 Redeclaration);
Chris Lattner4b009652007-07-25 00:24:17 +00001290 } else {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001291 New = ActOnVariableDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001292 InvalidDecl, Redeclaration);
Chris Lattner4b009652007-07-25 00:24:17 +00001293 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001294
1295 if (New == 0)
1296 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001297
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00001298 // Set the lexical context. If the declarator has a C++ scope specifier, the
1299 // lexical context will be different from the semantic context.
1300 New->setLexicalDeclContext(CurContext);
1301
Douglas Gregor083c23e2009-02-16 17:45:42 +00001302 // If this has an identifier and is not an invalid redeclaration,
1303 // add it to the scope stack.
1304 if (Name && !(Redeclaration && InvalidDecl))
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00001305 PushOnScopeChains(New, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001306 // If any semantic error occurred, mark the decl as invalid.
1307 if (D.getInvalidType() || InvalidDecl)
1308 New->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00001309
1310 return New;
1311}
1312
Eli Friedmand4314282009-02-21 00:44:51 +00001313/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
1314/// types into constant array types in certain situations which would otherwise
1315/// be errors (for GCC compatibility).
1316static QualType TryToFixInvalidVariablyModifiedType(QualType T,
1317 ASTContext &Context,
1318 bool &SizeIsNegative) {
1319 // This method tries to turn a variable array into a constant
1320 // array even when the size isn't an ICE. This is necessary
1321 // for compatibility with code that depends on gcc's buggy
1322 // constant expression folding, like struct {char x[(int)(char*)2];}
1323 SizeIsNegative = false;
1324
1325 if (const PointerType* PTy = dyn_cast<PointerType>(T)) {
1326 QualType Pointee = PTy->getPointeeType();
1327 QualType FixedType =
1328 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative);
1329 if (FixedType.isNull()) return FixedType;
Eli Friedman73cd1e82009-02-21 00:58:02 +00001330 FixedType = Context.getPointerType(FixedType);
1331 FixedType.setCVRQualifiers(T.getCVRQualifiers());
1332 return FixedType;
Eli Friedmand4314282009-02-21 00:44:51 +00001333 }
1334
1335 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
1336 if (!VLATy) return QualType();
1337
1338 Expr::EvalResult EvalResult;
1339 if (!VLATy->getSizeExpr() ||
1340 !VLATy->getSizeExpr()->Evaluate(EvalResult, Context))
1341 return QualType();
1342
1343 assert(EvalResult.Val.isInt() && "Size expressions must be integers!");
1344 llvm::APSInt &Res = EvalResult.Val.getInt();
1345 if (Res >= llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
1346 return Context.getConstantArrayType(VLATy->getElementType(),
1347 Res, ArrayType::Normal, 0);
1348
1349 SizeIsNegative = true;
1350 return QualType();
1351}
1352
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001353NamedDecl*
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001354Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001355 QualType R, Decl* LastDeclarator,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001356 Decl* PrevDecl, bool& InvalidDecl,
1357 bool &Redeclaration) {
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001358 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1359 if (D.getCXXScopeSpec().isSet()) {
1360 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1361 << D.getCXXScopeSpec().getRange();
1362 InvalidDecl = true;
1363 // Pretend we didn't see the scope specifier.
1364 DC = 0;
1365 }
1366
1367 // Check that there are no default arguments (C++ only).
1368 if (getLangOptions().CPlusPlus)
1369 CheckExtraCXXDefaultArguments(D);
1370
1371 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
1372 if (!NewTD) return 0;
1373
1374 // Handle attributes prior to checking for duplicates in MergeVarDecl
1375 ProcessDeclAttributes(NewTD, D);
1376 // Merge the decl with the existing one if appropriate. If the decl is
1377 // in an outer scope, it isn't the same thing.
1378 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Douglas Gregor083c23e2009-02-16 17:45:42 +00001379 Redeclaration = true;
1380 if (MergeTypeDefDecl(NewTD, PrevDecl))
1381 InvalidDecl = true;
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001382 }
1383
1384 if (S->getFnParent() == 0) {
Eli Friedmand4314282009-02-21 00:44:51 +00001385 QualType T = NewTD->getUnderlyingType();
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001386 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1387 // then it shall have block scope.
Eli Friedmand4314282009-02-21 00:44:51 +00001388 if (T->isVariablyModifiedType()) {
1389 bool SizeIsNegative;
1390 QualType FixedTy =
1391 TryToFixInvalidVariablyModifiedType(T, Context, SizeIsNegative);
1392 if (!FixedTy.isNull()) {
1393 Diag(D.getIdentifierLoc(), diag::warn_illegal_constant_array_size);
1394 NewTD->setUnderlyingType(FixedTy);
1395 } else {
1396 if (SizeIsNegative)
1397 Diag(D.getIdentifierLoc(), diag::err_typecheck_negative_array_size);
1398 else if (T->isVariableArrayType())
1399 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1400 else
1401 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1402 InvalidDecl = true;
1403 }
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001404 }
1405 }
1406 return NewTD;
1407}
1408
Douglas Gregor92c47912009-02-24 19:23:27 +00001409/// \brief Determines whether the given declaration is an out-of-scope
1410/// previous declaration.
1411///
1412/// This routine should be invoked when name lookup has found a
1413/// previous declaration (PrevDecl) that is not in the scope where a
1414/// new declaration by the same name is being introduced. If the new
1415/// declaration occurs in a local scope, previous declarations with
1416/// linkage may still be considered previous declarations (C99
1417/// 6.2.2p4-5, C++ [basic.link]p6).
1418///
1419/// \param PrevDecl the previous declaration found by name
1420/// lookup
1421///
1422/// \param DC the context in which the new declaration is being
1423/// declared.
1424///
1425/// \returns true if PrevDecl is an out-of-scope previous declaration
1426/// for a new delcaration with the same name.
1427static bool
1428isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
1429 ASTContext &Context) {
1430 if (!PrevDecl)
1431 return 0;
1432
1433 // FIXME: PrevDecl could be an OverloadedFunctionDecl, in which
1434 // case we need to check each of the overloaded functions.
Douglas Gregor1c52c632009-02-24 20:03:32 +00001435 if (!PrevDecl->hasLinkage())
1436 return false;
Douglas Gregor92c47912009-02-24 19:23:27 +00001437
1438 if (Context.getLangOptions().CPlusPlus) {
1439 // C++ [basic.link]p6:
1440 // If there is a visible declaration of an entity with linkage
1441 // having the same name and type, ignoring entities declared
1442 // outside the innermost enclosing namespace scope, the block
1443 // scope declaration declares that same entity and receives the
1444 // linkage of the previous declaration.
1445 DeclContext *OuterContext = DC->getLookupContext();
1446 if (!OuterContext->isFunctionOrMethod())
1447 // This rule only applies to block-scope declarations.
1448 return false;
1449 else {
1450 DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
1451 if (PrevOuterContext->isRecord())
1452 // We found a member function: ignore it.
1453 return false;
1454 else {
1455 // Find the innermost enclosing namespace for the new and
1456 // previous declarations.
1457 while (!OuterContext->isFileContext())
1458 OuterContext = OuterContext->getParent();
1459 while (!PrevOuterContext->isFileContext())
1460 PrevOuterContext = PrevOuterContext->getParent();
1461
1462 // The previous declaration is in a different namespace, so it
1463 // isn't the same function.
1464 if (OuterContext->getPrimaryContext() !=
1465 PrevOuterContext->getPrimaryContext())
1466 return false;
1467 }
1468 }
1469 }
1470
Douglas Gregor92c47912009-02-24 19:23:27 +00001471 return true;
1472}
1473
1474/// \brief Inject a locally-scoped declaration with external linkage
1475/// into the appropriate namespace scope.
1476///
1477/// Given a declaration of an entity with linkage that occurs within a
1478/// local scope, this routine inject that declaration into top-level
1479/// scope so that it will be visible for later uses and declarations
1480/// of the same entity.
1481void Sema::InjectLocallyScopedExternalDeclaration(ValueDecl *VD) {
1482 // FIXME: We don't do this in C++ because, although we would like
1483 // to get the extra checking that this operation implies,
1484 // the declaration itself is not visible according to C++'s rules.
1485 assert(!getLangOptions().CPlusPlus &&
1486 "Can't inject locally-scoped declarations in C++");
1487 IdentifierResolver::iterator I = IdResolver.begin(VD->getDeclName()),
1488 IEnd = IdResolver.end();
1489 NamedDecl *PrevDecl = 0;
1490 while (I != IEnd && !isa<TranslationUnitDecl>((*I)->getDeclContext())) {
1491 PrevDecl = *I;
1492 ++I;
1493 }
1494
1495 if (I == IEnd) {
1496 // No name with this identifier has been declared at translation
1497 // unit scope. Add this name into the appropriate scope.
1498 if (PrevDecl)
1499 IdResolver.AddShadowedDecl(VD, PrevDecl);
1500 else
1501 IdResolver.AddDecl(VD);
1502 TUScope->AddDecl(VD);
1503 return;
1504 }
1505
1506 if (isa<TagDecl>(*I)) {
1507 // The first thing we found was a tag declaration, so insert
1508 // this function so that it will be found before the tag
1509 // declaration.
1510 if (PrevDecl)
1511 IdResolver.AddShadowedDecl(VD, PrevDecl);
1512 else
1513 IdResolver.AddDecl(VD);
1514 TUScope->AddDecl(VD);
1515 return;
1516 }
1517
1518 if (VD->declarationReplaces(*I)) {
1519 // We found a previous declaration of the same entity. Replace
1520 // that declaration with this one.
1521 TUScope->RemoveDecl(*I);
1522 TUScope->AddDecl(VD);
1523 IdResolver.RemoveDecl(*I);
1524 if (PrevDecl)
1525 IdResolver.AddShadowedDecl(VD, PrevDecl);
1526 else
1527 IdResolver.AddDecl(VD);
1528 }
1529}
1530
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001531NamedDecl*
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001532Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001533 QualType R, Decl* LastDeclarator,
Douglas Gregor92c47912009-02-24 19:23:27 +00001534 NamedDecl* PrevDecl, bool& InvalidDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001535 bool &Redeclaration) {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001536 DeclarationName Name = GetNameForDeclarator(D);
1537
1538 // Check that there are no default arguments (C++ only).
1539 if (getLangOptions().CPlusPlus)
1540 CheckExtraCXXDefaultArguments(D);
1541
1542 if (R.getTypePtr()->isObjCInterfaceType()) {
Steve Naroffa442ad92009-02-20 22:59:16 +00001543 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object);
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001544 InvalidDecl = true;
1545 }
1546
1547 VarDecl *NewVD;
1548 VarDecl::StorageClass SC;
1549 switch (D.getDeclSpec().getStorageClassSpec()) {
1550 default: assert(0 && "Unknown storage class!");
1551 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1552 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1553 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1554 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1555 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1556 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1557 case DeclSpec::SCS_mutable:
1558 // mutable can only appear on non-static class members, so it's always
1559 // an error here
1560 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1561 InvalidDecl = true;
1562 SC = VarDecl::None;
1563 break;
1564 }
1565
1566 IdentifierInfo *II = Name.getAsIdentifierInfo();
1567 if (!II) {
1568 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1569 << Name.getAsString();
1570 return 0;
1571 }
1572
1573 if (DC->isRecord()) {
1574 // This is a static data member for a C++ class.
1575 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
1576 D.getIdentifierLoc(), II,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001577 R);
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001578 } else {
1579 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
1580 if (S->getFnParent() == 0) {
1581 // C99 6.9p2: The storage-class specifiers auto and register shall not
1582 // appear in the declaration specifiers in an external declaration.
1583 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1584 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
1585 InvalidDecl = true;
1586 }
1587 }
1588 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001589 II, R, SC,
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001590 // FIXME: Move to DeclGroup...
1591 D.getDeclSpec().getSourceRange().getBegin());
1592 NewVD->setThreadSpecified(ThreadSpecified);
1593 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001594 NewVD->setNextDeclarator(LastDeclarator);
1595
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001596 // Handle attributes prior to checking for duplicates in MergeVarDecl
1597 ProcessDeclAttributes(NewVD, D);
1598
1599 // Handle GNU asm-label extension (encoded as an attribute).
1600 if (Expr *E = (Expr*) D.getAsmLabel()) {
1601 // The parser guarantees this is a string.
1602 StringLiteral *SE = cast<StringLiteral>(E);
1603 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1604 SE->getByteLength())));
1605 }
1606
1607 // Emit an error if an address space was applied to decl with local storage.
1608 // This includes arrays of objects with address space qualifiers, but not
1609 // automatic variables that point to other address spaces.
1610 // ISO/IEC TR 18037 S5.1.2
1611 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1612 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1613 InvalidDecl = true;
1614 }
Fariborz Jahanian235e0bb2009-02-21 19:44:02 +00001615
1616 if (NewVD->hasLocalStorage() && NewVD->getType().isObjCGCWeak()) {
1617 Diag(D.getIdentifierLoc(), diag::warn_attribute_weak_on_local);
1618 }
1619
Douglas Gregor92c47912009-02-24 19:23:27 +00001620 // If name lookup finds a previous declaration that is not in the
1621 // same scope as the new declaration, this may still be an
1622 // acceptable redeclaration.
1623 if (PrevDecl && !isDeclInScope(PrevDecl, DC, S) &&
Douglas Gregor1c52c632009-02-24 20:03:32 +00001624 !(NewVD->hasLinkage() &&
Douglas Gregor92c47912009-02-24 19:23:27 +00001625 isOutOfScopePreviousDeclaration(PrevDecl, DC, Context)))
1626 PrevDecl = 0;
1627
1628 // Merge the decl with the existing one if appropriate.
1629 if (PrevDecl) {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001630 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1631 // The user tried to define a non-static data member
1632 // out-of-line (C++ [dcl.meaning]p1).
1633 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1634 << D.getCXXScopeSpec().getRange();
1635 NewVD->Destroy(Context);
1636 return 0;
1637 }
1638
Douglas Gregor083c23e2009-02-16 17:45:42 +00001639 Redeclaration = true;
1640 if (MergeVarDecl(NewVD, PrevDecl))
1641 InvalidDecl = true;
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001642
1643 if (D.getCXXScopeSpec().isSet()) {
1644 // No previous declaration in the qualifying scope.
1645 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1646 << Name << D.getCXXScopeSpec().getRange();
1647 InvalidDecl = true;
1648 }
1649 }
Douglas Gregor92c47912009-02-24 19:23:27 +00001650
1651 // If this is a locally-scoped extern variable in C, inject a
1652 // declaration into translation unit scope so that all external
1653 // declarations are visible.
1654 if (!getLangOptions().CPlusPlus && CurContext->isFunctionOrMethod() &&
Douglas Gregor1c52c632009-02-24 20:03:32 +00001655 NewVD->hasLinkage())
Douglas Gregor92c47912009-02-24 19:23:27 +00001656 InjectLocallyScopedExternalDeclaration(NewVD);
1657
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001658 return NewVD;
1659}
1660
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001661NamedDecl*
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001662Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001663 QualType R, Decl *LastDeclarator,
Douglas Gregoraf682022009-02-24 01:23:02 +00001664 NamedDecl* PrevDecl, bool IsFunctionDefinition,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001665 bool& InvalidDecl, bool &Redeclaration) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001666 assert(R.getTypePtr()->isFunctionType());
1667
1668 DeclarationName Name = GetNameForDeclarator(D);
1669 FunctionDecl::StorageClass SC = FunctionDecl::None;
1670 switch (D.getDeclSpec().getStorageClassSpec()) {
1671 default: assert(0 && "Unknown storage class!");
1672 case DeclSpec::SCS_auto:
1673 case DeclSpec::SCS_register:
1674 case DeclSpec::SCS_mutable:
Douglas Gregoraf682022009-02-24 01:23:02 +00001675 Diag(D.getDeclSpec().getStorageClassSpecLoc(),
1676 diag::err_typecheck_sclass_func);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001677 InvalidDecl = true;
1678 break;
1679 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1680 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
Douglas Gregoraf682022009-02-24 01:23:02 +00001681 case DeclSpec::SCS_static: {
1682 if (DC->getLookupContext()->isFunctionOrMethod()) {
1683 // C99 6.7.1p5:
1684 // The declaration of an identifier for a function that has
1685 // block scope shall have no explicit storage-class specifier
1686 // other than extern
1687 // See also (C++ [dcl.stc]p4).
1688 Diag(D.getDeclSpec().getStorageClassSpecLoc(),
1689 diag::err_static_block_func);
1690 SC = FunctionDecl::None;
1691 } else
1692 SC = FunctionDecl::Static;
1693 break;
1694 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001695 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
1696 }
1697
1698 bool isInline = D.getDeclSpec().isInlineSpecified();
1699 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1700 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1701
1702 FunctionDecl *NewFD;
1703 if (D.getKind() == Declarator::DK_Constructor) {
1704 // This is a C++ constructor declaration.
1705 assert(DC->isRecord() &&
1706 "Constructors can only be declared in a member context");
1707
1708 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
1709
1710 // Create the new declaration
1711 NewFD = CXXConstructorDecl::Create(Context,
1712 cast<CXXRecordDecl>(DC),
1713 D.getIdentifierLoc(), Name, R,
1714 isExplicit, isInline,
1715 /*isImplicitlyDeclared=*/false);
1716
1717 if (InvalidDecl)
1718 NewFD->setInvalidDecl();
1719 } else if (D.getKind() == Declarator::DK_Destructor) {
1720 // This is a C++ destructor declaration.
1721 if (DC->isRecord()) {
1722 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
1723
1724 NewFD = CXXDestructorDecl::Create(Context,
1725 cast<CXXRecordDecl>(DC),
1726 D.getIdentifierLoc(), Name, R,
1727 isInline,
1728 /*isImplicitlyDeclared=*/false);
1729
1730 if (InvalidDecl)
1731 NewFD->setInvalidDecl();
1732 } else {
1733 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
1734
1735 // Create a FunctionDecl to satisfy the function definition parsing
1736 // code path.
1737 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001738 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001739 // FIXME: Move to DeclGroup...
1740 D.getDeclSpec().getSourceRange().getBegin());
1741 InvalidDecl = true;
1742 NewFD->setInvalidDecl();
1743 }
1744 } else if (D.getKind() == Declarator::DK_Conversion) {
1745 if (!DC->isRecord()) {
1746 Diag(D.getIdentifierLoc(),
1747 diag::err_conv_function_not_member);
1748 return 0;
1749 } else {
1750 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
1751
1752 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
1753 D.getIdentifierLoc(), Name, R,
1754 isInline, isExplicit);
1755
1756 if (InvalidDecl)
1757 NewFD->setInvalidDecl();
1758 }
1759 } else if (DC->isRecord()) {
1760 // This is a C++ method declaration.
1761 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
1762 D.getIdentifierLoc(), Name, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001763 (SC == FunctionDecl::Static), isInline);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001764 } else {
1765 NewFD = FunctionDecl::Create(Context, DC,
1766 D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001767 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001768 // FIXME: Move to DeclGroup...
1769 D.getDeclSpec().getSourceRange().getBegin());
1770 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001771 NewFD->setNextDeclarator(LastDeclarator);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001772
1773 // Set the lexical context. If the declarator has a C++
1774 // scope specifier, the lexical context will be different
1775 // from the semantic context.
1776 NewFD->setLexicalDeclContext(CurContext);
1777
1778 // Handle GNU asm-label extension (encoded as an attribute).
1779 if (Expr *E = (Expr*) D.getAsmLabel()) {
1780 // The parser guarantees this is a string.
1781 StringLiteral *SE = cast<StringLiteral>(E);
1782 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1783 SE->getByteLength())));
1784 }
1785
1786 // Copy the parameter declarations from the declarator D to
1787 // the function declaration NewFD, if they are available.
1788 if (D.getNumTypeObjects() > 0) {
1789 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1790
1791 // Create Decl objects for each parameter, adding them to the
1792 // FunctionDecl.
1793 llvm::SmallVector<ParmVarDecl*, 16> Params;
1794
1795 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1796 // function that takes no arguments, not a function that takes a
1797 // single void argument.
1798 // We let through "const void" here because Sema::GetTypeForDeclarator
1799 // already checks for that case.
1800 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1801 FTI.ArgInfo[0].Param &&
1802 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1803 // empty arg list, don't push any params.
1804 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1805
1806 // In C++, the empty parameter-type-list must be spelled "void"; a
1807 // typedef of void is not permitted.
1808 if (getLangOptions().CPlusPlus &&
1809 Param->getType().getUnqualifiedType() != Context.VoidTy) {
1810 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1811 }
1812 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1813 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1814 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1815 }
1816
1817 NewFD->setParams(Context, &Params[0], Params.size());
1818 } else if (R->getAsTypedefType()) {
1819 // When we're declaring a function with a typedef, as in the
1820 // following example, we'll need to synthesize (unnamed)
1821 // parameters for use in the declaration.
1822 //
1823 // @code
1824 // typedef void fn(int);
1825 // fn f;
1826 // @endcode
1827 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1828 if (!FT) {
1829 // This is a typedef of a function with no prototype, so we
1830 // don't need to do anything.
1831 } else if ((FT->getNumArgs() == 0) ||
1832 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1833 FT->getArgType(0)->isVoidType())) {
1834 // This is a zero-argument function. We don't need to do anything.
1835 } else {
1836 // Synthesize a parameter for each argument type.
1837 llvm::SmallVector<ParmVarDecl*, 16> Params;
1838 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1839 ArgType != FT->arg_type_end(); ++ArgType) {
Douglas Gregorca9f52e2009-02-16 20:58:07 +00001840 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC,
1841 SourceLocation(), 0,
1842 *ArgType, VarDecl::None,
1843 0);
1844 Param->setImplicit();
1845 Params.push_back(Param);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001846 }
1847
1848 NewFD->setParams(Context, &Params[0], Params.size());
1849 }
1850 }
1851
1852 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1853 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
1854 else if (isa<CXXDestructorDecl>(NewFD)) {
1855 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1856 Record->setUserDeclaredDestructor(true);
1857 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1858 // user-defined destructor.
1859 Record->setPOD(false);
1860 } else if (CXXConversionDecl *Conversion =
1861 dyn_cast<CXXConversionDecl>(NewFD))
1862 ActOnConversionDeclarator(Conversion);
1863
1864 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1865 if (NewFD->isOverloadedOperator() &&
1866 CheckOverloadedOperatorDeclaration(NewFD))
1867 NewFD->setInvalidDecl();
1868
Douglas Gregor92c47912009-02-24 19:23:27 +00001869 // If name lookup finds a previous declaration that is not in the
1870 // same scope as the new declaration, this may still be an
1871 // acceptable redeclaration.
1872 if (PrevDecl && !isDeclInScope(PrevDecl, DC, S) &&
Douglas Gregor1c52c632009-02-24 20:03:32 +00001873 !(NewFD->hasLinkage() &&
1874 isOutOfScopePreviousDeclaration(PrevDecl, DC, Context)))
Douglas Gregor92c47912009-02-24 19:23:27 +00001875 PrevDecl = 0;
Douglas Gregoraf682022009-02-24 01:23:02 +00001876
1877 // Merge or overload the declaration with an existing declaration of
1878 // the same name, if appropriate.
Douglas Gregorfcb19192009-02-11 23:02:49 +00001879 bool OverloadableAttrRequired = false;
Douglas Gregoraf682022009-02-24 01:23:02 +00001880 if (PrevDecl) {
Douglas Gregorfcb19192009-02-11 23:02:49 +00001881 // Determine whether NewFD is an overload of PrevDecl or
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001882 // a declaration that requires merging. If it's an overload,
1883 // there's no more work to do here; we'll just add the new
1884 // function to the scope.
1885 OverloadedFunctionDecl::function_iterator MatchedDecl;
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001886
1887 if (!getLangOptions().CPlusPlus &&
Douglas Gregor7f49ea22009-02-18 06:34:51 +00001888 AllowOverloadingOfFunction(PrevDecl, Context)) {
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001889 OverloadableAttrRequired = true;
1890
Douglas Gregor7f49ea22009-02-18 06:34:51 +00001891 // Functions marked "overloadable" must have a prototype (that
1892 // we can't get through declaration merging).
1893 if (!R->getAsFunctionTypeProto()) {
1894 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_no_prototype)
1895 << NewFD;
1896 InvalidDecl = true;
1897 Redeclaration = true;
1898
1899 // Turn this into a variadic function with no parameters.
1900 R = Context.getFunctionType(R->getAsFunctionType()->getResultType(),
1901 0, 0, true, 0);
1902 NewFD->setType(R);
1903 }
1904 }
1905
1906 if (PrevDecl &&
1907 (!AllowOverloadingOfFunction(PrevDecl, Context) ||
1908 !IsOverload(NewFD, PrevDecl, MatchedDecl))) {
Douglas Gregor083c23e2009-02-16 17:45:42 +00001909 Redeclaration = true;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001910 Decl *OldDecl = PrevDecl;
1911
1912 // If PrevDecl was an overloaded function, extract the
1913 // FunctionDecl that matched.
1914 if (isa<OverloadedFunctionDecl>(PrevDecl))
1915 OldDecl = *MatchedDecl;
1916
1917 // NewFD and PrevDecl represent declarations that need to be
1918 // merged.
Douglas Gregor083c23e2009-02-16 17:45:42 +00001919 if (MergeFunctionDecl(NewFD, OldDecl))
1920 InvalidDecl = true;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001921
Douglas Gregor083c23e2009-02-16 17:45:42 +00001922 if (!InvalidDecl) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001923 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1924
1925 // An out-of-line member function declaration must also be a
1926 // definition (C++ [dcl.meaning]p1).
1927 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1928 !InvalidDecl) {
1929 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1930 << D.getCXXScopeSpec().getRange();
1931 NewFD->setInvalidDecl();
1932 }
1933 }
1934 }
Douglas Gregor46cfe452009-02-06 17:46:57 +00001935 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001936
Douglas Gregor46cfe452009-02-06 17:46:57 +00001937 if (D.getCXXScopeSpec().isSet() &&
1938 (!PrevDecl || !Redeclaration)) {
1939 // The user tried to provide an out-of-line definition for a
1940 // function that is a member of a class or namespace, but there
1941 // was no such member function declared (C++ [class.mfct]p2,
1942 // C++ [namespace.memdef]p2). For example:
1943 //
1944 // class X {
1945 // void f() const;
1946 // };
1947 //
1948 // void X::f() { } // ill-formed
1949 //
1950 // Complain about this problem, and attempt to suggest close
1951 // matches (e.g., those that differ only in cv-qualifiers and
1952 // whether the parameter types are references).
Douglas Gregor46cfe452009-02-06 17:46:57 +00001953 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
Douglas Gregoree785232009-02-06 22:58:38 +00001954 << cast<NamedDecl>(DC) << D.getCXXScopeSpec().getRange();
Douglas Gregor46cfe452009-02-06 17:46:57 +00001955 InvalidDecl = true;
1956
1957 LookupResult Prev = LookupQualifiedName(DC, Name, LookupOrdinaryName,
1958 true);
1959 assert(!Prev.isAmbiguous() &&
1960 "Cannot have an ambiguity in previous-declaration lookup");
1961 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
1962 Func != FuncEnd; ++Func) {
1963 if (isa<FunctionDecl>(*Func) &&
1964 isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD))
1965 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001966 }
Douglas Gregor46cfe452009-02-06 17:46:57 +00001967
1968 PrevDecl = 0;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001969 }
Douglas Gregorbd4b0852009-02-02 21:35:47 +00001970
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001971 // Handle attributes. We need to have merged decls when handling attributes
1972 // (for example to check for conflicts, etc).
1973 ProcessDeclAttributes(NewFD, D);
Douglas Gregorb5af7382009-02-14 18:57:46 +00001974 AddKnownFunctionAttributes(NewFD);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001975
Douglas Gregorfcb19192009-02-11 23:02:49 +00001976 if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) {
1977 // If a function name is overloadable in C, then every function
1978 // with that name must be marked "overloadable".
1979 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001980 << Redeclaration << NewFD;
Douglas Gregorfcb19192009-02-11 23:02:49 +00001981 if (PrevDecl)
1982 Diag(PrevDecl->getLocation(),
1983 diag::note_attribute_overloadable_prev_overload);
1984 NewFD->addAttr(new OverloadableAttr);
1985 }
1986
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001987 if (getLangOptions().CPlusPlus) {
Sebastian Redl0d2157d2009-02-08 14:56:26 +00001988 // In C++, check default arguments now that we have merged decls. Unless
1989 // the lexical context is the class, because in this case this is done
1990 // during delayed parsing anyway.
1991 if (!CurContext->isRecord())
1992 CheckCXXDefaultArguments(NewFD);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001993
1994 // An out-of-line member function declaration must also be a
1995 // definition (C++ [dcl.meaning]p1).
1996 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
1997 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1998 << D.getCXXScopeSpec().getRange();
1999 InvalidDecl = true;
2000 }
2001 }
Douglas Gregor6f8c3682009-02-24 04:26:15 +00002002
Douglas Gregor92c47912009-02-24 19:23:27 +00002003 // If this is a locally-scoped function in C, inject a declaration
2004 // into translation unit scope so that all external declarations are
2005 // visible.
2006 if (!getLangOptions().CPlusPlus && CurContext->isFunctionOrMethod())
2007 InjectLocallyScopedExternalDeclaration(NewFD);
Douglas Gregor6f8c3682009-02-24 04:26:15 +00002008
Zhongxing Xu7502dec2009-01-16 01:13:29 +00002009 return NewFD;
2010}
2011
Steve Narofffc08f5e2008-10-27 11:34:16 +00002012void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattner9d2cf082008-11-19 05:27:50 +00002013 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
2014 << Init->getSourceRange();
Steve Narofffc08f5e2008-10-27 11:34:16 +00002015}
2016
Eli Friedman02c22ce2008-05-20 13:48:25 +00002017bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
2018 switch (Init->getStmtClass()) {
2019 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002020 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002021 return true;
2022 case Expr::ParenExprClass: {
2023 const ParenExpr* PE = cast<ParenExpr>(Init);
2024 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
2025 }
2026 case Expr::CompoundLiteralExprClass:
2027 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregor566782a2009-01-06 05:10:23 +00002028 case Expr::DeclRefExprClass:
2029 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002030 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman8cb86e32008-05-21 03:39:11 +00002031 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2032 if (VD->hasGlobalStorage())
2033 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002034 InitializerElementNotConstant(Init);
Eli Friedman8cb86e32008-05-21 03:39:11 +00002035 return true;
2036 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002037 if (isa<FunctionDecl>(D))
2038 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002039 InitializerElementNotConstant(Init);
Steve Narofff0b23542008-01-10 22:15:12 +00002040 return true;
2041 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002042 case Expr::MemberExprClass: {
2043 const MemberExpr *M = cast<MemberExpr>(Init);
2044 if (M->isArrow())
2045 return CheckAddressConstantExpression(M->getBase());
2046 return CheckAddressConstantExpressionLValue(M->getBase());
2047 }
2048 case Expr::ArraySubscriptExprClass: {
2049 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
2050 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
2051 return CheckAddressConstantExpression(ASE->getBase()) ||
2052 CheckArithmeticConstantExpression(ASE->getIdx());
2053 }
2054 case Expr::StringLiteralClass:
Chris Lattner4e598972009-02-24 21:54:33 +00002055 case Expr::ObjCEncodeExprClass:
Chris Lattner69909292008-08-10 01:53:14 +00002056 case Expr::PredefinedExprClass:
Eli Friedman02c22ce2008-05-20 13:48:25 +00002057 return false;
2058 case Expr::UnaryOperatorClass: {
2059 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2060
2061 // C99 6.6p9
2062 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman8cb86e32008-05-21 03:39:11 +00002063 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00002064
Steve Narofffc08f5e2008-10-27 11:34:16 +00002065 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002066 return true;
2067 }
2068 }
2069}
2070
2071bool Sema::CheckAddressConstantExpression(const Expr* Init) {
2072 switch (Init->getStmtClass()) {
2073 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002074 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002075 return true;
Chris Lattner0903cba2008-10-06 07:26:43 +00002076 case Expr::ParenExprClass:
2077 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00002078 case Expr::StringLiteralClass:
Chris Lattner4e598972009-02-24 21:54:33 +00002079 case Expr::ObjCEncodeExprClass:
Eli Friedman02c22ce2008-05-20 13:48:25 +00002080 case Expr::ObjCStringLiteralClass:
2081 return false;
Chris Lattner0903cba2008-10-06 07:26:43 +00002082 case Expr::CallExprClass:
Douglas Gregor65fedaf2008-11-14 16:09:21 +00002083 case Expr::CXXOperatorCallExprClass:
Chris Lattner0903cba2008-10-06 07:26:43 +00002084 // __builtin___CFStringMakeConstantString is a valid constant l-value.
Douglas Gregorb5af7382009-02-14 18:57:46 +00002085 if (cast<CallExpr>(Init)->isBuiltinCall(Context) ==
Chris Lattner0903cba2008-10-06 07:26:43 +00002086 Builtin::BI__builtin___CFStringMakeConstantString)
2087 return false;
2088
Steve Narofffc08f5e2008-10-27 11:34:16 +00002089 InitializerElementNotConstant(Init);
Chris Lattner0903cba2008-10-06 07:26:43 +00002090 return true;
2091
Eli Friedman02c22ce2008-05-20 13:48:25 +00002092 case Expr::UnaryOperatorClass: {
2093 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2094
2095 // C99 6.6p9
2096 if (Exp->getOpcode() == UnaryOperator::AddrOf)
2097 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
2098
2099 if (Exp->getOpcode() == UnaryOperator::Extension)
2100 return CheckAddressConstantExpression(Exp->getSubExpr());
2101
Steve Narofffc08f5e2008-10-27 11:34:16 +00002102 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002103 return true;
2104 }
2105 case Expr::BinaryOperatorClass: {
2106 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
2107 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2108
2109 Expr *PExp = Exp->getLHS();
2110 Expr *IExp = Exp->getRHS();
2111 if (IExp->getType()->isPointerType())
2112 std::swap(PExp, IExp);
2113
2114 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
2115 return CheckAddressConstantExpression(PExp) ||
2116 CheckArithmeticConstantExpression(IExp);
2117 }
Eli Friedman1fad3c62008-08-25 20:46:57 +00002118 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00002119 case Expr::CStyleCastExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002120 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman1fad3c62008-08-25 20:46:57 +00002121 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
2122 // Check for implicit promotion
2123 if (SubExpr->getType()->isFunctionType() ||
2124 SubExpr->getType()->isArrayType())
2125 return CheckAddressConstantExpressionLValue(SubExpr);
2126 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002127
2128 // Check for pointer->pointer cast
2129 if (SubExpr->getType()->isPointerType())
2130 return CheckAddressConstantExpression(SubExpr);
2131
Eli Friedman1fad3c62008-08-25 20:46:57 +00002132 if (SubExpr->getType()->isIntegralType()) {
2133 // Check for the special-case of a pointer->int->pointer cast;
2134 // this isn't standard, but some code requires it. See
2135 // PR2720 for an example.
2136 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
2137 if (SubCast->getSubExpr()->getType()->isPointerType()) {
2138 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
2139 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2140 if (IntWidth >= PointerWidth) {
2141 return CheckAddressConstantExpression(SubCast->getSubExpr());
2142 }
2143 }
2144 }
2145 }
2146 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002147 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedman1fad3c62008-08-25 20:46:57 +00002148 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002149
Steve Narofffc08f5e2008-10-27 11:34:16 +00002150 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002151 return true;
2152 }
2153 case Expr::ConditionalOperatorClass: {
2154 // FIXME: Should we pedwarn here?
2155 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
2156 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002157 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002158 return true;
2159 }
2160 if (CheckArithmeticConstantExpression(Exp->getCond()))
2161 return true;
2162 if (Exp->getLHS() &&
2163 CheckAddressConstantExpression(Exp->getLHS()))
2164 return true;
2165 return CheckAddressConstantExpression(Exp->getRHS());
2166 }
2167 case Expr::AddrLabelExprClass:
2168 return false;
2169 }
2170}
2171
Eli Friedman998dffb2008-06-09 05:05:07 +00002172static const Expr* FindExpressionBaseAddress(const Expr* E);
2173
2174static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
2175 switch (E->getStmtClass()) {
2176 default:
2177 return E;
2178 case Expr::ParenExprClass: {
2179 const ParenExpr* PE = cast<ParenExpr>(E);
2180 return FindExpressionBaseAddressLValue(PE->getSubExpr());
2181 }
2182 case Expr::MemberExprClass: {
2183 const MemberExpr *M = cast<MemberExpr>(E);
2184 if (M->isArrow())
2185 return FindExpressionBaseAddress(M->getBase());
2186 return FindExpressionBaseAddressLValue(M->getBase());
2187 }
2188 case Expr::ArraySubscriptExprClass: {
2189 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
2190 return FindExpressionBaseAddress(ASE->getBase());
2191 }
2192 case Expr::UnaryOperatorClass: {
2193 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2194
2195 if (Exp->getOpcode() == UnaryOperator::Deref)
2196 return FindExpressionBaseAddress(Exp->getSubExpr());
2197
2198 return E;
2199 }
2200 }
2201}
2202
2203static const Expr* FindExpressionBaseAddress(const Expr* E) {
2204 switch (E->getStmtClass()) {
2205 default:
2206 return E;
2207 case Expr::ParenExprClass: {
2208 const ParenExpr* PE = cast<ParenExpr>(E);
2209 return FindExpressionBaseAddress(PE->getSubExpr());
2210 }
2211 case Expr::UnaryOperatorClass: {
2212 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2213
2214 // C99 6.6p9
2215 if (Exp->getOpcode() == UnaryOperator::AddrOf)
2216 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
2217
2218 if (Exp->getOpcode() == UnaryOperator::Extension)
2219 return FindExpressionBaseAddress(Exp->getSubExpr());
2220
2221 return E;
2222 }
2223 case Expr::BinaryOperatorClass: {
2224 const BinaryOperator *Exp = cast<BinaryOperator>(E);
2225
2226 Expr *PExp = Exp->getLHS();
2227 Expr *IExp = Exp->getRHS();
2228 if (IExp->getType()->isPointerType())
2229 std::swap(PExp, IExp);
2230
2231 return FindExpressionBaseAddress(PExp);
2232 }
2233 case Expr::ImplicitCastExprClass: {
2234 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
2235
2236 // Check for implicit promotion
2237 if (SubExpr->getType()->isFunctionType() ||
2238 SubExpr->getType()->isArrayType())
2239 return FindExpressionBaseAddressLValue(SubExpr);
2240
2241 // Check for pointer->pointer cast
2242 if (SubExpr->getType()->isPointerType())
2243 return FindExpressionBaseAddress(SubExpr);
2244
2245 // We assume that we have an arithmetic expression here;
2246 // if we don't, we'll figure it out later
2247 return 0;
2248 }
Douglas Gregor035d0882008-10-28 15:36:24 +00002249 case Expr::CStyleCastExprClass: {
Eli Friedman998dffb2008-06-09 05:05:07 +00002250 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
2251
2252 // Check for pointer->pointer cast
2253 if (SubExpr->getType()->isPointerType())
2254 return FindExpressionBaseAddress(SubExpr);
2255
2256 // We assume that we have an arithmetic expression here;
2257 // if we don't, we'll figure it out later
2258 return 0;
2259 }
2260 }
2261}
2262
Anders Carlssone8bd9f22008-11-22 21:04:56 +00002263bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002264 switch (Init->getStmtClass()) {
2265 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002266 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002267 return true;
2268 case Expr::ParenExprClass: {
2269 const ParenExpr* PE = cast<ParenExpr>(Init);
2270 return CheckArithmeticConstantExpression(PE->getSubExpr());
2271 }
2272 case Expr::FloatingLiteralClass:
2273 case Expr::IntegerLiteralClass:
2274 case Expr::CharacterLiteralClass:
2275 case Expr::ImaginaryLiteralClass:
2276 case Expr::TypesCompatibleExprClass:
2277 case Expr::CXXBoolLiteralExprClass:
2278 return false;
Douglas Gregor65fedaf2008-11-14 16:09:21 +00002279 case Expr::CallExprClass:
2280 case Expr::CXXOperatorCallExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002281 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002282
2283 // Allow any constant foldable calls to builtins.
Douglas Gregorb5af7382009-02-14 18:57:46 +00002284 if (CE->isBuiltinCall(Context) && CE->isEvaluatable(Context))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002285 return false;
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002286
Steve Narofffc08f5e2008-10-27 11:34:16 +00002287 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002288 return true;
2289 }
Douglas Gregor566782a2009-01-06 05:10:23 +00002290 case Expr::DeclRefExprClass:
2291 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002292 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2293 if (isa<EnumConstantDecl>(D))
2294 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002295 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002296 return true;
2297 }
2298 case Expr::CompoundLiteralExprClass:
2299 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2300 // but vectors are allowed to be magic.
2301 if (Init->getType()->isVectorType())
2302 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002303 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002304 return true;
2305 case Expr::UnaryOperatorClass: {
2306 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2307
2308 switch (Exp->getOpcode()) {
2309 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2310 // See C99 6.6p3.
2311 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002312 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002313 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002314 case UnaryOperator::OffsetOf:
Eli Friedman02c22ce2008-05-20 13:48:25 +00002315 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2316 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002317 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002318 return true;
2319 case UnaryOperator::Extension:
2320 case UnaryOperator::LNot:
2321 case UnaryOperator::Plus:
2322 case UnaryOperator::Minus:
2323 case UnaryOperator::Not:
2324 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2325 }
2326 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002327 case Expr::SizeOfAlignOfExprClass: {
2328 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002329 // Special check for void types, which are allowed as an extension
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002330 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedman02c22ce2008-05-20 13:48:25 +00002331 return false;
2332 // alignof always evaluates to a constant.
2333 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002334 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002335 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002336 return true;
2337 }
2338 return false;
2339 }
2340 case Expr::BinaryOperatorClass: {
2341 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2342
2343 if (Exp->getLHS()->getType()->isArithmeticType() &&
2344 Exp->getRHS()->getType()->isArithmeticType()) {
2345 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2346 CheckArithmeticConstantExpression(Exp->getRHS());
2347 }
2348
Eli Friedman998dffb2008-06-09 05:05:07 +00002349 if (Exp->getLHS()->getType()->isPointerType() &&
2350 Exp->getRHS()->getType()->isPointerType()) {
2351 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2352 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2353
2354 // Only allow a null (constant integer) base; we could
2355 // allow some additional cases if necessary, but this
2356 // is sufficient to cover offsetof-like constructs.
2357 if (!LHSBase && !RHSBase) {
2358 return CheckAddressConstantExpression(Exp->getLHS()) ||
2359 CheckAddressConstantExpression(Exp->getRHS());
2360 }
2361 }
2362
Steve Narofffc08f5e2008-10-27 11:34:16 +00002363 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002364 return true;
2365 }
2366 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00002367 case Expr::CStyleCastExprClass: {
Nuno Lopes7dd54222009-02-02 22:57:15 +00002368 const CastExpr *CE = cast<CastExpr>(Init);
2369 const Expr *SubExpr = CE->getSubExpr();
2370
Eli Friedmand662caa2008-09-01 22:08:17 +00002371 if (SubExpr->getType()->isArithmeticType())
2372 return CheckArithmeticConstantExpression(SubExpr);
2373
Eli Friedman266df142008-09-02 09:37:00 +00002374 if (SubExpr->getType()->isPointerType()) {
2375 const Expr* Base = FindExpressionBaseAddress(SubExpr);
Nuno Lopes7dd54222009-02-02 22:57:15 +00002376 if (Base) {
2377 // the cast is only valid if done to a wide enough type
2378 if (Context.getTypeSize(CE->getType()) >=
2379 Context.getTypeSize(SubExpr->getType()))
2380 return false;
2381 } else {
2382 // If the pointer has a null base, this is an offsetof-like construct
2383 return CheckAddressConstantExpression(SubExpr);
2384 }
Eli Friedman266df142008-09-02 09:37:00 +00002385 }
2386
Steve Narofffc08f5e2008-10-27 11:34:16 +00002387 InitializerElementNotConstant(Init);
Eli Friedmand662caa2008-09-01 22:08:17 +00002388 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002389 }
2390 case Expr::ConditionalOperatorClass: {
2391 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner94d45412008-10-06 05:42:39 +00002392
2393 // If GNU extensions are disabled, we require all operands to be arithmetic
2394 // constant expressions.
2395 if (getLangOptions().NoExtensions) {
2396 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2397 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2398 CheckArithmeticConstantExpression(Exp->getRHS());
2399 }
2400
2401 // Otherwise, we have to emulate some of the behavior of fold here.
2402 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2403 // because it can constant fold things away. To retain compatibility with
2404 // GCC code, we see if we can fold the condition to a constant (which we
2405 // should always be able to do in theory). If so, we only require the
2406 // specified arm of the conditional to be a constant. This is a horrible
2407 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson8c3de802008-12-19 20:58:05 +00002408 Expr::EvalResult EvalResult;
2409 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2410 EvalResult.HasSideEffects) {
Chris Lattneref069662008-11-16 21:24:15 +00002411 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattner94d45412008-10-06 05:42:39 +00002412 // won't be able to either. Use it to emit the diagnostic though.
2413 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattneref069662008-11-16 21:24:15 +00002414 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattner94d45412008-10-06 05:42:39 +00002415 return Res;
2416 }
2417
2418 // Verify that the side following the condition is also a constant.
2419 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson8c3de802008-12-19 20:58:05 +00002420 if (EvalResult.Val.getInt() == 0)
Chris Lattner94d45412008-10-06 05:42:39 +00002421 std::swap(TrueSide, FalseSide);
2422
2423 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002424 return true;
Chris Lattner94d45412008-10-06 05:42:39 +00002425
2426 // Okay, the evaluated side evaluates to a constant, so we accept this.
2427 // Check to see if the other side is obviously not a constant. If so,
2428 // emit a warning that this is a GNU extension.
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002429 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner94d45412008-10-06 05:42:39 +00002430 Diag(Init->getExprLoc(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00002431 diag::ext_typecheck_expression_not_constant_but_accepted)
2432 << FalseSide->getSourceRange();
Chris Lattner94d45412008-10-06 05:42:39 +00002433 return false;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002434 }
2435 }
2436}
2437
2438bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Chris Lattner4e598972009-02-24 21:54:33 +00002439 if (Init->isConstantInitializer(Context))
Eli Friedman083fb662009-02-22 06:45:27 +00002440 return false;
Eli Friedman083fb662009-02-22 06:45:27 +00002441 InitializerElementNotConstant(Init);
2442 return true;
2443
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00002444 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init))
2445 Init = DIE->getInit();
2446
Nuno Lopese7280452008-07-07 16:46:50 +00002447 Init = Init->IgnoreParens();
2448
Nate Begemand6d2f772009-01-18 03:20:47 +00002449 if (Init->isEvaluatable(Context))
Anders Carlssonf6791c62008-12-05 05:09:56 +00002450 return false;
2451
Eli Friedman02c22ce2008-05-20 13:48:25 +00002452 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2453 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2454 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2455
Nuno Lopese7280452008-07-07 16:46:50 +00002456 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2457 return CheckForConstantInitializer(e->getInitializer(), DclT);
2458
Douglas Gregorc9e012a2009-01-29 17:44:32 +00002459 if (isa<ImplicitValueInitExpr>(Init)) {
2460 // FIXME: In C++, check for non-POD types.
2461 return false;
2462 }
2463
Eli Friedman02c22ce2008-05-20 13:48:25 +00002464 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2465 unsigned numInits = Exp->getNumInits();
2466 for (unsigned i = 0; i < numInits; i++) {
2467 // FIXME: Need to get the type of the declaration for C++,
2468 // because it could be a reference?
Douglas Gregorf603b472009-01-28 21:54:33 +00002469
Eli Friedman02c22ce2008-05-20 13:48:25 +00002470 if (CheckForConstantInitializer(Exp->getInit(i),
2471 Exp->getInit(i)->getType()))
2472 return true;
2473 }
2474 return false;
2475 }
2476
Anders Carlssonf6791c62008-12-05 05:09:56 +00002477 // FIXME: We can probably remove some of this code below, now that
2478 // Expr::Evaluate is doing the heavy lifting for scalars.
2479
Eli Friedman02c22ce2008-05-20 13:48:25 +00002480 if (Init->isNullPointerConstant(Context))
2481 return false;
2482 if (Init->getType()->isArithmeticType()) {
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00002483 QualType InitTy = Context.getCanonicalType(Init->getType())
2484 .getUnqualifiedType();
Eli Friedman25086f02008-05-30 18:14:48 +00002485 if (InitTy == Context.BoolTy) {
2486 // Special handling for pointers implicitly cast to bool;
2487 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2488 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2489 Expr* SubE = ICE->getSubExpr();
2490 if (SubE->getType()->isPointerType() ||
2491 SubE->getType()->isArrayType() ||
2492 SubE->getType()->isFunctionType()) {
2493 return CheckAddressConstantExpression(Init);
2494 }
2495 }
2496 } else if (InitTy->isIntegralType()) {
2497 Expr* SubE = 0;
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00002498 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedman25086f02008-05-30 18:14:48 +00002499 SubE = CE->getSubExpr();
2500 // Special check for pointer cast to int; we allow as an extension
2501 // an address constant cast to an integer if the integer
2502 // is of an appropriate width (this sort of code is apparently used
2503 // in some places).
2504 // FIXME: Add pedwarn?
2505 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2506 if (SubE && (SubE->getType()->isPointerType() ||
2507 SubE->getType()->isArrayType() ||
2508 SubE->getType()->isFunctionType())) {
2509 unsigned IntWidth = Context.getTypeSize(Init->getType());
2510 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2511 if (IntWidth >= PointerWidth)
2512 return CheckAddressConstantExpression(Init);
2513 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002514 }
2515
2516 return CheckArithmeticConstantExpression(Init);
2517 }
2518
2519 if (Init->getType()->isPointerType())
2520 return CheckAddressConstantExpression(Init);
2521
Eli Friedman25086f02008-05-30 18:14:48 +00002522 // An array type at the top level that isn't an init-list must
2523 // be a string literal
Eli Friedman02c22ce2008-05-20 13:48:25 +00002524 if (Init->getType()->isArrayType())
2525 return false;
2526
Nuno Lopes1dc26762008-09-01 18:42:41 +00002527 if (Init->getType()->isFunctionType())
2528 return false;
2529
Steve Naroffdff3fb22008-10-02 17:12:56 +00002530 // Allow block exprs at top level.
2531 if (Init->getType()->isBlockPointerType())
2532 return false;
Nuno Lopes8260d5d2009-01-15 16:44:45 +00002533
2534 // GCC cast to union extension
2535 // note: the validity of the cast expr is checked by CheckCastTypes()
2536 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2537 QualType T = C->getType();
2538 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2539 }
2540
Steve Narofffc08f5e2008-10-27 11:34:16 +00002541 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002542 return true;
Steve Narofff0b23542008-01-10 22:15:12 +00002543}
2544
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002545void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002546 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2547}
2548
2549/// AddInitializerToDecl - Adds the initializer Init to the
2550/// declaration dcl. If DirectInit is true, this is C++ direct
2551/// initialization rather than copy initialization.
2552void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002553 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002554 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002555 assert(Init && "missing initializer");
Steve Naroff6a0e2092007-09-12 14:07:44 +00002556
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002557 // If there is no declaration, there was an error parsing it. Just ignore
2558 // the initializer.
2559 if (RealDecl == 0) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00002560 Init->Destroy(Context);
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002561 return;
2562 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002563
Steve Naroff420d0f52007-09-12 20:13:48 +00002564 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2565 if (!VDecl) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002566 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
Steve Naroff420d0f52007-09-12 20:13:48 +00002567 RealDecl->setInvalidDecl();
2568 return;
2569 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002570 // Get the decls type and save a reference for later, since
Steve Narofff0b23542008-01-10 22:15:12 +00002571 // CheckInitializerTypes may change it.
Steve Naroff420d0f52007-09-12 20:13:48 +00002572 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002573 if (VDecl->isBlockVarDecl()) {
2574 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002575 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff420d0f52007-09-12 20:13:48 +00002576 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002577 VDecl->setInvalidDecl();
2578 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002579 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002580 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002581 VDecl->setInvalidDecl();
Anders Carlssonea7140a2008-08-22 05:00:02 +00002582
2583 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
Eli Friedmanf4756c22009-02-20 01:34:21 +00002584 // Don't check invalid declarations to avoid emitting useless diagnostics.
2585 if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
Anders Carlssonea7140a2008-08-22 05:00:02 +00002586 if (SC == VarDecl::Static) // C99 6.7.8p4.
2587 CheckForConstantInitializer(Init, DclT);
2588 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002589 }
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002590 } else if (VDecl->isFileVarDecl()) {
2591 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff420d0f52007-09-12 20:13:48 +00002592 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002593 if (!VDecl->isInvalidDecl())
Douglas Gregor6428e762008-11-05 15:29:30 +00002594 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002595 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002596 VDecl->setInvalidDecl();
Steve Narofff0b23542008-01-10 22:15:12 +00002597
Anders Carlssonea7140a2008-08-22 05:00:02 +00002598 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
Eli Friedmanf4756c22009-02-20 01:34:21 +00002599 // Don't check invalid declarations to avoid emitting useless diagnostics.
2600 if (!getLangOptions().CPlusPlus && !VDecl->isInvalidDecl()) {
Anders Carlssonea7140a2008-08-22 05:00:02 +00002601 // C99 6.7.8p4. All file scoped initializers need to be constant.
2602 CheckForConstantInitializer(Init, DclT);
2603 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002604 }
2605 // If the type changed, it means we had an incomplete type that was
2606 // completed by the initializer. For example:
2607 // int ary[] = { 1, 3, 5 };
2608 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb62f06b62007-11-29 19:09:19 +00002609 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002610 VDecl->setType(DclT);
Christopher Lamb62f06b62007-11-29 19:09:19 +00002611 Init->setType(DclT);
2612 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002613
2614 // Attach the initializer to the decl.
Steve Naroff420d0f52007-09-12 20:13:48 +00002615 VDecl->setInit(Init);
Steve Naroff6a0e2092007-09-12 14:07:44 +00002616 return;
2617}
2618
Douglas Gregor81c29152008-10-29 00:13:59 +00002619void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2620 Decl *RealDecl = static_cast<Decl *>(dcl);
2621
Argiris Kirtzidis9c0e9942008-11-07 13:01:22 +00002622 // If there is no declaration, there was an error parsing it. Just ignore it.
2623 if (RealDecl == 0)
2624 return;
2625
Douglas Gregor81c29152008-10-29 00:13:59 +00002626 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2627 QualType Type = Var->getType();
2628 // C++ [dcl.init.ref]p3:
2629 // The initializer can be omitted for a reference only in a
2630 // parameter declaration (8.3.5), in the declaration of a
2631 // function return type, in the declaration of a class member
2632 // within its class declaration (9.2), and where the extern
2633 // specifier is explicitly used.
Douglas Gregorb9213832008-12-15 21:24:18 +00002634 if (Type->isReferenceType() &&
2635 Var->getStorageClass() != VarDecl::Extern &&
2636 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner77d52da2008-11-20 06:06:08 +00002637 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattner271d4c22008-11-24 05:29:24 +00002638 << Var->getDeclName()
2639 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor5870a952008-11-03 20:45:27 +00002640 Var->setInvalidDecl();
2641 return;
2642 }
2643
2644 // C++ [dcl.init]p9:
2645 //
2646 // If no initializer is specified for an object, and the object
2647 // is of (possibly cv-qualified) non-POD class type (or array
2648 // thereof), the object shall be default-initialized; if the
2649 // object is of const-qualified type, the underlying class type
2650 // shall have a user-declared default constructor.
2651 if (getLangOptions().CPlusPlus) {
2652 QualType InitType = Type;
2653 if (const ArrayType *Array = Context.getAsArrayType(Type))
2654 InitType = Array->getElementType();
Douglas Gregorb9213832008-12-15 21:24:18 +00002655 if (Var->getStorageClass() != VarDecl::Extern &&
2656 Var->getStorageClass() != VarDecl::PrivateExtern &&
2657 InitType->isRecordType()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002658 const CXXConstructorDecl *Constructor
2659 = PerformInitializationByConstructor(InitType, 0, 0,
2660 Var->getLocation(),
2661 SourceRange(Var->getLocation(),
2662 Var->getLocation()),
Chris Lattner271d4c22008-11-24 05:29:24 +00002663 Var->getDeclName(),
Douglas Gregor6428e762008-11-05 15:29:30 +00002664 IK_Default);
Douglas Gregor5870a952008-11-03 20:45:27 +00002665 if (!Constructor)
2666 Var->setInvalidDecl();
2667 }
2668 }
Douglas Gregor81c29152008-10-29 00:13:59 +00002669
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002670#if 0
2671 // FIXME: Temporarily disabled because we are not properly parsing
2672 // linkage specifications on declarations, e.g.,
2673 //
2674 // extern "C" const CGPoint CGPointerZero;
2675 //
Douglas Gregor81c29152008-10-29 00:13:59 +00002676 // C++ [dcl.init]p9:
2677 //
2678 // If no initializer is specified for an object, and the
2679 // object is of (possibly cv-qualified) non-POD class type (or
2680 // array thereof), the object shall be default-initialized; if
2681 // the object is of const-qualified type, the underlying class
2682 // type shall have a user-declared default
2683 // constructor. Otherwise, if no initializer is specified for
2684 // an object, the object and its subobjects, if any, have an
2685 // indeterminate initial value; if the object or any of its
2686 // subobjects are of const-qualified type, the program is
2687 // ill-formed.
2688 //
2689 // This isn't technically an error in C, so we don't diagnose it.
2690 //
2691 // FIXME: Actually perform the POD/user-defined default
2692 // constructor check.
2693 if (getLangOptions().CPlusPlus &&
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002694 Context.getCanonicalType(Type).isConstQualified() &&
2695 Var->getStorageClass() != VarDecl::Extern)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002696 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2697 << Var->getName()
2698 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002699#endif
Douglas Gregor81c29152008-10-29 00:13:59 +00002700 }
2701}
2702
Chris Lattner4b009652007-07-25 00:24:17 +00002703/// The declarators are chained together backwards, reverse the list.
2704Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2705 // Often we have single declarators, handle them quickly.
Argiris Kirtzidisb50464f2009-02-17 20:23:54 +00002706 Decl *Group = static_cast<Decl*>(group);
2707 if (Group == 0)
Steve Naroff6a0e2092007-09-12 14:07:44 +00002708 return 0;
Steve Naroff2591e1b2007-09-13 23:52:58 +00002709
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002710 Decl *NewGroup = 0;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002711 if (Group->getNextDeclarator() == 0)
Chris Lattner4b009652007-07-25 00:24:17 +00002712 NewGroup = Group;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002713 else { // reverse the list.
2714 while (Group) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002715 Decl *Next = Group->getNextDeclarator();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002716 Group->setNextDeclarator(NewGroup);
2717 NewGroup = Group;
2718 Group = Next;
2719 }
2720 }
2721 // Perform semantic analysis that depends on having fully processed both
2722 // the declarator and initializer.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002723 for (Decl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroff6a0e2092007-09-12 14:07:44 +00002724 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2725 if (!IDecl)
2726 continue;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002727 QualType T = IDecl->getType();
2728
Anders Carlsson68adbd12008-12-07 00:20:55 +00002729 if (T->isVariableArrayType()) {
Anders Carlssonef2f7df2008-12-20 21:51:53 +00002730 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002731
2732 // FIXME: This won't give the correct result for
2733 // int a[10][n];
2734 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002735 if (IDecl->isFileVarDecl()) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002736 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2737 SizeRange;
2738
Eli Friedman8ff07782008-02-15 18:16:39 +00002739 IDecl->setInvalidDecl();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002740 } else {
2741 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2742 // static storage duration, it shall not have a variable length array.
2743 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002744 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2745 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002746 IDecl->setInvalidDecl();
2747 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002748 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2749 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002750 IDecl->setInvalidDecl();
2751 }
2752 }
2753 } else if (T->isVariablyModifiedType()) {
2754 if (IDecl->isFileVarDecl()) {
2755 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2756 IDecl->setInvalidDecl();
2757 } else {
2758 if (IDecl->getStorageClass() == VarDecl::Extern) {
2759 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2760 IDecl->setInvalidDecl();
2761 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002762 }
2763 }
Anders Carlsson68adbd12008-12-07 00:20:55 +00002764
Steve Naroff6a0e2092007-09-12 14:07:44 +00002765 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2766 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002767 if (IDecl->isBlockVarDecl() &&
2768 IDecl->getStorageClass() != VarDecl::Extern) {
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002769 if (!IDecl->isInvalidDecl() &&
2770 DiagnoseIncompleteType(IDecl->getLocation(), T,
2771 diag::err_typecheck_decl_incomplete_type))
Steve Naroff6a0e2092007-09-12 14:07:44 +00002772 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002773 }
2774 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2775 // object that has file scope without an initializer, and without a
2776 // storage-class specifier or with the storage-class specifier "static",
2777 // constitutes a tentative definition. Note: A tentative definition with
2778 // external linkage is valid (C99 6.2.2p5).
Steve Naroffb5e78152008-08-08 17:50:35 +00002779 if (isTentativeDefinition(IDecl)) {
Eli Friedmane0079792008-02-15 12:53:51 +00002780 if (T->isIncompleteArrayType()) {
Steve Naroff60685462008-01-18 20:40:52 +00002781 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2782 // array to be completed. Don't issue a diagnostic.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002783 } else if (!IDecl->isInvalidDecl() &&
2784 DiagnoseIncompleteType(IDecl->getLocation(), T,
2785 diag::err_typecheck_decl_incomplete_type))
Steve Naroff60685462008-01-18 20:40:52 +00002786 // C99 6.9.2p3: If the declaration of an identifier for an object is
2787 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2788 // declared type shall not be an incomplete type.
Steve Naroff6a0e2092007-09-12 14:07:44 +00002789 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002790 }
Steve Naroffb5e78152008-08-08 17:50:35 +00002791 if (IDecl->isFileVarDecl())
2792 CheckForFileScopedRedefinitions(S, IDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00002793 }
2794 return NewGroup;
2795}
Steve Naroff91b03f72007-08-28 03:03:08 +00002796
Chris Lattner3e254fb2008-04-08 04:40:51 +00002797/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2798/// to introduce parameters into function prototype scope.
2799Sema::DeclTy *
2800Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner5e77ade2008-06-26 06:49:43 +00002801 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002802
Chris Lattner3e254fb2008-04-08 04:40:51 +00002803 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002804 VarDecl::StorageClass StorageClass = VarDecl::None;
2805 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2806 StorageClass = VarDecl::Register;
2807 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002808 Diag(DS.getStorageClassSpecLoc(),
2809 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002810 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002811 }
2812 if (DS.isThreadSpecified()) {
2813 Diag(DS.getThreadSpecLoc(),
2814 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002815 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002816 }
2817
Douglas Gregor2b9422f2008-05-07 04:49:29 +00002818 // Check that there are no default arguments inside the type of this
2819 // parameter (C++ only).
2820 if (getLangOptions().CPlusPlus)
2821 CheckExtraCXXDefaultArguments(D);
2822
Chris Lattner3e254fb2008-04-08 04:40:51 +00002823 // In this context, we *do not* check D.getInvalidType(). If the declarator
2824 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2825 // though it will not reflect the user specified type.
2826 QualType parmDeclType = GetTypeForDeclarator(D, S);
2827
2828 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2829
Chris Lattner4b009652007-07-25 00:24:17 +00002830 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2831 // Can this happen for params? We already checked that they don't conflict
2832 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002833 IdentifierInfo *II = D.getIdentifier();
Chris Lattner310dea32009-01-21 02:38:50 +00002834 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00002835 if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) {
Chris Lattner310dea32009-01-21 02:38:50 +00002836 if (PrevDecl->isTemplateParameter()) {
2837 // Maybe we will complain about the shadowed template parameter.
2838 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2839 // Just pretend that we didn't see the previous declaration.
2840 PrevDecl = 0;
2841 } else if (S->isDeclScope(PrevDecl)) {
2842 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002843
Chris Lattner310dea32009-01-21 02:38:50 +00002844 // Recover by removing the name
2845 II = 0;
2846 D.SetIdentifier(0, D.getIdentifierLoc());
2847 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002848 }
Chris Lattner4b009652007-07-25 00:24:17 +00002849 }
Steve Naroff94cd93f2007-08-07 22:44:21 +00002850
2851 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2852 // Doing the promotion here has a win and a loss. The win is the type for
2853 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2854 // code generator). The loss is the orginal type isn't preserved. For example:
2855 //
2856 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2857 // int blockvardecl[5];
2858 // sizeof(parmvardecl); // size == 4
2859 // sizeof(blockvardecl); // size == 20
2860 // }
2861 //
2862 // For expressions, all implicit conversions are captured using the
2863 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2864 //
2865 // FIXME: If a source translation tool needs to see the original type, then
2866 // we need to consider storing both types (in ParmVarDecl)...
2867 //
Chris Lattner19eb97e2008-04-02 05:18:44 +00002868 if (parmDeclType->isArrayType()) {
Chris Lattnerc08564a2008-01-02 22:50:48 +00002869 // int x[restrict 4] -> int *restrict
Chris Lattner19eb97e2008-04-02 05:18:44 +00002870 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattnerc08564a2008-01-02 22:50:48 +00002871 } else if (parmDeclType->isFunctionType())
Steve Naroff94cd93f2007-08-07 22:44:21 +00002872 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor8acb7272008-12-11 16:49:14 +00002873
Chris Lattner3e254fb2008-04-08 04:40:51 +00002874 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2875 D.getIdentifierLoc(), II,
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002876 parmDeclType, StorageClass,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002877 0);
Anders Carlsson3f70c542008-02-15 07:04:12 +00002878
Chris Lattner3e254fb2008-04-08 04:40:51 +00002879 if (D.getInvalidType())
Steve Naroffcae537d2007-08-28 18:45:29 +00002880 New->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00002881
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002882 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2883 if (D.getCXXScopeSpec().isSet()) {
2884 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2885 << D.getCXXScopeSpec().getRange();
2886 New->setInvalidDecl();
2887 }
Steve Naroffa442ad92009-02-20 22:59:16 +00002888 // Parameter declarators cannot be interface types. All ObjC objects are
2889 // passed by reference.
2890 if (parmDeclType->isObjCInterfaceType()) {
2891 Diag(D.getIdentifierLoc(), diag::err_object_cannot_be_by_value)
2892 << "passed";
2893 New->setInvalidDecl();
2894 }
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002895
Douglas Gregor8acb7272008-12-11 16:49:14 +00002896 // Add the parameter declaration into this scope.
2897 S->AddDecl(New);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002898 if (II)
Douglas Gregor8acb7272008-12-11 16:49:14 +00002899 IdResolver.AddDecl(New);
Nate Begeman9f3c4bb2008-02-17 21:20:31 +00002900
Chris Lattner9b384ca2008-06-29 00:02:00 +00002901 ProcessDeclAttributes(New, D);
Chris Lattner4b009652007-07-25 00:24:17 +00002902 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002903
Chris Lattner4b009652007-07-25 00:24:17 +00002904}
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00002905
Douglas Gregor65075ec2009-01-23 16:23:13 +00002906void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D) {
Chris Lattner4b009652007-07-25 00:24:17 +00002907 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2908 "Not a function declarator!");
2909 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002910
Chris Lattner4b009652007-07-25 00:24:17 +00002911 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2912 // for a K&R function.
2913 if (!FTI.hasPrototype) {
2914 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002915 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002916 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2917 << FTI.ArgInfo[i].Ident;
Chris Lattner4b009652007-07-25 00:24:17 +00002918 // Implicitly declare the argument as type 'int' for lack of a better
2919 // type.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002920 DeclSpec DS;
2921 const char* PrevSpec; // unused
2922 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2923 PrevSpec);
2924 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2925 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
Douglas Gregor65075ec2009-01-23 16:23:13 +00002926 FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
Chris Lattner4b009652007-07-25 00:24:17 +00002927 }
2928 }
Douglas Gregor65075ec2009-01-23 16:23:13 +00002929 }
2930}
2931
2932Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
2933 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
2934 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2935 "Not a function declarator!");
2936 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2937
2938 if (FTI.hasPrototype) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002939 // FIXME: Diagnose arguments without names in C.
Chris Lattner4b009652007-07-25 00:24:17 +00002940 }
2941
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002942 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroff1d5bd642008-01-14 20:51:29 +00002943
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002944 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002945 ActOnDeclarator(ParentScope, D, 0,
2946 /*IsFunctionDefinition=*/true));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002947}
2948
2949Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2950 Decl *decl = static_cast<Decl*>(D);
Chris Lattner2d2216b2008-02-16 01:20:36 +00002951 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregor56da7862008-10-29 15:10:40 +00002952
2953 // See if this is a redefinition.
2954 const FunctionDecl *Definition;
2955 if (FD->getBody(Definition)) {
Chris Lattnerb1753422008-11-23 21:45:46 +00002956 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +00002957 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregor56da7862008-10-29 15:10:40 +00002958 }
2959
Douglas Gregor083c23e2009-02-16 17:45:42 +00002960 // Builtin functions cannot be defined.
2961 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
Douglas Gregorfe3ccfa2009-02-17 16:03:01 +00002962 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
Douglas Gregor083c23e2009-02-16 17:45:42 +00002963 Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
Douglas Gregorfe3ccfa2009-02-17 16:03:01 +00002964 FD->setInvalidDecl();
2965 }
Douglas Gregor083c23e2009-02-16 17:45:42 +00002966 }
2967
Douglas Gregor8acb7272008-12-11 16:49:14 +00002968 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002969
Chris Lattner3e254fb2008-04-08 04:40:51 +00002970 // Check the validity of our function parameters
2971 CheckParmsForFunctionDef(FD);
2972
2973 // Introduce our parameters into the function scope
2974 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2975 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregord394a272009-01-09 18:51:29 +00002976 Param->setOwningFunction(FD);
2977
Chris Lattner3e254fb2008-04-08 04:40:51 +00002978 // If this has an identifier, add it to the scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002979 if (Param->getIdentifier())
2980 PushOnScopeChains(Param, FnBodyScope);
Chris Lattner4b009652007-07-25 00:24:17 +00002981 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002982
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002983 // Checking attributes of current function definition
2984 // dllimport attribute.
2985 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2986 // dllimport attribute cannot be applied to definition.
2987 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2988 Diag(FD->getLocation(),
2989 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2990 << "dllimport";
2991 FD->setInvalidDecl();
2992 return FD;
2993 } else {
2994 // If a symbol previously declared dllimport is later defined, the
2995 // attribute is ignored in subsequent references, and a warning is
2996 // emitted.
2997 Diag(FD->getLocation(),
2998 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2999 << FD->getNameAsCString() << "dllimport";
3000 }
3001 }
Chris Lattner4b009652007-07-25 00:24:17 +00003002 return FD;
3003}
3004
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00003005Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroff99ee4302007-11-11 23:20:51 +00003006 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00003007 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff3ac43f92008-07-25 17:57:26 +00003008 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00003009 FD->setBody(Body);
Argiris Kirtzidis95256e62008-06-28 06:07:14 +00003010 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff3ac43f92008-07-25 17:57:26 +00003011 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Chris Lattner5e3f2172009-02-16 19:27:54 +00003012 assert(MD == getCurMethodDecl() && "Method parsing confused");
Steve Naroff99ee4302007-11-11 23:20:51 +00003013 MD->setBody((Stmt*)Body);
Ted Kremenek0c97e042009-02-07 01:47:29 +00003014 } else {
3015 Body->Destroy(Context);
Steve Naroff3ac43f92008-07-25 17:57:26 +00003016 return 0;
Ted Kremenek0c97e042009-02-07 01:47:29 +00003017 }
Chris Lattnerf3874bc2008-04-06 04:47:34 +00003018 PopDeclContext();
Chris Lattner4b009652007-07-25 00:24:17 +00003019 // Verify and clean out per-function state.
3020
3021 // Check goto/label use.
3022 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
3023 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
3024 // Verify that we have no forward references left. If so, there was a goto
3025 // or address of a label taken, but no definition of it. Label fwd
3026 // definitions are indicated with a null substmt.
3027 if (I->second->getSubStmt() == 0) {
3028 LabelStmt *L = I->second;
3029 // Emit error.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003030 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Chris Lattner4b009652007-07-25 00:24:17 +00003031
3032 // At this point, we have gotos that use the bogus label. Stitch it into
3033 // the function body so that they aren't leaked and that the AST is well
3034 // formed.
Chris Lattner83343342008-01-25 00:01:10 +00003035 if (Body) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00003036#if 0
3037 // FIXME: Why do this? Having a 'push_back' in CompoundStmt is ugly,
3038 // and the AST is malformed anyway. We should just blow away 'L'.
3039 L->setSubStmt(new (Context) NullStmt(L->getIdentLoc()));
3040 cast<CompoundStmt>(Body)->push_back(L);
3041#else
3042 L->Destroy(Context);
3043#endif
Chris Lattner83343342008-01-25 00:01:10 +00003044 } else {
3045 // The whole function wasn't parsed correctly, just delete this.
Ted Kremenek0c97e042009-02-07 01:47:29 +00003046 L->Destroy(Context);
Chris Lattner83343342008-01-25 00:01:10 +00003047 }
Chris Lattner4b009652007-07-25 00:24:17 +00003048 }
3049 }
3050 LabelMap.clear();
3051
Steve Naroff99ee4302007-11-11 23:20:51 +00003052 return D;
Fariborz Jahaniane6f59f12007-11-10 16:31:34 +00003053}
3054
Chris Lattner4b009652007-07-25 00:24:17 +00003055/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
3056/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003057NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
3058 IdentifierInfo &II, Scope *S) {
Chris Lattnerdea31bf2008-05-05 21:18:06 +00003059 // Extension in C99. Legal in C90, but warn about it.
3060 if (getLangOptions().C99)
Chris Lattner65cae292008-11-19 08:23:25 +00003061 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattnerdea31bf2008-05-05 21:18:06 +00003062 else
Chris Lattner65cae292008-11-19 08:23:25 +00003063 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Chris Lattner4b009652007-07-25 00:24:17 +00003064
3065 // FIXME: handle stuff like:
3066 // void foo() { extern float X(); }
3067 // void bar() { X(); } <-- implicit decl for X in another scope.
3068
3069 // Set a Declarator for the implicit definition: int foo();
3070 const char *Dummy;
3071 DeclSpec DS;
3072 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
3073 Error = Error; // Silence warning.
3074 assert(!Error && "Error setting up implicit decl!");
3075 Declarator D(DS, Declarator::BlockContext);
Douglas Gregor88a25f82009-02-18 07:07:28 +00003076 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, SourceLocation(),
3077 0, 0, 0, Loc, D),
Sebastian Redl0c986032009-02-09 18:23:29 +00003078 SourceLocation());
Chris Lattner4b009652007-07-25 00:24:17 +00003079 D.SetIdentifier(&II, Loc);
Sebastian Redl0c986032009-02-09 18:23:29 +00003080
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00003081 // Insert this function into translation-unit scope.
3082
3083 DeclContext *PrevDC = CurContext;
3084 CurContext = Context.getTranslationUnitDecl();
3085
Steve Naroff9104f3c2008-04-04 14:32:09 +00003086 FunctionDecl *FD =
Daniel Dunbar72eaf8a2008-08-05 16:28:08 +00003087 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroff9104f3c2008-04-04 14:32:09 +00003088 FD->setImplicit();
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00003089
3090 CurContext = PrevDC;
3091
Douglas Gregorb5af7382009-02-14 18:57:46 +00003092 AddKnownFunctionAttributes(FD);
3093
Steve Naroff9104f3c2008-04-04 14:32:09 +00003094 return FD;
Chris Lattner4b009652007-07-25 00:24:17 +00003095}
3096
Douglas Gregorb5af7382009-02-14 18:57:46 +00003097/// \brief Adds any function attributes that we know a priori based on
3098/// the declaration of this function.
3099///
3100/// These attributes can apply both to implicitly-declared builtins
3101/// (like __builtin___printf_chk) or to library-declared functions
3102/// like NSLog or printf.
3103void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
3104 if (FD->isInvalidDecl())
3105 return;
3106
3107 // If this is a built-in function, map its builtin attributes to
3108 // actual attributes.
3109 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
3110 // Handle printf-formatting attributes.
3111 unsigned FormatIdx;
3112 bool HasVAListArg;
3113 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
3114 if (!FD->getAttr<FormatAttr>())
3115 FD->addAttr(new FormatAttr("printf", FormatIdx + 1, FormatIdx + 2));
3116 }
Daniel Dunbarfd46ea22009-02-16 22:43:43 +00003117
3118 // Mark const if we don't care about errno and that is the only
3119 // thing preventing the function from being const. This allows
3120 // IRgen to use LLVM intrinsics for such functions.
3121 if (!getLangOptions().MathErrno &&
3122 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
3123 if (!FD->getAttr<ConstAttr>())
3124 FD->addAttr(new ConstAttr());
3125 }
Douglas Gregorb5af7382009-02-14 18:57:46 +00003126 }
3127
3128 IdentifierInfo *Name = FD->getIdentifier();
3129 if (!Name)
3130 return;
3131 if ((!getLangOptions().CPlusPlus &&
3132 FD->getDeclContext()->isTranslationUnit()) ||
3133 (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
3134 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
3135 LinkageSpecDecl::lang_c)) {
3136 // Okay: this could be a libc/libm/Objective-C function we know
3137 // about.
3138 } else
3139 return;
3140
3141 unsigned KnownID;
3142 for (KnownID = 0; KnownID != id_num_known_functions; ++KnownID)
3143 if (KnownFunctionIDs[KnownID] == Name)
3144 break;
3145
3146 switch (KnownID) {
3147 case id_NSLog:
3148 case id_NSLogv:
3149 if (const FormatAttr *Format = FD->getAttr<FormatAttr>()) {
3150 // FIXME: We known better than our headers.
3151 const_cast<FormatAttr *>(Format)->setType("printf");
3152 } else
3153 FD->addAttr(new FormatAttr("printf", 1, 2));
3154 break;
3155
3156 case id_asprintf:
3157 case id_vasprintf:
3158 if (!FD->getAttr<FormatAttr>())
3159 FD->addAttr(new FormatAttr("printf", 2, 3));
3160 break;
3161
3162 default:
3163 // Unknown function or known function without any attributes to
3164 // add. Do nothing.
3165 break;
3166 }
3167}
Chris Lattner4b009652007-07-25 00:24:17 +00003168
Chris Lattner82bb4792007-11-14 06:34:38 +00003169TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003170 Decl *LastDeclarator) {
Chris Lattner4b009652007-07-25 00:24:17 +00003171 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003172 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Chris Lattner4b009652007-07-25 00:24:17 +00003173
3174 // Scope manipulation handled by caller.
Chris Lattnereee57c02008-04-04 06:12:32 +00003175 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
3176 D.getIdentifierLoc(),
Chris Lattnere4650482008-03-15 06:12:44 +00003177 D.getIdentifier(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003178 T);
3179 NewTD->setNextDeclarator(LastDeclarator);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003180 if (D.getInvalidType())
3181 NewTD->setInvalidDecl();
3182 return NewTD;
Chris Lattner4b009652007-07-25 00:24:17 +00003183}
3184
Steve Naroff0acc9c92007-09-15 18:49:24 +00003185/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Chris Lattner4b009652007-07-25 00:24:17 +00003186/// former case, Name will be non-null. In the later case, Name will be null.
Douglas Gregor98b27542009-01-17 00:42:38 +00003187/// TagSpec indicates what kind of tag this is. TK indicates whether this is a
Chris Lattner4b009652007-07-25 00:24:17 +00003188/// reference/declaration/definition of a tag.
Douglas Gregor98b27542009-01-17 00:42:38 +00003189Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagKind TK,
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +00003190 SourceLocation KWLoc, const CXXScopeSpec &SS,
3191 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregord406b032009-02-06 22:42:48 +00003192 AttributeList *Attr) {
Douglas Gregorae644892008-12-15 16:32:14 +00003193 // If this is not a definition, it must have a name.
Chris Lattner4b009652007-07-25 00:24:17 +00003194 assert((Name != 0 || TK == TK_Definition) &&
3195 "Nameless record must be a definition!");
Douglas Gregor279272e2009-02-04 19:02:06 +00003196
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003197 TagDecl::TagKind Kind;
Douglas Gregor98b27542009-01-17 00:42:38 +00003198 switch (TagSpec) {
Chris Lattner4b009652007-07-25 00:24:17 +00003199 default: assert(0 && "Unknown tag type!");
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003200 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
3201 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
3202 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
3203 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Chris Lattner4b009652007-07-25 00:24:17 +00003204 }
3205
Douglas Gregorb748fc52009-01-12 22:49:06 +00003206 DeclContext *SearchDC = CurContext;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003207 DeclContext *DC = CurContext;
Douglas Gregor09be81b2009-02-04 17:27:36 +00003208 NamedDecl *PrevDecl = 0;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00003209
Douglas Gregor98b27542009-01-17 00:42:38 +00003210 bool Invalid = false;
3211
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003212 if (Name && SS.isNotEmpty()) {
3213 // We have a nested-name tag ('struct foo::bar').
3214
3215 // Check for invalid 'foo::'.
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003216 if (SS.isInvalid()) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003217 Name = 0;
3218 goto CreateNewDecl;
3219 }
3220
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003221 DC = static_cast<DeclContext*>(SS.getScopeRep());
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003222 SearchDC = DC;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003223 // Look-up name inside 'foo::'.
Steve Naroffc349ee22009-01-29 00:07:50 +00003224 PrevDecl = dyn_cast_or_null<TagDecl>(
Douglas Gregor7a7be652009-02-03 19:21:40 +00003225 LookupQualifiedName(DC, Name, LookupTagName, true).getAsDecl());
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003226
3227 // A tag 'foo::bar' must already exist.
3228 if (PrevDecl == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00003229 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003230 Name = 0;
3231 goto CreateNewDecl;
3232 }
Chris Lattner310dea32009-01-21 02:38:50 +00003233 } else if (Name) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003234 // If this is a named struct, check to see if there was a previous forward
3235 // declaration or definition.
Douglas Gregor7a7be652009-02-03 19:21:40 +00003236 // FIXME: We're looking into outer scopes here, even when we
3237 // shouldn't be. Doing so can result in ambiguities that we
3238 // shouldn't be diagnosing.
Douglas Gregor362c8952009-02-03 19:26:08 +00003239 LookupResult R = LookupName(S, Name, LookupTagName,
3240 /*RedeclarationOnly=*/(TK != TK_Reference));
Douglas Gregor7a7be652009-02-03 19:21:40 +00003241 if (R.isAmbiguous()) {
3242 DiagnoseAmbiguousLookup(R, Name, NameLoc);
3243 // FIXME: This is not best way to recover from case like:
3244 //
3245 // struct S s;
3246 //
3247 // causes needless err_ovl_no_viable_function_in_init latter.
3248 Name = 0;
3249 PrevDecl = 0;
3250 Invalid = true;
3251 }
3252 else
Douglas Gregor09be81b2009-02-04 17:27:36 +00003253 PrevDecl = R;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003254
3255 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
3256 // FIXME: This makes sure that we ignore the contexts associated
3257 // with C structs, unions, and enums when looking for a matching
3258 // tag declaration or definition. See the similar lookup tweak
Douglas Gregor52ae30c2009-01-30 01:04:22 +00003259 // in Sema::LookupName; is there a better way to deal with this?
Douglas Gregorb748fc52009-01-12 22:49:06 +00003260 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
3261 SearchDC = SearchDC->getParent();
Douglas Gregordb568cf2009-01-08 20:45:30 +00003262 }
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003263 }
3264
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003265 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003266 // Maybe we will complain about the shadowed template parameter.
3267 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
3268 // Just pretend that we didn't see the previous declaration.
3269 PrevDecl = 0;
3270 }
3271
Chris Lattner31ccf0a2009-02-16 22:07:16 +00003272 if (PrevDecl) {
Douglas Gregoraa57e862009-02-18 21:56:37 +00003273 // Check whether the previous declaration is usable.
3274 (void)DiagnoseUseOfDecl(PrevDecl, NameLoc);
Chris Lattner31ccf0a2009-02-16 22:07:16 +00003275
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003276 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003277 // If this is a use of a previous tag, or if the tag is already declared
3278 // in the same scope (so that the definition/declaration completes or
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003279 // rementions the tag), reuse the decl.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003280 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003281 // Make sure that this wasn't declared as an enum and now used as a
3282 // struct or something similar.
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003283 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner65cae292008-11-19 08:23:25 +00003284 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00003285 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003286 // Recover by making this an anonymous redefinition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003287 Name = 0;
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003288 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003289 Invalid = true;
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003290 } else {
Douglas Gregorae644892008-12-15 16:32:14 +00003291 // If this is a use, just return the declaration we found.
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003292
Douglas Gregorae644892008-12-15 16:32:14 +00003293 // FIXME: In the future, return a variant or some other clue
3294 // for the consumer of this Decl to know it doesn't own it.
3295 // For our current ASTs this shouldn't be a problem, but will
3296 // need to be changed with DeclGroups.
3297 if (TK == TK_Reference)
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003298 return PrevDecl;
Douglas Gregor279272e2009-02-04 19:02:06 +00003299
Douglas Gregorae644892008-12-15 16:32:14 +00003300 // Diagnose attempts to redefine a tag.
3301 if (TK == TK_Definition) {
3302 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
3303 Diag(NameLoc, diag::err_redefinition) << Name;
3304 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregor98b27542009-01-17 00:42:38 +00003305 // If this is a redefinition, recover by making this
3306 // struct be anonymous, which will make any later
3307 // references get the previous definition.
Douglas Gregorae644892008-12-15 16:32:14 +00003308 Name = 0;
3309 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003310 Invalid = true;
3311 } else {
3312 // If the type is currently being defined, complain
3313 // about a nested redefinition.
3314 TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
3315 if (Tag->isBeingDefined()) {
3316 Diag(NameLoc, diag::err_nested_redefinition) << Name;
3317 Diag(PrevTagDecl->getLocation(),
3318 diag::note_previous_definition);
3319 Name = 0;
3320 PrevDecl = 0;
3321 Invalid = true;
3322 }
Douglas Gregorae644892008-12-15 16:32:14 +00003323 }
Douglas Gregor98b27542009-01-17 00:42:38 +00003324
Douglas Gregorae644892008-12-15 16:32:14 +00003325 // Okay, this is definition of a previously declared or referenced
3326 // tag PrevDecl. We're going to create a new Decl for it.
Douglas Gregor98b27542009-01-17 00:42:38 +00003327 }
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003328 }
Douglas Gregorae644892008-12-15 16:32:14 +00003329 // If we get here we have (another) forward declaration or we
3330 // have a definition. Just create a new decl.
3331 } else {
3332 // If we get here, this is a definition of a new tag type in a nested
3333 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
3334 // new decl/type. We set PrevDecl to NULL so that the entities
3335 // have distinct types.
3336 PrevDecl = 0;
Chris Lattner4b009652007-07-25 00:24:17 +00003337 }
Douglas Gregorae644892008-12-15 16:32:14 +00003338 // If we get here, we're going to create a new Decl. If PrevDecl
3339 // is non-NULL, it's a definition of the tag declared by
3340 // PrevDecl. If it's NULL, we have a new definition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003341 } else {
Douglas Gregorb31f2942009-01-28 17:15:10 +00003342 // PrevDecl is a namespace, template, or anything else
3343 // that lives in the IDNS_Tag identifier namespace.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003344 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremenek40e70e72008-09-03 18:03:35 +00003345 // The tag name clashes with a namespace name, issue an error and
3346 // recover by making this tag be anonymous.
Chris Lattner65cae292008-11-19 08:23:25 +00003347 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00003348 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003349 Name = 0;
Douglas Gregorae644892008-12-15 16:32:14 +00003350 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003351 Invalid = true;
Douglas Gregorae644892008-12-15 16:32:14 +00003352 } else {
3353 // The existing declaration isn't relevant to us; we're in a
3354 // new scope, so clear out the previous declaration.
3355 PrevDecl = 0;
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003356 }
Chris Lattner4b009652007-07-25 00:24:17 +00003357 }
Douglas Gregorcab994d2009-01-09 22:42:13 +00003358 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
3359 (Kind != TagDecl::TK_enum)) {
3360 // C++ [basic.scope.pdecl]p5:
3361 // -- for an elaborated-type-specifier of the form
3362 //
3363 // class-key identifier
3364 //
3365 // if the elaborated-type-specifier is used in the
3366 // decl-specifier-seq or parameter-declaration-clause of a
3367 // function defined in namespace scope, the identifier is
3368 // declared as a class-name in the namespace that contains
3369 // the declaration; otherwise, except as a friend
3370 // declaration, the identifier is declared in the smallest
3371 // non-class, non-function-prototype scope that contains the
3372 // declaration.
3373 //
3374 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
3375 // C structs and unions.
3376
3377 // Find the context where we'll be declaring the tag.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003378 // FIXME: We would like to maintain the current DeclContext as the
3379 // lexical context,
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003380 while (SearchDC->isRecord())
3381 SearchDC = SearchDC->getParent();
Douglas Gregorcab994d2009-01-09 22:42:13 +00003382
3383 // Find the scope where we'll be declaring the tag.
3384 while (S->isClassScope() ||
3385 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003386 ((S->getFlags() & Scope::DeclScope) == 0) ||
3387 (S->getEntity() &&
3388 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregorcab994d2009-01-09 22:42:13 +00003389 S = S->getParent();
Chris Lattner4b009652007-07-25 00:24:17 +00003390 }
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00003391
Chris Lattner9bb9abf2008-12-17 07:13:27 +00003392CreateNewDecl:
Chris Lattner4b009652007-07-25 00:24:17 +00003393
3394 // If there is an identifier, use the location of the identifier as the
3395 // location of the decl, otherwise use the location of the struct/union
3396 // keyword.
3397 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
3398
Douglas Gregorae644892008-12-15 16:32:14 +00003399 // Otherwise, create a new declaration. If there is a previous
3400 // declaration of the same entity, the two will be linked via
3401 // PrevDecl.
Chris Lattner4b009652007-07-25 00:24:17 +00003402 TagDecl *New;
Douglas Gregor723d3332009-01-07 00:43:41 +00003403
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003404 if (Kind == TagDecl::TK_enum) {
Chris Lattner4b009652007-07-25 00:24:17 +00003405 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3406 // enum X { A, B, C } D; D should chain to X.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003407 New = EnumDecl::Create(Context, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003408 cast_or_null<EnumDecl>(PrevDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003409 // If this is an undefined enum, warn.
3410 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003411 } else {
3412 // struct/union/class
3413
Chris Lattner4b009652007-07-25 00:24:17 +00003414 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3415 // struct X { int A; } D; D should chain to X.
Douglas Gregord406b032009-02-06 22:42:48 +00003416 if (getLangOptions().CPlusPlus)
Ted Kremenek770b11d2008-09-05 17:39:33 +00003417 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003418 New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003419 cast_or_null<CXXRecordDecl>(PrevDecl));
Douglas Gregord406b032009-02-06 22:42:48 +00003420 else
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003421 New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003422 cast_or_null<RecordDecl>(PrevDecl));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003423 }
Douglas Gregorae644892008-12-15 16:32:14 +00003424
3425 if (Kind != TagDecl::TK_enum) {
3426 // Handle #pragma pack: if the #pragma pack stack has non-default
3427 // alignment, make up a packed attribute for this decl. These
3428 // attributes are checked when the ASTContext lays out the
3429 // structure.
3430 //
3431 // It is important for implementing the correct semantics that this
3432 // happen here (in act on tag decl). The #pragma pack stack is
3433 // maintained as a result of parser callbacks which can occur at
3434 // many points during the parsing of a struct declaration (because
3435 // the #pragma tokens are effectively skipped over during the
3436 // parsing of the struct).
Chris Lattnera8699562009-02-17 01:09:29 +00003437 if (unsigned Alignment = getPragmaPackAlignment())
Douglas Gregorae644892008-12-15 16:32:14 +00003438 New->addAttr(new PackedAttr(Alignment * 8));
3439 }
3440
Douglas Gregorb31f2942009-01-28 17:15:10 +00003441 if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
3442 // C++ [dcl.typedef]p3:
3443 // [...] Similarly, in a given scope, a class or enumeration
3444 // shall not be declared with the same name as a typedef-name
3445 // that is declared in that scope and refers to a type other
3446 // than the class or enumeration itself.
Douglas Gregor52ae30c2009-01-30 01:04:22 +00003447 LookupResult Lookup = LookupName(S, Name, LookupOrdinaryName, true);
Douglas Gregorb31f2942009-01-28 17:15:10 +00003448 TypedefDecl *PrevTypedef = 0;
3449 if (Lookup.getKind() == LookupResult::Found)
3450 PrevTypedef = dyn_cast<TypedefDecl>(Lookup.getAsDecl());
3451
3452 if (PrevTypedef && isDeclInScope(PrevTypedef, SearchDC, S) &&
3453 Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
3454 Context.getCanonicalType(Context.getTypeDeclType(New))) {
3455 Diag(Loc, diag::err_tag_definition_of_typedef)
3456 << Context.getTypeDeclType(New)
3457 << PrevTypedef->getUnderlyingType();
3458 Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
3459 Invalid = true;
3460 }
3461 }
3462
Douglas Gregor98b27542009-01-17 00:42:38 +00003463 if (Invalid)
3464 New->setInvalidDecl();
3465
Douglas Gregorae644892008-12-15 16:32:14 +00003466 if (Attr)
3467 ProcessDeclAttributeList(New, Attr);
3468
Douglas Gregor98b27542009-01-17 00:42:38 +00003469 // If we're declaring or defining a tag in function prototype scope
3470 // in C, note that this type can only be used within the function.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003471 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3472 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3473
Douglas Gregorae644892008-12-15 16:32:14 +00003474 // Set the lexical context. If the tag has a C++ scope specifier, the
3475 // lexical context will be different from the semantic context.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003476 New->setLexicalDeclContext(CurContext);
Douglas Gregor98b27542009-01-17 00:42:38 +00003477
3478 if (TK == TK_Definition)
3479 New->startDefinition();
Chris Lattner4b009652007-07-25 00:24:17 +00003480
3481 // If this has an identifier, add it to the scope stack.
3482 if (Name) {
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003483 S = getNonFieldDeclScope(S);
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003484 PushOnScopeChains(New, S);
Douglas Gregorb748fc52009-01-12 22:49:06 +00003485 } else {
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003486 CurContext->addDecl(New);
Chris Lattner4b009652007-07-25 00:24:17 +00003487 }
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00003488
Chris Lattner4b009652007-07-25 00:24:17 +00003489 return New;
3490}
3491
Douglas Gregordb568cf2009-01-08 20:45:30 +00003492void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregor279272e2009-02-04 19:02:06 +00003493 AdjustDeclIfTemplate(TagD);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003494 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3495
3496 // Enter the tag context.
3497 PushDeclContext(S, Tag);
3498
3499 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3500 FieldCollector->StartClass();
3501
3502 if (Record->getIdentifier()) {
3503 // C++ [class]p2:
3504 // [...] The class-name is also inserted into the scope of the
3505 // class itself; this is known as the injected-class-name. For
3506 // purposes of access checking, the injected-class-name is treated
3507 // as if it were a public member name.
3508 RecordDecl *InjectedClassName
3509 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3510 CurContext, Record->getLocation(),
3511 Record->getIdentifier(), Record);
3512 InjectedClassName->setImplicit();
3513 PushOnScopeChains(InjectedClassName, S);
3514 }
3515 }
3516}
3517
3518void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregor279272e2009-02-04 19:02:06 +00003519 AdjustDeclIfTemplate(TagD);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003520 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3521
3522 if (isa<CXXRecordDecl>(Tag))
3523 FieldCollector->FinishClass();
3524
3525 // Exit this scope of this tag's definition.
3526 PopDeclContext();
3527
3528 // Notify the consumer that we've defined a tag.
3529 Consumer.HandleTagDeclDefinition(Tag);
3530}
Chris Lattner1bf58f62008-06-21 19:39:06 +00003531
Anders Carlsson108229a2008-12-06 20:33:04 +00003532bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattner8464c372008-12-12 04:56:04 +00003533 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson108229a2008-12-06 20:33:04 +00003534 // FIXME: 6.7.2.1p4 - verify the field type.
3535
3536 llvm::APSInt Value;
3537 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3538 return true;
3539
Chris Lattner8464c372008-12-12 04:56:04 +00003540 // Zero-width bitfield is ok for anonymous field.
3541 if (Value == 0 && FieldName)
3542 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3543
3544 if (Value.isNegative())
3545 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson108229a2008-12-06 20:33:04 +00003546
3547 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3548 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattner8464c372008-12-12 04:56:04 +00003549 if (TypeSize && Value.getZExtValue() > TypeSize)
3550 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3551 << FieldName << (unsigned)TypeSize;
Anders Carlsson108229a2008-12-06 20:33:04 +00003552
3553 return false;
3554}
3555
Steve Naroff0acc9c92007-09-15 18:49:24 +00003556/// ActOnField - Each field of a struct/union/class is passed into this in order
Chris Lattner4b009652007-07-25 00:24:17 +00003557/// to create a FieldDecl object for it.
Douglas Gregor8acb7272008-12-11 16:49:14 +00003558Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Chris Lattner4b009652007-07-25 00:24:17 +00003559 SourceLocation DeclStart,
3560 Declarator &D, ExprTy *BitfieldWidth) {
3561 IdentifierInfo *II = D.getIdentifier();
3562 Expr *BitWidth = (Expr*)BitfieldWidth;
Chris Lattner4b009652007-07-25 00:24:17 +00003563 SourceLocation Loc = DeclStart;
Douglas Gregor8acb7272008-12-11 16:49:14 +00003564 RecordDecl *Record = (RecordDecl *)TagD;
Chris Lattner4b009652007-07-25 00:24:17 +00003565 if (II) Loc = D.getIdentifierLoc();
3566
3567 // FIXME: Unnamed fields can be handled in various different ways, for
3568 // example, unnamed unions inject all members into the struct namespace!
Chris Lattner4b009652007-07-25 00:24:17 +00003569
Chris Lattner4b009652007-07-25 00:24:17 +00003570 QualType T = GetTypeForDeclarator(D, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003571 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3572 bool InvalidDecl = false;
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003573
Chris Lattner4b009652007-07-25 00:24:17 +00003574 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3575 // than a variably modified type.
Eli Friedmane0079792008-02-15 12:53:51 +00003576 if (T->isVariablyModifiedType()) {
Eli Friedmand4314282009-02-21 00:44:51 +00003577 bool SizeIsNegative;
3578 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context,
3579 SizeIsNegative);
3580 if (!FixedTy.isNull()) {
3581 Diag(Loc, diag::warn_illegal_constant_array_size);
3582 T = FixedTy;
3583 } else {
3584 if (SizeIsNegative)
3585 Diag(Loc, diag::err_typecheck_negative_array_size);
3586 else
3587 Diag(Loc, diag::err_typecheck_field_variable_size);
3588 T = Context.IntTy;
3589 InvalidDecl = true;
3590 }
Chris Lattner4b009652007-07-25 00:24:17 +00003591 }
Anders Carlsson108229a2008-12-06 20:33:04 +00003592
3593 if (BitWidth) {
3594 if (VerifyBitField(Loc, II, T, BitWidth))
3595 InvalidDecl = true;
3596 } else {
3597 // Not a bitfield.
3598
3599 // validate II.
3600
3601 }
3602
Chris Lattner97e84d62009-02-20 20:41:34 +00003603 FieldDecl *NewFD = FieldDecl::Create(Context, Record,
3604 Loc, II, T, BitWidth,
3605 D.getDeclSpec().getStorageClassSpec() ==
3606 DeclSpec::SCS_mutable);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003607
Douglas Gregordb568cf2009-01-08 20:45:30 +00003608 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00003609 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003610 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3611 && !isa<TagDecl>(PrevDecl)) {
3612 Diag(Loc, diag::err_duplicate_member) << II;
3613 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3614 NewFD->setInvalidDecl();
3615 Record->setInvalidDecl();
3616 }
3617 }
3618
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003619 if (getLangOptions().CPlusPlus) {
Douglas Gregor605de8d2008-12-16 21:30:33 +00003620 CheckExtraCXXDefaultArguments(D);
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003621 if (!T->isPODType())
3622 cast<CXXRecordDecl>(Record)->setPOD(false);
3623 }
Douglas Gregor605de8d2008-12-16 21:30:33 +00003624
Chris Lattner9b384ca2008-06-29 00:02:00 +00003625 ProcessDeclAttributes(NewFD, D);
Fariborz Jahanian85534582009-02-19 00:22:47 +00003626 if (T.isObjCGCWeak())
Fariborz Jahanian2062bb22009-02-18 18:14:41 +00003627 Diag(Loc, diag::warn_attribute_weak_on_field);
Anders Carlsson136cdc32008-02-16 00:29:18 +00003628
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003629 if (D.getInvalidType() || InvalidDecl)
3630 NewFD->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00003631
Douglas Gregordb568cf2009-01-08 20:45:30 +00003632 if (II) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003633 PushOnScopeChains(NewFD, S);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003634 } else
Douglas Gregor03b2ad22009-01-12 23:27:07 +00003635 Record->addDecl(NewFD);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003636
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003637 return NewFD;
Chris Lattner4b009652007-07-25 00:24:17 +00003638}
3639
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003640/// TranslateIvarVisibility - Translate visibility from a token ID to an
3641/// AST enum value.
Ted Kremenek42730c52008-01-07 19:49:32 +00003642static ObjCIvarDecl::AccessControl
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003643TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Naroffffeaa552007-09-14 23:09:53 +00003644 switch (ivarVisibility) {
Chris Lattner504c5432008-10-12 00:28:42 +00003645 default: assert(0 && "Unknown visitibility kind");
3646 case tok::objc_private: return ObjCIvarDecl::Private;
3647 case tok::objc_public: return ObjCIvarDecl::Public;
3648 case tok::objc_protected: return ObjCIvarDecl::Protected;
3649 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Naroffffeaa552007-09-14 23:09:53 +00003650 }
3651}
3652
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003653/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3654/// in order to create an IvarDecl object for it.
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003655Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003656 SourceLocation DeclStart,
3657 Declarator &D, ExprTy *BitfieldWidth,
3658 tok::ObjCKeywordKind Visibility) {
Douglas Gregordb568cf2009-01-08 20:45:30 +00003659
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003660 IdentifierInfo *II = D.getIdentifier();
3661 Expr *BitWidth = (Expr*)BitfieldWidth;
3662 SourceLocation Loc = DeclStart;
3663 if (II) Loc = D.getIdentifierLoc();
3664
3665 // FIXME: Unnamed fields can be handled in various different ways, for
3666 // example, unnamed unions inject all members into the struct namespace!
3667
Anders Carlsson108229a2008-12-06 20:33:04 +00003668 QualType T = GetTypeForDeclarator(D, S);
3669 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3670 bool InvalidDecl = false;
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003671
3672 if (BitWidth) {
Steve Naroff466a8f22009-02-20 17:57:11 +00003673 // 6.7.2.1p3, 6.7.2.1p4
3674 if (VerifyBitField(Loc, II, T, BitWidth))
3675 InvalidDecl = true;
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003676 } else {
3677 // Not a bitfield.
3678
3679 // validate II.
3680
3681 }
3682
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003683 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3684 // than a variably modified type.
3685 if (T->isVariablyModifiedType()) {
Anders Carlsson68adbd12008-12-07 00:20:55 +00003686 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003687 InvalidDecl = true;
3688 }
3689
Ted Kremenek173dd312008-07-23 18:04:17 +00003690 // Get the visibility (access control) for this ivar.
3691 ObjCIvarDecl::AccessControl ac =
3692 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3693 : ObjCIvarDecl::None;
3694
3695 // Construct the decl.
Argiris Kirtzidis96e79bf2009-02-17 20:20:37 +00003696 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, CurContext, Loc, II, T,ac,
Steve Naroffd3354222008-07-16 18:22:22 +00003697 (Expr *)BitfieldWidth);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003698
Douglas Gregordb568cf2009-01-08 20:45:30 +00003699 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00003700 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003701 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3702 && !isa<TagDecl>(PrevDecl)) {
3703 Diag(Loc, diag::err_duplicate_member) << II;
3704 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3705 NewID->setInvalidDecl();
3706 }
3707 }
3708
Ted Kremenek173dd312008-07-23 18:04:17 +00003709 // Process attributes attached to the ivar.
Chris Lattner9b384ca2008-06-29 00:02:00 +00003710 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003711
3712 if (D.getInvalidType() || InvalidDecl)
3713 NewID->setInvalidDecl();
Ted Kremenek173dd312008-07-23 18:04:17 +00003714
Douglas Gregordb568cf2009-01-08 20:45:30 +00003715 if (II) {
3716 // FIXME: When interfaces are DeclContexts, we'll need to add
3717 // these to the interface.
3718 S->AddDecl(NewID);
3719 IdResolver.AddDecl(NewID);
3720 }
3721
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003722 return NewID;
3723}
3724
Fariborz Jahanian0c5affb2007-09-29 00:54:24 +00003725void Sema::ActOnFields(Scope* S,
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003726 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff0acc9c92007-09-15 18:49:24 +00003727 DeclTy **Fields, unsigned NumFields,
Daniel Dunbarf3944442008-10-03 02:03:53 +00003728 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar175e6392008-10-03 17:33:35 +00003729 AttributeList *Attr) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003730 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3731 assert(EnclosingDecl && "missing record or interface decl");
Chris Lattner9513cfd2009-02-23 22:00:08 +00003732
3733 // If the decl this is being inserted into is invalid, then it may be a
3734 // redeclaration or some other bogus case. Don't try to add fields to it.
3735 if (EnclosingDecl->isInvalidDecl()) {
3736 // FIXME: Deallocate fields?
3737 return;
3738 }
3739
Steve Naroff9bb759f2007-09-14 22:20:54 +00003740
Chris Lattner4b009652007-07-25 00:24:17 +00003741 // Verify that all the fields are okay.
3742 unsigned NumNamedMembers = 0;
3743 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregorc7f01612009-01-07 19:46:03 +00003744
Chris Lattner9513cfd2009-02-23 22:00:08 +00003745 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00003746 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003747 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3748 assert(FD && "missing field decl");
3749
Chris Lattner4b009652007-07-25 00:24:17 +00003750 // Get the type for the field.
Chris Lattner36be3d82007-07-31 21:33:24 +00003751 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregorc7f01612009-01-07 19:46:03 +00003752
Douglas Gregordb568cf2009-01-08 20:45:30 +00003753 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregorc7f01612009-01-07 19:46:03 +00003754 // Remember all fields written by the user.
3755 RecFields.push_back(FD);
3756 }
Steve Naroffffeaa552007-09-14 23:09:53 +00003757
Chris Lattner4b009652007-07-25 00:24:17 +00003758 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner36be3d82007-07-31 21:33:24 +00003759 if (FDTy->isFunctionType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003760 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattner271d4c22008-11-24 05:29:24 +00003761 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003762 FD->setInvalidDecl();
3763 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003764 continue;
3765 }
Chris Lattner4b009652007-07-25 00:24:17 +00003766 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
3767 if (FDTy->isIncompleteType()) {
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003768 if (!Record) { // Incomplete ivar type is always an error.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003769 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3770 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003771 FD->setInvalidDecl();
3772 EnclosingDecl->setInvalidDecl();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003773 continue;
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003774 }
Chris Lattner4b009652007-07-25 00:24:17 +00003775 if (i != NumFields-1 || // ... that the last member ...
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003776 !Record->isStruct() || // ... of a structure ...
Chris Lattner36be3d82007-07-31 21:33:24 +00003777 !FDTy->isArrayType()) { //... may have incomplete array type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003778 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3779 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003780 FD->setInvalidDecl();
3781 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003782 continue;
3783 }
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003784 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003785 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003786 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003787 FD->setInvalidDecl();
3788 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003789 continue;
3790 }
Chris Lattner4b009652007-07-25 00:24:17 +00003791 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003792 if (Record)
3793 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003794 }
Chris Lattner4b009652007-07-25 00:24:17 +00003795 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3796 /// field of another structure or the element of an array.
Chris Lattner36be3d82007-07-31 21:33:24 +00003797 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003798 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3799 // If this is a member of a union, then entire union becomes "flexible".
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003800 if (Record && Record->isUnion()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003801 Record->setHasFlexibleArrayMember(true);
3802 } else {
3803 // If this is a struct/class and this is not the last element, reject
3804 // it. Note that GCC supports variable sized arrays in the middle of
3805 // structures.
3806 if (i != NumFields-1) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003807 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003808 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003809 FD->setInvalidDecl();
3810 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003811 continue;
3812 }
Chris Lattner4b009652007-07-25 00:24:17 +00003813 // We support flexible arrays at the end of structs in other structs
3814 // as an extension.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003815 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003816 << FD->getDeclName();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003817 if (Record)
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003818 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003819 }
3820 }
3821 }
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003822 /// A field cannot be an Objective-c object
Ted Kremenek42730c52008-01-07 19:49:32 +00003823 if (FDTy->isObjCInterfaceType()) {
Steve Naroffa442ad92009-02-20 22:59:16 +00003824 Diag(FD->getLocation(), diag::err_statically_allocated_object);
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003825 FD->setInvalidDecl();
3826 EnclosingDecl->setInvalidDecl();
3827 continue;
3828 }
Chris Lattner4b009652007-07-25 00:24:17 +00003829 // Keep track of the number of named members.
Douglas Gregordb568cf2009-01-08 20:45:30 +00003830 if (FD->getIdentifier())
Chris Lattner4b009652007-07-25 00:24:17 +00003831 ++NumNamedMembers;
Chris Lattner4b009652007-07-25 00:24:17 +00003832 }
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003833
Chris Lattner4b009652007-07-25 00:24:17 +00003834 // Okay, we successfully defined 'Record'.
Chris Lattner33aad6e2008-02-06 00:51:33 +00003835 if (Record) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003836 Record->completeDefinition(Context);
Chris Lattner33aad6e2008-02-06 00:51:33 +00003837 } else {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003838 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003839 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattnerdf6133b2009-02-20 21:35:13 +00003840 ID->setIVarList(ClsFields, RecFields.size(), Context);
3841 ID->setLocEnd(RBrac);
3842
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003843 // Must enforce the rule that ivars in the base classes may not be
3844 // duplicates.
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003845 if (ID->getSuperClass()) {
3846 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3847 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3848 ObjCIvarDecl* Ivar = (*IVI);
3849 IdentifierInfo *II = Ivar->getIdentifier();
Fariborz Jahanianbeae78e2009-02-16 19:35:27 +00003850 ObjCIvarDecl* prevIvar = ID->getSuperClass()->lookupInstanceVariable(II);
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003851 if (prevIvar) {
3852 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003853 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003854 }
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003855 }
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003856 }
Chris Lattner9513cfd2009-02-23 22:00:08 +00003857 } else if (ObjCImplementationDecl *IMPDecl =
3858 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremenek42730c52008-01-07 19:49:32 +00003859 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
Chris Lattnerdf6133b2009-02-20 21:35:13 +00003860 IMPDecl->setIVarList(ClsFields, RecFields.size(), Context);
Fariborz Jahanian87093732007-10-31 18:48:14 +00003861 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand34caf92007-09-26 18:27:25 +00003862 }
Fariborz Jahanianebcc9b62007-09-14 21:08:27 +00003863 }
Daniel Dunbar175e6392008-10-03 17:33:35 +00003864
3865 if (Attr)
3866 ProcessDeclAttributeList(Record, Attr);
Chris Lattner4b009652007-07-25 00:24:17 +00003867}
3868
Steve Naroff0acc9c92007-09-15 18:49:24 +00003869Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Chris Lattner4b009652007-07-25 00:24:17 +00003870 DeclTy *lastEnumConst,
3871 SourceLocation IdLoc, IdentifierInfo *Id,
3872 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattnereee57c02008-04-04 06:12:32 +00003873 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003874 EnumConstantDecl *LastEnumConst =
3875 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3876 Expr *Val = static_cast<Expr*>(val);
3877
Chris Lattnera7549902007-08-26 06:24:45 +00003878 // The scope passed in may not be a decl scope. Zip up the scope tree until
3879 // we find one that is.
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003880 S = getNonFieldDeclScope(S);
Chris Lattnera7549902007-08-26 06:24:45 +00003881
Chris Lattner4b009652007-07-25 00:24:17 +00003882 // Verify that there isn't already something declared with this name in this
3883 // scope.
Douglas Gregor09be81b2009-02-04 17:27:36 +00003884 NamedDecl *PrevDecl = LookupName(S, Id, LookupOrdinaryName);
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003885 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003886 // Maybe we will complain about the shadowed template parameter.
3887 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3888 // Just pretend that we didn't see the previous declaration.
3889 PrevDecl = 0;
3890 }
3891
3892 if (PrevDecl) {
Argiris Kirtzidis4f071ec2008-07-16 21:01:53 +00003893 // When in C++, we may get a TagDecl with the same name; in this case the
3894 // enum constant will 'hide' the tag.
3895 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3896 "Received TagDecl when not in C++!");
Argiris Kirtzidis90842b62008-09-09 21:18:04 +00003897 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003898 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner65cae292008-11-19 08:23:25 +00003899 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Chris Lattner4b009652007-07-25 00:24:17 +00003900 else
Chris Lattner65cae292008-11-19 08:23:25 +00003901 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner1336cab2008-11-23 23:12:31 +00003902 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Ted Kremenek0c97e042009-02-07 01:47:29 +00003903 Val->Destroy(Context);
Chris Lattner4b009652007-07-25 00:24:17 +00003904 return 0;
3905 }
3906 }
3907
3908 llvm::APSInt EnumVal(32);
3909 QualType EltTy;
3910 if (Val) {
Chris Lattner2cda8792007-08-27 21:16:18 +00003911 // Make sure to promote the operand type to int.
3912 UsualUnaryConversions(Val);
3913
Chris Lattner4b009652007-07-25 00:24:17 +00003914 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3915 SourceLocation ExpLoc;
Anders Carlsson5374c6b2008-12-05 16:33:57 +00003916 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00003917 Val->Destroy(Context);
Chris Lattnere7f53a42007-08-27 17:37:24 +00003918 Val = 0; // Just forget about it.
Chris Lattner7cea0552007-08-29 16:03:41 +00003919 } else {
3920 EltTy = Val->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00003921 }
Chris Lattnere7f53a42007-08-27 17:37:24 +00003922 }
3923
3924 if (!Val) {
3925 if (LastEnumConst) {
3926 // Assign the last value + 1.
3927 EnumVal = LastEnumConst->getInitVal();
3928 ++EnumVal;
Chris Lattner2cda8792007-08-27 21:16:18 +00003929
3930 // Check for overflow on increment.
3931 if (EnumVal < LastEnumConst->getInitVal())
3932 Diag(IdLoc, diag::warn_enum_value_overflow);
3933
Chris Lattnere7f53a42007-08-27 17:37:24 +00003934 EltTy = LastEnumConst->getType();
3935 } else {
3936 // First value, set to zero.
3937 EltTy = Context.IntTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003938 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnere7f53a42007-08-27 17:37:24 +00003939 }
Chris Lattner4b009652007-07-25 00:24:17 +00003940 }
3941
Chris Lattnere4650482008-03-15 06:12:44 +00003942 EnumConstantDecl *New =
Chris Lattnereee57c02008-04-04 06:12:32 +00003943 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003944 Val, EnumVal);
Chris Lattner4b009652007-07-25 00:24:17 +00003945
3946 // Register this decl in the current scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00003947 PushOnScopeChains(New, S);
Douglas Gregor0c3ab042008-12-17 02:04:30 +00003948
Chris Lattner4b009652007-07-25 00:24:17 +00003949 return New;
3950}
3951
Steve Naroffb0726b82008-08-07 14:08:16 +00003952// FIXME: For consistency with ActOnFields(), we should have the parser
3953// pass in the source location for the left/right braces.
Steve Naroff0acc9c92007-09-15 18:49:24 +00003954void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Chris Lattner4b009652007-07-25 00:24:17 +00003955 DeclTy **Elements, unsigned NumElements) {
3956 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregord8028382009-01-05 19:45:36 +00003957 QualType EnumType = Context.getTypeDeclType(Enum);
Chris Lattner4b009652007-07-25 00:24:17 +00003958
Chris Lattner435c3fd2007-08-28 05:10:31 +00003959 // TODO: If the result value doesn't fit in an int, it must be a long or long
3960 // long value. ISO C does not support this, but GCC does as an extension,
3961 // emit a warning.
Chris Lattner8cd0e932008-03-05 18:54:05 +00003962 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattner435c3fd2007-08-28 05:10:31 +00003963
Chris Lattner206754a2007-08-28 06:15:15 +00003964 // Verify that all the values are okay, compute the size of the values, and
3965 // reverse the list.
3966 unsigned NumNegativeBits = 0;
3967 unsigned NumPositiveBits = 0;
3968
3969 // Keep track of whether all elements have type int.
3970 bool AllElementsInt = true;
3971
Chris Lattner4b009652007-07-25 00:24:17 +00003972 for (unsigned i = 0; i != NumElements; ++i) {
3973 EnumConstantDecl *ECD =
3974 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3975 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003976
3977 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003978 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003979 assert(InitVal.getBitWidth() >= IntWidth &&
3980 "Should have promoted value to int");
Chris Lattnercb33ae12007-08-28 05:27:00 +00003981 if (InitVal.getBitWidth() > IntWidth) {
3982 llvm::APSInt V(InitVal);
3983 V.trunc(IntWidth);
3984 V.extend(InitVal.getBitWidth());
3985 if (V != InitVal)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003986 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3987 << InitVal.toString(10);
Chris Lattnercb33ae12007-08-28 05:27:00 +00003988 }
Chris Lattner206754a2007-08-28 06:15:15 +00003989
3990 // Keep track of the size of positive and negative values.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003991 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattneraff63f02008-01-14 21:47:29 +00003992 NumPositiveBits = std::max(NumPositiveBits,
3993 (unsigned)InitVal.getActiveBits());
Chris Lattner206754a2007-08-28 06:15:15 +00003994 else
Chris Lattneraff63f02008-01-14 21:47:29 +00003995 NumNegativeBits = std::max(NumNegativeBits,
3996 (unsigned)InitVal.getMinSignedBits());
Chris Lattner4b009652007-07-25 00:24:17 +00003997
Chris Lattner206754a2007-08-28 06:15:15 +00003998 // Keep track of whether every enum element has type int (very commmon).
3999 if (AllElementsInt)
4000 AllElementsInt = ECD->getType() == Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00004001 }
4002
Chris Lattner206754a2007-08-28 06:15:15 +00004003 // Figure out the type that should be used for this enum.
4004 // FIXME: Support attribute(packed) on enums and -fshort-enums.
4005 QualType BestType;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004006 unsigned BestWidth;
Chris Lattner206754a2007-08-28 06:15:15 +00004007
4008 if (NumNegativeBits) {
4009 // If there is a negative value, figure out the smallest integer type (of
4010 // int/long/longlong) that fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004011 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00004012 BestType = Context.IntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004013 BestWidth = IntWidth;
4014 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00004015 BestWidth = Context.Target.getLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00004016
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004017 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00004018 BestType = Context.LongTy;
4019 else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00004020 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00004021
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004022 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00004023 Diag(Enum->getLocation(), diag::warn_enum_too_large);
4024 BestType = Context.LongLongTy;
4025 }
4026 }
4027 } else {
4028 // If there is no negative value, figure out which of uint, ulong, ulonglong
4029 // fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004030 if (NumPositiveBits <= IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00004031 BestType = Context.UnsignedIntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004032 BestWidth = IntWidth;
4033 } else if (NumPositiveBits <=
Chris Lattner8cd0e932008-03-05 18:54:05 +00004034 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattner206754a2007-08-28 06:15:15 +00004035 BestType = Context.UnsignedLongTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00004036 } else {
4037 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004038 assert(NumPositiveBits <= BestWidth &&
Chris Lattner206754a2007-08-28 06:15:15 +00004039 "How could an initializer get larger than ULL?");
4040 BestType = Context.UnsignedLongLongTy;
4041 }
4042 }
4043
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004044 // Loop over all of the enumerator constants, changing their types to match
4045 // the type of the enum if needed.
4046 for (unsigned i = 0; i != NumElements; ++i) {
4047 EnumConstantDecl *ECD =
4048 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
4049 if (!ECD) continue; // Already issued a diagnostic.
4050
4051 // Standard C says the enumerators have int type, but we allow, as an
4052 // extension, the enumerators to be larger than int size. If each
4053 // enumerator value fits in an int, type it as an int, otherwise type it the
4054 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
4055 // that X has type 'int', not 'unsigned'.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00004056 if (ECD->getType() == Context.IntTy) {
4057 // Make sure the init value is signed.
4058 llvm::APSInt IV = ECD->getInitVal();
4059 IV.setIsSigned(true);
4060 ECD->setInitVal(IV);
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00004061
4062 if (getLangOptions().CPlusPlus)
4063 // C++ [dcl.enum]p4: Following the closing brace of an
4064 // enum-specifier, each enumerator has the type of its
4065 // enumeration.
4066 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004067 continue; // Already int type.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00004068 }
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004069
4070 // Determine whether the value fits into an int.
4071 llvm::APSInt InitVal = ECD->getInitVal();
4072 bool FitsInInt;
4073 if (InitVal.isUnsigned() || !InitVal.isNegative())
4074 FitsInInt = InitVal.getActiveBits() < IntWidth;
4075 else
4076 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
4077
4078 // If it fits into an integer type, force it. Otherwise force it to match
4079 // the enum decl type.
4080 QualType NewTy;
4081 unsigned NewWidth;
4082 bool NewSign;
4083 if (FitsInInt) {
4084 NewTy = Context.IntTy;
4085 NewWidth = IntWidth;
4086 NewSign = true;
4087 } else if (ECD->getType() == BestType) {
4088 // Already the right type!
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00004089 if (getLangOptions().CPlusPlus)
4090 // C++ [dcl.enum]p4: Following the closing brace of an
4091 // enum-specifier, each enumerator has the type of its
4092 // enumeration.
4093 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004094 continue;
4095 } else {
4096 NewTy = BestType;
4097 NewWidth = BestWidth;
4098 NewSign = BestType->isSignedIntegerType();
4099 }
4100
4101 // Adjust the APSInt value.
4102 InitVal.extOrTrunc(NewWidth);
4103 InitVal.setIsSigned(NewSign);
4104 ECD->setInitVal(InitVal);
4105
4106 // Adjust the Expr initializer and type.
Chris Lattner8c6dc7a2009-01-15 19:19:42 +00004107 if (ECD->getInitExpr())
Ted Kremenek0c97e042009-02-07 01:47:29 +00004108 ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy, ECD->getInitExpr(),
4109 /*isLvalue=*/false));
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00004110 if (getLangOptions().CPlusPlus)
4111 // C++ [dcl.enum]p4: Following the closing brace of an
4112 // enum-specifier, each enumerator has the type of its
4113 // enumeration.
4114 ECD->setType(EnumType);
4115 else
4116 ECD->setType(NewTy);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00004117 }
Chris Lattner206754a2007-08-28 06:15:15 +00004118
Douglas Gregor8acb7272008-12-11 16:49:14 +00004119 Enum->completeDefinition(Context, BestType);
Chris Lattner4b009652007-07-25 00:24:17 +00004120}
4121
Anders Carlsson4f7f4412008-02-08 00:33:21 +00004122Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00004123 ExprArg expr) {
4124 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
4125
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00004126 return FileScopeAsmDecl::Create(Context, CurContext, Loc, AsmString);
Anders Carlsson4f7f4412008-02-08 00:33:21 +00004127}
4128