blob: 7b8373ca390c0a9a45956a7a2089bcb8ee87f0b8 [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)) {
67 // If this typename is deprecated, emit a warning.
68 DiagnoseUseOfDeprecatedDecl(IIDecl, NameLoc);
69
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)) {
74 // If this typename is deprecated, emit a warning.
75 DiagnoseUseOfDeprecatedDecl(IIDecl, NameLoc);
76
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
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000108 if (Decl *D = dyn_cast<Decl>(DC))
109 return D->getLexicalDeclContext();
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000110
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +0000111 return DC->getLexicalParent();
Argiris Kirtzidis38f16712008-07-01 10:37:29 +0000112}
113
Douglas Gregor8acb7272008-12-11 16:49:14 +0000114void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000115 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xu2c9b8102008-12-08 07:14:51 +0000116 "The next DeclContext should be lexically contained in the current one.");
Chris Lattneref87a202008-04-22 18:39:57 +0000117 CurContext = DC;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000118 S->setEntity(DC);
Chris Lattnereee57c02008-04-04 06:12:32 +0000119}
120
Chris Lattnerf3874bc2008-04-06 04:47:34 +0000121void Sema::PopDeclContext() {
122 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor8acb7272008-12-11 16:49:14 +0000123
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000124 CurContext = getContainingDC(CurContext);
Chris Lattnereee57c02008-04-04 06:12:32 +0000125}
126
Douglas Gregorfcb19192009-02-11 23:02:49 +0000127/// \brief Determine whether we allow overloading of the function
128/// PrevDecl with another declaration.
129///
130/// This routine determines whether overloading is possible, not
131/// whether some new function is actually an overload. It will return
132/// true in C++ (where we can always provide overloads) or, as an
133/// extension, in C when the previous function is already an
134/// overloaded function declaration or has the "overloadable"
135/// attribute.
136static bool AllowOverloadingOfFunction(Decl *PrevDecl, ASTContext &Context) {
137 if (Context.getLangOptions().CPlusPlus)
138 return true;
139
140 if (isa<OverloadedFunctionDecl>(PrevDecl))
141 return true;
142
143 return PrevDecl->getAttr<OverloadableAttr>() != 0;
144}
145
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000146/// Add this decl to the scope shadowed decl chains.
147void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Douglas Gregord8028382009-01-05 19:45:36 +0000148 // Move up the scope chain until we find the nearest enclosing
149 // non-transparent context. The declaration will be introduced into this
150 // scope.
151 while (S->getEntity() &&
152 ((DeclContext *)S->getEntity())->isTransparentContext())
153 S = S->getParent();
154
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000155 S->AddDecl(D);
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000156
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000157 // Add scoped declarations into their context, so that they can be
158 // found later. Declarations without a context won't be inserted
159 // into any context.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000160 CurContext->addDecl(D);
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000161
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000162 // C++ [basic.scope]p4:
163 // -- exactly one declaration shall declare a class name or
164 // enumeration name that is not a typedef name and the other
165 // declarations shall all refer to the same object or
166 // enumerator, or all refer to functions and function templates;
167 // in this case the class name or enumeration name is hidden.
168 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
169 // We are pushing the name of a tag (enum or class).
Douglas Gregor3a423132009-01-07 16:34:42 +0000170 if (CurContext->getLookupContext()
171 == TD->getDeclContext()->getLookupContext()) {
Douglas Gregor8acb7272008-12-11 16:49:14 +0000172 // We're pushing the tag into the current context, which might
173 // require some reshuffling in the identifier resolver.
174 IdentifierResolver::iterator
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000175 I = IdResolver.begin(TD->getDeclName()),
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000176 IEnd = IdResolver.end();
177 if (I != IEnd && isDeclInScope(*I, CurContext, S)) {
178 NamedDecl *PrevDecl = *I;
179 for (; I != IEnd && isDeclInScope(*I, CurContext, S);
180 PrevDecl = *I, ++I) {
181 if (TD->declarationReplaces(*I)) {
182 // This is a redeclaration. Remove it from the chain and
183 // break out, so that we'll add in the shadowed
184 // declaration.
185 S->RemoveDecl(*I);
186 if (PrevDecl == *I) {
187 IdResolver.RemoveDecl(*I);
188 IdResolver.AddDecl(TD);
189 return;
190 } else {
191 IdResolver.RemoveDecl(*I);
192 break;
193 }
194 }
195 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000196
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000197 // There is already a declaration with the same name in the same
198 // scope, which is not a tag declaration. It must be found
199 // before we find the new declaration, so insert the new
200 // declaration at the end of the chain.
201 IdResolver.AddShadowedDecl(TD, PrevDecl);
202
203 return;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000204 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000205 }
Douglas Gregorfcb19192009-02-11 23:02:49 +0000206 } else if (isa<FunctionDecl>(D) &&
207 AllowOverloadingOfFunction(D, Context)) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000208 // We are pushing the name of a function, which might be an
209 // overloaded name.
Douglas Gregor8acb7272008-12-11 16:49:14 +0000210 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000211 IdentifierResolver::iterator Redecl
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000212 = std::find_if(IdResolver.begin(FD->getDeclName()),
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000213 IdResolver.end(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000214 std::bind1st(std::mem_fun(&NamedDecl::declarationReplaces),
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000215 FD));
216 if (Redecl != IdResolver.end()) {
217 // There is already a declaration of a function on our
218 // IdResolver chain. Replace it with this declaration.
219 S->RemoveDecl(*Redecl);
220 IdResolver.RemoveDecl(*Redecl);
Douglas Gregord2baafd2008-10-21 16:13:35 +0000221 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000222 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000223
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000224 IdResolver.AddDecl(D);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000225}
226
Steve Naroff9637a9b2007-10-09 22:01:59 +0000227void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattnera7549902007-08-26 06:24:45 +0000228 if (S->decl_empty()) return;
Douglas Gregordd861062008-12-05 18:15:24 +0000229 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
230 "Scope shouldn't contain decls!");
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000231
Chris Lattner4b009652007-07-25 00:24:17 +0000232 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
233 I != E; ++I) {
Steve Naroffd21bc0d2007-09-13 18:10:37 +0000234 Decl *TmpD = static_cast<Decl*>(*I);
235 assert(TmpD && "This decl didn't get pushed??");
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000236
Douglas Gregor8acb7272008-12-11 16:49:14 +0000237 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
238 NamedDecl *D = cast<NamedDecl>(TmpD);
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000239
Douglas Gregor8acb7272008-12-11 16:49:14 +0000240 if (!D->getDeclName()) continue;
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000241
Douglas Gregor8acb7272008-12-11 16:49:14 +0000242 // Remove this name from our lexical scope.
243 IdResolver.RemoveDecl(D);
Chris Lattner4b009652007-07-25 00:24:17 +0000244 }
245}
246
Steve Naroffe57c21a2008-04-01 23:04:06 +0000247/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
248/// return 0 if one not found.
Steve Naroffe57c21a2008-04-01 23:04:06 +0000249ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff15208162008-04-02 18:30:49 +0000250 // The third "scope" argument is 0 since we aren't enabling lazy built-in
251 // creation from this context.
Douglas Gregor09be81b2009-02-04 17:27:36 +0000252 NamedDecl *IDecl = LookupName(TUScope, Id, LookupOrdinaryName);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000253
Steve Naroff6384a012008-04-02 14:35:35 +0000254 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000255}
256
Douglas Gregor5eca99e2009-01-12 18:45:55 +0000257/// getNonFieldDeclScope - Retrieves the innermost scope, starting
258/// from S, where a non-field would be declared. This routine copes
259/// with the difference between C and C++ scoping rules in structs and
260/// unions. For example, the following code is well-formed in C but
261/// ill-formed in C++:
262/// @code
263/// struct S6 {
264/// enum { BAR } e;
265/// };
266///
267/// void test_S6() {
268/// struct S6 a;
269/// a.e = BAR;
270/// }
271/// @endcode
272/// For the declaration of BAR, this routine will return a different
273/// scope. The scope S will be the scope of the unnamed enumeration
274/// within S6. In C++, this routine will return the scope associated
275/// with S6, because the enumeration's scope is a transparent
276/// context but structures can contain non-field names. In C, this
277/// routine will return the translation unit scope, since the
278/// enumeration's scope is a transparent context and structures cannot
279/// contain non-field names.
280Scope *Sema::getNonFieldDeclScope(Scope *S) {
281 while (((S->getFlags() & Scope::DeclScope) == 0) ||
282 (S->getEntity() &&
283 ((DeclContext *)S->getEntity())->isTransparentContext()) ||
284 (S->isClassScope() && !getLangOptions().CPlusPlus))
285 S = S->getParent();
286 return S;
287}
288
Chris Lattnera9c87f22008-05-05 22:18:14 +0000289void Sema::InitBuiltinVaListType() {
Anders Carlsson36760332007-10-15 20:28:48 +0000290 if (!Context.getBuiltinVaListType().isNull())
291 return;
292
293 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Douglas Gregor09be81b2009-02-04 17:27:36 +0000294 NamedDecl *VaDecl = LookupName(TUScope, VaIdent, LookupOrdinaryName);
Steve Naroffbc8c52e2007-10-18 22:17:45 +0000295 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson36760332007-10-15 20:28:48 +0000296 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
297}
298
Douglas Gregor411889e2009-02-13 23:20:09 +0000299/// LazilyCreateBuiltin - The specified Builtin-ID was first used at
300/// file scope. lazily create a decl for it. ForRedeclaration is true
301/// if we're creating this built-in in anticipation of redeclaring the
302/// built-in.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000303NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
Douglas Gregor411889e2009-02-13 23:20:09 +0000304 Scope *S, bool ForRedeclaration,
305 SourceLocation Loc) {
Chris Lattner4b009652007-07-25 00:24:17 +0000306 Builtin::ID BID = (Builtin::ID)bid;
307
Chris Lattnerb23469f2008-09-28 05:54:29 +0000308 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson36760332007-10-15 20:28:48 +0000309 InitBuiltinVaListType();
Douglas Gregor411889e2009-02-13 23:20:09 +0000310
Douglas Gregor1fa246d2009-02-14 01:52:53 +0000311 Builtin::Context::GetBuiltinTypeError Error;
312 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context, Error);
313 switch (Error) {
314 case Builtin::Context::GE_None:
315 // Okay
316 break;
317
318 case Builtin::Context::GE_Missing_FILE:
319 if (ForRedeclaration)
320 Diag(Loc, diag::err_implicit_decl_requires_stdio)
321 << Context.BuiltinInfo.GetName(BID);
322 return 0;
323 }
Douglas Gregor411889e2009-02-13 23:20:09 +0000324
325 if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
326 Diag(Loc, diag::ext_implicit_lib_function_decl)
327 << Context.BuiltinInfo.GetName(BID)
328 << R;
Douglas Gregor2e8a7aa2009-02-16 21:58:21 +0000329 if (Context.BuiltinInfo.getHeaderName(BID) &&
Douglas Gregor411889e2009-02-13 23:20:09 +0000330 Diags.getDiagnosticMapping(diag::ext_implicit_lib_function_decl)
331 != diag::MAP_IGNORE)
332 Diag(Loc, diag::note_please_include_header)
333 << Context.BuiltinInfo.getHeaderName(BID)
334 << Context.BuiltinInfo.GetName(BID);
335 }
336
Argiris Kirtzidis9d0d8bf2008-04-17 14:47:13 +0000337 FunctionDecl *New = FunctionDecl::Create(Context,
338 Context.getTranslationUnitDecl(),
Douglas Gregor411889e2009-02-13 23:20:09 +0000339 Loc, II, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000340 FunctionDecl::Extern, false);
Douglas Gregor411889e2009-02-13 23:20:09 +0000341 New->setImplicit();
342
Chris Lattnera9c87f22008-05-05 22:18:14 +0000343 // Create Decl objects for each parameter, adding them to the
344 // FunctionDecl.
345 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
346 llvm::SmallVector<ParmVarDecl*, 16> Params;
347 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
348 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000349 FT->getArgType(i), VarDecl::None, 0));
Ted Kremenek8494c962009-01-14 00:42:25 +0000350 New->setParams(Context, &Params[0], Params.size());
Chris Lattnera9c87f22008-05-05 22:18:14 +0000351 }
352
Douglas Gregorb5af7382009-02-14 18:57:46 +0000353 AddKnownFunctionAttributes(New);
Chris Lattnera9c87f22008-05-05 22:18:14 +0000354
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000355 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregord394a272009-01-09 18:51:29 +0000356 // FIXME: This is hideous. We need to teach PushOnScopeChains to
357 // relate Scopes to DeclContexts, and probably eliminate CurContext
358 // entirely, but we're not there yet.
359 DeclContext *SavedContext = CurContext;
360 CurContext = Context.getTranslationUnitDecl();
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000361 PushOnScopeChains(New, TUScope);
Douglas Gregord394a272009-01-09 18:51:29 +0000362 CurContext = SavedContext;
Chris Lattner4b009652007-07-25 00:24:17 +0000363 return New;
364}
365
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000366/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
367/// everything from the standard library is defined.
368NamespaceDecl *Sema::GetStdNamespace() {
369 if (!StdNamespace) {
Chris Lattnerf0939602008-11-20 05:45:14 +0000370 IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000371 DeclContext *Global = Context.getTranslationUnitDecl();
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000372 Decl *Std = LookupQualifiedName(Global, StdIdent, LookupNamespaceName);
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000373 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
374 }
375 return StdNamespace;
376}
377
Douglas Gregor083c23e2009-02-16 17:45:42 +0000378/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the
379/// same name and scope as a previous declaration 'Old'. Figure out
380/// how to resolve this situation, merging decls or emitting
381/// diagnostics as appropriate. Returns true if there was an error,
382/// false otherwise.
Chris Lattner4b009652007-07-25 00:24:17 +0000383///
Douglas Gregor083c23e2009-02-16 17:45:42 +0000384bool Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Fariborz Jahaniande939672009-01-16 19:58:32 +0000385 bool objc_types = false;
Steve Naroff453a8782008-09-09 14:32:20 +0000386 // Allow multiple definitions for ObjC built-in typedefs.
387 // FIXME: Verify the underlying types are equivalent!
388 if (getLangOptions().ObjC1) {
Chris Lattner6d16b052008-11-20 05:41:43 +0000389 const IdentifierInfo *TypeID = New->getIdentifier();
390 switch (TypeID->getLength()) {
391 default: break;
392 case 2:
393 if (!TypeID->isStr("id"))
394 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000395 Context.setObjCIdType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000396 objc_types = true;
397 break;
Chris Lattner6d16b052008-11-20 05:41:43 +0000398 case 5:
399 if (!TypeID->isStr("Class"))
400 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000401 Context.setObjCClassType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000402 objc_types = true;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000403 return false;
Chris Lattner6d16b052008-11-20 05:41:43 +0000404 case 3:
405 if (!TypeID->isStr("SEL"))
406 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000407 Context.setObjCSelType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000408 objc_types = true;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000409 return false;
Chris Lattner6d16b052008-11-20 05:41:43 +0000410 case 8:
411 if (!TypeID->isStr("Protocol"))
412 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000413 Context.setObjCProtoType(New->getUnderlyingType());
Fariborz Jahaniande939672009-01-16 19:58:32 +0000414 objc_types = true;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000415 return false;
Steve Naroff453a8782008-09-09 14:32:20 +0000416 }
417 // Fall through - the typedef name was not a builtin type.
418 }
Douglas Gregorb31f2942009-01-28 17:15:10 +0000419 // Verify the old decl was also a type.
420 TypeDecl *Old = dyn_cast<TypeDecl>(OldD);
Chris Lattner4b009652007-07-25 00:24:17 +0000421 if (!Old) {
Douglas Gregorb31f2942009-01-28 17:15:10 +0000422 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000423 << New->getDeclName();
Fariborz Jahaniande939672009-01-16 19:58:32 +0000424 if (!objc_types)
425 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000426 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000427 }
Douglas Gregorb31f2942009-01-28 17:15:10 +0000428
429 // Determine the "old" type we'll use for checking and diagnostics.
430 QualType OldType;
431 if (TypedefDecl *OldTypedef = dyn_cast<TypedefDecl>(Old))
432 OldType = OldTypedef->getUnderlyingType();
433 else
434 OldType = Context.getTypeDeclType(Old);
435
Chris Lattnerbef8d622008-07-25 18:44:27 +0000436 // If the typedef types are not identical, reject them in all languages and
437 // with any extensions enabled.
Douglas Gregorb31f2942009-01-28 17:15:10 +0000438
439 if (OldType != New->getUnderlyingType() &&
440 Context.getCanonicalType(OldType) !=
Chris Lattnerbef8d622008-07-25 18:44:27 +0000441 Context.getCanonicalType(New->getUnderlyingType())) {
Chris Lattner8d756812008-11-20 06:13:02 +0000442 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
Douglas Gregorb31f2942009-01-28 17:15:10 +0000443 << New->getUnderlyingType() << OldType;
Fariborz Jahaniande939672009-01-16 19:58:32 +0000444 if (!objc_types)
445 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000446 return true;
Chris Lattnerbef8d622008-07-25 18:44:27 +0000447 }
Douglas Gregor083c23e2009-02-16 17:45:42 +0000448 if (objc_types) return false;
449 if (getLangOptions().Microsoft) return false;
Eli Friedman324d5032008-06-11 06:20:39 +0000450
Douglas Gregor49ba1b72008-11-21 16:29:06 +0000451 // C++ [dcl.typedef]p2:
452 // In a given non-class scope, a typedef specifier can be used to
453 // redefine the name of any type declared in that scope to refer
454 // to the type to which it already refers.
455 if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext))
Douglas Gregor083c23e2009-02-16 17:45:42 +0000456 return false;
Douglas Gregor49ba1b72008-11-21 16:29:06 +0000457
458 // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
Steve Naroffa9eae582008-01-30 23:46:05 +0000459 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
460 // *either* declaration is in a system header. The code below implements
461 // this adhoc compatibility rule. FIXME: The following code will not
462 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar4dbd8572008-09-12 18:10:20 +0000463 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
464 SourceManager &SrcMgr = Context.getSourceManager();
465 if (SrcMgr.isInSystemHeader(Old->getLocation()))
Douglas Gregor083c23e2009-02-16 17:45:42 +0000466 return false;
Daniel Dunbar4dbd8572008-09-12 18:10:20 +0000467 if (SrcMgr.isInSystemHeader(New->getLocation()))
Douglas Gregor083c23e2009-02-16 17:45:42 +0000468 return false;
Daniel Dunbar4dbd8572008-09-12 18:10:20 +0000469 }
Eli Friedman324d5032008-06-11 06:20:39 +0000470
Chris Lattnerb1753422008-11-23 21:45:46 +0000471 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000472 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000473 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000474}
475
Chris Lattner6953a072008-06-26 18:38:35 +0000476/// DeclhasAttr - returns true if decl Declaration already has the target
477/// attribute.
Chris Lattner402b3372008-03-03 03:28:21 +0000478static bool DeclHasAttr(const Decl *decl, const Attr *target) {
479 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
480 if (attr->getKind() == target->getKind())
481 return true;
482
483 return false;
484}
485
486/// MergeAttributes - append attributes from the Old decl to the New one.
487static void MergeAttributes(Decl *New, Decl *Old) {
488 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
489
Chris Lattner402b3372008-03-03 03:28:21 +0000490 while (attr) {
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000491 tmp = attr;
492 attr = attr->getNext();
Chris Lattner402b3372008-03-03 03:28:21 +0000493
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000494 if (!DeclHasAttr(New, tmp) && tmp->isMerged()) {
495 tmp->setInherited(true);
496 New->addAttr(tmp);
Chris Lattner402b3372008-03-03 03:28:21 +0000497 } else {
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000498 tmp->setNext(0);
499 delete(tmp);
Chris Lattner402b3372008-03-03 03:28:21 +0000500 }
501 }
Nuno Lopes77654342008-06-01 22:53:53 +0000502
503 Old->invalidateAttrs();
Chris Lattner402b3372008-03-03 03:28:21 +0000504}
505
Chris Lattner3e254fb2008-04-08 04:40:51 +0000506/// MergeFunctionDecl - We just parsed a function 'New' from
507/// declarator D which has the same name and scope as a previous
508/// declaration 'Old'. Figure out how to resolve this situation,
509/// merging decls or emitting diagnostics as appropriate.
Douglas Gregord2baafd2008-10-21 16:13:35 +0000510///
511/// In C++, New and Old must be declarations that are not
512/// overloaded. Use IsOverload to determine whether New and Old are
513/// overloaded, and to select the Old declaration that New should be
514/// merged with.
Douglas Gregor083c23e2009-02-16 17:45:42 +0000515///
516/// Returns true if there was an error, false otherwise.
517bool Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000518 assert(!isa<OverloadedFunctionDecl>(OldD) &&
519 "Cannot merge with an overloaded function declaration");
520
Chris Lattner4b009652007-07-25 00:24:17 +0000521 // Verify the old decl was also a function.
522 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
523 if (!Old) {
Chris Lattner8d756812008-11-20 06:13:02 +0000524 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000525 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000526 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000527 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000528 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000529
530 // Determine whether the previous declaration was a definition,
531 // implicit declaration, or a declaration.
532 diag::kind PrevDiag;
533 if (Old->isThisDeclarationADefinition())
Chris Lattner1336cab2008-11-23 23:12:31 +0000534 PrevDiag = diag::note_previous_definition;
Douglas Gregor083c23e2009-02-16 17:45:42 +0000535 else if (Old->isImplicit())
536 PrevDiag = diag::note_previous_implicit_declaration;
537 else
Chris Lattner1336cab2008-11-23 23:12:31 +0000538 PrevDiag = diag::note_previous_declaration;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000539
Chris Lattner42a21742008-04-06 23:10:54 +0000540 QualType OldQType = Context.getCanonicalType(Old->getType());
541 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner60476ff2007-11-20 19:04:50 +0000542
Douglas Gregord2baafd2008-10-21 16:13:35 +0000543 if (getLangOptions().CPlusPlus) {
544 // (C++98 13.1p2):
545 // Certain function declarations cannot be overloaded:
546 // -- Function declarations that differ only in the return type
547 // cannot be overloaded.
548 QualType OldReturnType
549 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
550 QualType NewReturnType
551 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
552 if (OldReturnType != NewReturnType) {
553 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
Douglas Gregor411889e2009-02-13 23:20:09 +0000554 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000555 return true;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000556 }
557
558 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
559 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
560 if (OldMethod && NewMethod) {
561 // -- Member function declarations with the same name and the
562 // same parameter types cannot be overloaded if any of them
563 // is a static member function declaration.
564 if (OldMethod->isStatic() || NewMethod->isStatic()) {
565 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
Douglas Gregor411889e2009-02-13 23:20:09 +0000566 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000567 return true;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000568 }
Douglas Gregorb9213832008-12-15 21:24:18 +0000569
570 // C++ [class.mem]p1:
571 // [...] A member shall not be declared twice in the
572 // member-specification, except that a nested class or member
573 // class template can be declared and then later defined.
574 if (OldMethod->getLexicalDeclContext() ==
575 NewMethod->getLexicalDeclContext()) {
576 unsigned NewDiag;
577 if (isa<CXXConstructorDecl>(OldMethod))
578 NewDiag = diag::err_constructor_redeclared;
579 else if (isa<CXXDestructorDecl>(NewMethod))
580 NewDiag = diag::err_destructor_redeclared;
581 else if (isa<CXXConversionDecl>(NewMethod))
582 NewDiag = diag::err_conv_function_redeclared;
583 else
584 NewDiag = diag::err_member_redeclared;
585
586 Diag(New->getLocation(), NewDiag);
Douglas Gregor411889e2009-02-13 23:20:09 +0000587 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregorb9213832008-12-15 21:24:18 +0000588 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000589 }
590
591 // (C++98 8.3.5p3):
592 // All declarations for a function shall agree exactly in both the
593 // return type and the parameter-type-list.
594 if (OldQType == NewQType) {
595 // We have a redeclaration.
596 MergeAttributes(New, Old);
Douglas Gregord2baafd2008-10-21 16:13:35 +0000597 return MergeCXXFunctionDecl(New, Old);
598 }
599
600 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregor42214c52008-04-21 02:02:58 +0000601 }
Chris Lattner3e254fb2008-04-08 04:40:51 +0000602
603 // C: Function types need to be compatible, not identical. This handles
Steve Naroff1d5bd642008-01-14 20:51:29 +0000604 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner3e254fb2008-04-08 04:40:51 +0000605 if (!getLangOptions().CPlusPlus &&
Eli Friedman0d9549b2008-08-22 00:56:42 +0000606 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregorf1196702009-02-16 18:20:44 +0000607 const FunctionType *NewFuncType = NewQType->getAsFunctionType();
608 const FunctionTypeProto *OldProto = 0;
609 if (isa<FunctionTypeNoProto>(NewFuncType) &&
610 (OldProto = OldQType->getAsFunctionTypeProto())) {
611 // The old declaration provided a function prototype, but the
612 // new declaration does not. Merge in the prototype.
613 llvm::SmallVector<QualType, 16> ParamTypes(OldProto->arg_type_begin(),
614 OldProto->arg_type_end());
615 NewQType = Context.getFunctionType(NewFuncType->getResultType(),
616 &ParamTypes[0], ParamTypes.size(),
617 OldProto->isVariadic(),
618 OldProto->getTypeQuals());
619 New->setType(NewQType);
620 New->setInheritedPrototype();
Douglas Gregorca9f52e2009-02-16 20:58:07 +0000621
622 // Synthesize a parameter for each argument type.
623 llvm::SmallVector<ParmVarDecl*, 16> Params;
624 for (FunctionTypeProto::arg_type_iterator
625 ParamType = OldProto->arg_type_begin(),
626 ParamEnd = OldProto->arg_type_end();
627 ParamType != ParamEnd; ++ParamType) {
628 ParmVarDecl *Param = ParmVarDecl::Create(Context, New,
629 SourceLocation(), 0,
630 *ParamType, VarDecl::None,
631 0);
632 Param->setImplicit();
633 Params.push_back(Param);
634 }
635
636 New->setParams(Context, &Params[0], Params.size());
637
Douglas Gregorf1196702009-02-16 18:20:44 +0000638 }
639
Douglas Gregor42214c52008-04-21 02:02:58 +0000640 MergeAttributes(New, Old);
Douglas Gregorf1196702009-02-16 18:20:44 +0000641
Douglas Gregor083c23e2009-02-16 17:45:42 +0000642 return false;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000643 }
Chris Lattner1470b072007-11-06 06:07:26 +0000644
Steve Naroff6c9e7922008-01-16 15:01:34 +0000645 // A function that has already been declared has been redeclared or defined
646 // with a different type- show appropriate diagnostic
Douglas Gregor083c23e2009-02-16 17:45:42 +0000647 if (unsigned BuiltinID = Old->getBuiltinID(Context)) {
648 // The user has declared a builtin function with an incompatible
649 // signature.
650 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
651 // The function the user is redeclaring is a library-defined
652 // function like 'malloc' or 'printf'. Warn about the
653 // redeclaration, then ignore it.
654 Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
655 Diag(Old->getLocation(), diag::note_previous_builtin_declaration)
656 << Old << Old->getType();
657 return false;
658 }
Steve Naroff6c9e7922008-01-16 15:01:34 +0000659
Douglas Gregor083c23e2009-02-16 17:45:42 +0000660 PrevDiag = diag::note_previous_builtin_declaration;
661 }
662
Chris Lattner271d4c22008-11-24 05:29:24 +0000663 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Douglas Gregor411889e2009-02-13 23:20:09 +0000664 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor083c23e2009-02-16 17:45:42 +0000665 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000666}
667
Steve Naroffb5e78152008-08-08 17:50:35 +0000668/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd5802092008-08-10 15:28:06 +0000669static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000670 if (VD->isFileVarDecl())
671 return (!VD->getInit() &&
672 (VD->getStorageClass() == VarDecl::None ||
673 VD->getStorageClass() == VarDecl::Static));
674 return false;
675}
676
677/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
678/// when dealing with C "tentative" external object definitions (C99 6.9.2).
679void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
680 bool VDIsTentative = isTentativeDefinition(VD);
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000681 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffb5e78152008-08-08 17:50:35 +0000682
Douglas Gregor3a423132009-01-07 16:34:42 +0000683 // FIXME: I don't think this will actually see all of the
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000684 // redefinitions. Can't we check this property on-the-fly?
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000685 for (IdentifierResolver::iterator I = IdResolver.begin(VD->getIdentifier()),
686 E = IdResolver.end();
687 I != E; ++I) {
Argiris Kirtzidis90842b62008-09-09 21:18:04 +0000688 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000689 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
690
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000691 // Handle the following case:
692 // int a[10];
693 // int a[]; - the code below makes sure we set the correct type.
694 // int a[11]; - this is an error, size isn't 10.
695 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
696 OldDecl->getType()->isConstantArrayType())
697 VD->setType(OldDecl->getType());
698
Steve Naroffb5e78152008-08-08 17:50:35 +0000699 // Check for "tentative" definitions. We can't accomplish this in
700 // MergeVarDecl since the initializer hasn't been attached.
701 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
702 continue;
703
704 // Handle __private_extern__ just like extern.
705 if (OldDecl->getStorageClass() != VarDecl::Extern &&
706 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
707 VD->getStorageClass() != VarDecl::Extern &&
708 VD->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000709 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000710 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Sebastian Redlc5d44692009-02-08 10:49:44 +0000711 // One redefinition error is enough.
712 break;
Steve Naroffb5e78152008-08-08 17:50:35 +0000713 }
714 }
715 }
716}
717
Chris Lattner4b009652007-07-25 00:24:17 +0000718/// MergeVarDecl - We just parsed a variable 'New' which has the same name
719/// and scope as a previous declaration 'Old'. Figure out how to resolve this
720/// situation, merging decls or emitting diagnostics as appropriate.
721///
Steve Naroffb5e78152008-08-08 17:50:35 +0000722/// Tentative definition rules (C99 6.9.2p2) are checked by
723/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
724/// definitions here, since the initializer hasn't been attached.
Chris Lattner4b009652007-07-25 00:24:17 +0000725///
Douglas Gregor083c23e2009-02-16 17:45:42 +0000726bool Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Chris Lattner4b009652007-07-25 00:24:17 +0000727 // Verify the old decl was also a variable.
728 VarDecl *Old = dyn_cast<VarDecl>(OldD);
729 if (!Old) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000730 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000731 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000732 Diag(OldD->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000733 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000734 }
Chris Lattner402b3372008-03-03 03:28:21 +0000735
736 MergeAttributes(New, Old);
737
Eli Friedman4a480d62009-01-24 23:49:55 +0000738 // Merge the types
739 QualType MergedT = Context.mergeTypes(New->getType(), Old->getType());
740 if (MergedT.isNull()) {
Douglas Gregord1675382009-01-09 19:42:16 +0000741 Diag(New->getLocation(), diag::err_redefinition_different_type)
742 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000743 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000744 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000745 }
Eli Friedman4a480d62009-01-24 23:49:55 +0000746 New->setType(MergedT);
Steve Naroffb00247f2008-01-30 00:44:01 +0000747 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
748 if (New->getStorageClass() == VarDecl::Static &&
749 (Old->getStorageClass() == VarDecl::None ||
750 Old->getStorageClass() == VarDecl::Extern)) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000751 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000752 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000753 return true;
Steve Naroffb00247f2008-01-30 00:44:01 +0000754 }
755 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
756 if (New->getStorageClass() != VarDecl::Static &&
757 Old->getStorageClass() == VarDecl::Static) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000758 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000759 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000760 return true;
Steve Naroffb00247f2008-01-30 00:44:01 +0000761 }
Steve Naroff2f3c4432008-09-17 14:05:40 +0000762 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
763 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000764 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000765 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor083c23e2009-02-16 17:45:42 +0000766 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000767 }
Douglas Gregor083c23e2009-02-16 17:45:42 +0000768 return false;
Chris Lattner4b009652007-07-25 00:24:17 +0000769}
770
Chris Lattner3e254fb2008-04-08 04:40:51 +0000771/// CheckParmsForFunctionDef - Check that the parameters of the given
772/// function are appropriate for the definition of a function. This
773/// takes care of any checks that cannot be performed on the
774/// declaration itself, e.g., that the types of each of the function
775/// parameters are complete.
776bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
777 bool HasInvalidParm = false;
778 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
779 ParmVarDecl *Param = FD->getParamDecl(p);
780
781 // C99 6.7.5.3p4: the parameters in a parameter type list in a
782 // function declarator that is part of a function definition of
783 // that function shall not have incomplete type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +0000784 if (!Param->isInvalidDecl() &&
785 DiagnoseIncompleteType(Param->getLocation(), Param->getType(),
786 diag::err_typecheck_decl_incomplete_type)) {
Chris Lattner3e254fb2008-04-08 04:40:51 +0000787 Param->setInvalidDecl();
788 HasInvalidParm = true;
789 }
Chris Lattnerb0b42f62008-12-17 07:32:46 +0000790
791 // C99 6.9.1p5: If the declarator includes a parameter type list, the
792 // declaration of each parameter shall include an identifier.
Douglas Gregorca9f52e2009-02-16 20:58:07 +0000793 if (Param->getIdentifier() == 0 &&
794 !Param->isImplicit() &&
795 !getLangOptions().CPlusPlus)
Chris Lattnerb0b42f62008-12-17 07:32:46 +0000796 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000797 }
798
799 return HasInvalidParm;
800}
801
Chris Lattner4b009652007-07-25 00:24:17 +0000802/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
803/// no declarator (e.g. "struct foo;") is parsed.
804Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
Douglas Gregora60c62e2009-02-09 15:09:02 +0000805 TagDecl *Tag = 0;
806 if (DS.getTypeSpecType() == DeclSpec::TST_class ||
807 DS.getTypeSpecType() == DeclSpec::TST_struct ||
808 DS.getTypeSpecType() == DeclSpec::TST_union ||
809 DS.getTypeSpecType() == DeclSpec::TST_enum)
810 Tag = dyn_cast<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
811
Douglas Gregorb748fc52009-01-12 22:49:06 +0000812 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
813 if (!Record->getDeclName() && Record->isDefinition() &&
814 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
815 return BuildAnonymousStructOrUnion(S, DS, Record);
816
817 // Microsoft allows unnamed struct/union fields. Don't complain
818 // about them.
819 // FIXME: Should we support Microsoft's extensions in this area?
820 if (Record->getDeclName() && getLangOptions().Microsoft)
821 return Tag;
822 }
823
Douglas Gregord406b032009-02-06 22:42:48 +0000824 if (!DS.isMissingDeclaratorOk() &&
825 DS.getTypeSpecType() != DeclSpec::TST_error) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000826 // Warn about typedefs of enums without names, since this is an
827 // extension in both Microsoft an GNU.
Douglas Gregor72de8492009-01-17 02:55:50 +0000828 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
829 Tag && isa<EnumDecl>(Tag)) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000830 Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
Douglas Gregor80c720e2009-01-13 23:10:51 +0000831 << DS.getSourceRange();
832 return Tag;
833 }
834
Sebastian Redlb7605e82008-12-28 15:28:59 +0000835 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
836 << DS.getSourceRange();
837 return 0;
838 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000839
Douglas Gregor723d3332009-01-07 00:43:41 +0000840 return Tag;
841}
842
843/// InjectAnonymousStructOrUnionMembers - Inject the members of the
844/// anonymous struct or union AnonRecord into the owning context Owner
845/// and scope S. This routine will be invoked just after we realize
846/// that an unnamed union or struct is actually an anonymous union or
847/// struct, e.g.,
848///
849/// @code
850/// union {
851/// int i;
852/// float f;
853/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
854/// // f into the surrounding scope.x
855/// @endcode
856///
857/// This routine is recursive, injecting the names of nested anonymous
858/// structs/unions into the owning context and scope as well.
859bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
860 RecordDecl *AnonRecord) {
861 bool Invalid = false;
862 for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
863 FEnd = AnonRecord->field_end();
864 F != FEnd; ++F) {
865 if ((*F)->getDeclName()) {
Douglas Gregor09be81b2009-02-04 17:27:36 +0000866 NamedDecl *PrevDecl = LookupQualifiedName(Owner, (*F)->getDeclName(),
867 LookupOrdinaryName, true);
Douglas Gregor723d3332009-01-07 00:43:41 +0000868 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
869 // C++ [class.union]p2:
870 // The names of the members of an anonymous union shall be
871 // distinct from the names of any other entity in the
872 // scope in which the anonymous union is declared.
873 unsigned diagKind
874 = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl
875 : diag::err_anonymous_struct_member_redecl;
876 Diag((*F)->getLocation(), diagKind)
877 << (*F)->getDeclName();
878 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
879 Invalid = true;
880 } else {
881 // C++ [class.union]p2:
882 // For the purpose of name lookup, after the anonymous union
883 // definition, the members of the anonymous union are
884 // considered to have been defined in the scope in which the
885 // anonymous union is declared.
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000886 Owner->makeDeclVisibleInContext(*F);
Douglas Gregor723d3332009-01-07 00:43:41 +0000887 S->AddDecl(*F);
888 IdResolver.AddDecl(*F);
889 }
890 } else if (const RecordType *InnerRecordType
891 = (*F)->getType()->getAsRecordType()) {
892 RecordDecl *InnerRecord = InnerRecordType->getDecl();
893 if (InnerRecord->isAnonymousStructOrUnion())
894 Invalid = Invalid ||
895 InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
896 }
897 }
898
899 return Invalid;
900}
901
902/// ActOnAnonymousStructOrUnion - Handle the declaration of an
903/// anonymous structure or union. Anonymous unions are a C++ feature
904/// (C++ [class.union]) and a GNU C extension; anonymous structures
905/// are a GNU C and GNU C++ extension.
906Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
907 RecordDecl *Record) {
908 DeclContext *Owner = Record->getDeclContext();
909
910 // Diagnose whether this anonymous struct/union is an extension.
911 if (Record->isUnion() && !getLangOptions().CPlusPlus)
912 Diag(Record->getLocation(), diag::ext_anonymous_union);
913 else if (!Record->isUnion())
914 Diag(Record->getLocation(), diag::ext_anonymous_struct);
915
916 // C and C++ require different kinds of checks for anonymous
917 // structs/unions.
918 bool Invalid = false;
919 if (getLangOptions().CPlusPlus) {
920 const char* PrevSpec = 0;
921 // C++ [class.union]p3:
922 // Anonymous unions declared in a named namespace or in the
923 // global namespace shall be declared static.
924 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
925 (isa<TranslationUnitDecl>(Owner) ||
926 (isa<NamespaceDecl>(Owner) &&
927 cast<NamespaceDecl>(Owner)->getDeclName()))) {
928 Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
929 Invalid = true;
930
931 // Recover by adding 'static'.
932 DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec);
933 }
934 // C++ [class.union]p3:
935 // A storage class is not allowed in a declaration of an
936 // anonymous union in a class scope.
937 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
938 isa<RecordDecl>(Owner)) {
939 Diag(DS.getStorageClassSpecLoc(),
940 diag::err_anonymous_union_with_storage_spec);
941 Invalid = true;
942
943 // Recover by removing the storage specifier.
944 DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
945 PrevSpec);
946 }
Douglas Gregorc7f01612009-01-07 19:46:03 +0000947
948 // C++ [class.union]p2:
949 // The member-specification of an anonymous union shall only
950 // define non-static data members. [Note: nested types and
951 // functions cannot be declared within an anonymous union. ]
952 for (DeclContext::decl_iterator Mem = Record->decls_begin(),
953 MemEnd = Record->decls_end();
954 Mem != MemEnd; ++Mem) {
955 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
956 // C++ [class.union]p3:
957 // An anonymous union shall not have private or protected
958 // members (clause 11).
959 if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
960 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
961 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
962 Invalid = true;
963 }
964 } else if ((*Mem)->isImplicit()) {
965 // Any implicit members are fine.
Douglas Gregor2d87eb02009-02-03 00:34:39 +0000966 } else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) {
967 // This is a type that showed up in an
968 // elaborated-type-specifier inside the anonymous struct or
969 // union, but which actually declares a type outside of the
970 // anonymous struct or union. It's okay.
Douglas Gregorc7f01612009-01-07 19:46:03 +0000971 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
972 if (!MemRecord->isAnonymousStructOrUnion() &&
973 MemRecord->getDeclName()) {
974 // This is a nested type declaration.
975 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
976 << (int)Record->isUnion();
977 Invalid = true;
978 }
979 } else {
980 // We have something that isn't a non-static data
981 // member. Complain about it.
982 unsigned DK = diag::err_anonymous_record_bad_member;
983 if (isa<TypeDecl>(*Mem))
984 DK = diag::err_anonymous_record_with_type;
985 else if (isa<FunctionDecl>(*Mem))
986 DK = diag::err_anonymous_record_with_function;
987 else if (isa<VarDecl>(*Mem))
988 DK = diag::err_anonymous_record_with_static;
989 Diag((*Mem)->getLocation(), DK)
990 << (int)Record->isUnion();
991 Invalid = true;
992 }
993 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000994 } else {
995 // FIXME: Check GNU C semantics
Douglas Gregorb748fc52009-01-12 22:49:06 +0000996 if (Record->isUnion() && !Owner->isRecord()) {
997 Diag(Record->getLocation(), diag::err_anonymous_union_not_member)
998 << (int)getLangOptions().CPlusPlus;
999 Invalid = true;
1000 }
Douglas Gregor723d3332009-01-07 00:43:41 +00001001 }
1002
1003 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregorb748fc52009-01-12 22:49:06 +00001004 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
1005 << (int)getLangOptions().CPlusPlus;
Douglas Gregor723d3332009-01-07 00:43:41 +00001006 Invalid = true;
1007 }
1008
1009 // Create a declaration for this anonymous struct/union.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001010 NamedDecl *Anon = 0;
Douglas Gregor723d3332009-01-07 00:43:41 +00001011 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
1012 Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
1013 /*IdentifierInfo=*/0,
1014 Context.getTypeDeclType(Record),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001015 /*BitWidth=*/0, /*Mutable=*/false);
Douglas Gregorc7f01612009-01-07 19:46:03 +00001016 Anon->setAccess(AS_public);
1017 if (getLangOptions().CPlusPlus)
1018 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregor723d3332009-01-07 00:43:41 +00001019 } else {
1020 VarDecl::StorageClass SC;
1021 switch (DS.getStorageClassSpec()) {
1022 default: assert(0 && "Unknown storage class!");
1023 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1024 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1025 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1026 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1027 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1028 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1029 case DeclSpec::SCS_mutable:
1030 // mutable can only appear on non-static class members, so it's always
1031 // an error here
1032 Diag(Record->getLocation(), diag::err_mutable_nonmember);
1033 Invalid = true;
1034 SC = VarDecl::None;
1035 break;
1036 }
1037
1038 Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
1039 /*IdentifierInfo=*/0,
1040 Context.getTypeDeclType(Record),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001041 SC, DS.getSourceRange().getBegin());
Douglas Gregor723d3332009-01-07 00:43:41 +00001042 }
Douglas Gregorc7f01612009-01-07 19:46:03 +00001043 Anon->setImplicit();
Douglas Gregor723d3332009-01-07 00:43:41 +00001044
1045 // Add the anonymous struct/union object to the current
1046 // context. We'll be referencing this object when we refer to one of
1047 // its members.
Douglas Gregor03b2ad22009-01-12 23:27:07 +00001048 Owner->addDecl(Anon);
Douglas Gregor723d3332009-01-07 00:43:41 +00001049
1050 // Inject the members of the anonymous struct/union into the owning
1051 // context and into the identifier resolver chain for name lookup
1052 // purposes.
Douglas Gregorb748fc52009-01-12 22:49:06 +00001053 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
1054 Invalid = true;
Douglas Gregor723d3332009-01-07 00:43:41 +00001055
1056 // Mark this as an anonymous struct/union type. Note that we do not
1057 // do this until after we have already checked and injected the
1058 // members of this anonymous struct/union type, because otherwise
1059 // the members could be injected twice: once by DeclContext when it
1060 // builds its lookup table, and once by
1061 // InjectAnonymousStructOrUnionMembers.
1062 Record->setAnonymousStructOrUnion(true);
1063
1064 if (Invalid)
1065 Anon->setInvalidDecl();
1066
1067 return Anon;
Chris Lattner4b009652007-07-25 00:24:17 +00001068}
1069
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001070bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType,
1071 bool DirectInit) {
Steve Naroffe14e5542007-09-02 02:04:30 +00001072 // Get the type before calling CheckSingleAssignmentConstraints(), since
1073 // it can promote the expression.
Chris Lattner005ed752008-01-04 18:04:52 +00001074 QualType InitType = Init->getType();
Douglas Gregor6fd35572008-12-19 17:40:08 +00001075
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001076 if (getLangOptions().CPlusPlus) {
1077 // FIXME: I dislike this error message. A lot.
1078 if (PerformImplicitConversion(Init, DeclType, "initializing", DirectInit))
1079 return Diag(Init->getSourceRange().getBegin(),
1080 diag::err_typecheck_convert_incompatible)
1081 << DeclType << Init->getType() << "initializing"
1082 << Init->getSourceRange();
1083
1084 return false;
1085 }
Douglas Gregor6fd35572008-12-19 17:40:08 +00001086
Chris Lattner005ed752008-01-04 18:04:52 +00001087 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
1088 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
1089 InitType, Init, "initializing");
Steve Naroffe14e5542007-09-02 02:04:30 +00001090}
1091
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001092bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001093 const ArrayType *AT = Context.getAsArrayType(DeclT);
1094
1095 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001096 // C99 6.7.8p14. We have an array of character type with unknown size
1097 // being initialized to a string literal.
1098 llvm::APSInt ConstVal(32);
1099 ConstVal = strLiteral->getByteLength() + 1;
1100 // Return a new array type (C99 6.7.8p22).
Eli Friedman8ff07782008-02-15 18:16:39 +00001101 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001102 ArrayType::Normal, 0);
Chris Lattnera1923f62008-08-04 07:31:14 +00001103 } else {
1104 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001105 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnera1923f62008-08-04 07:31:14 +00001106 // FIXME: Avoid truncation for 64-bit length strings.
1107 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001108 Diag(strLiteral->getSourceRange().getBegin(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00001109 diag::warn_initializer_string_for_char_array_too_long)
1110 << strLiteral->getSourceRange();
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001111 }
1112 // Set type from "char *" to "constant array of char".
1113 strLiteral->setType(DeclT);
1114 // For now, we always return false (meaning success).
1115 return false;
1116}
1117
1118StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001119 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Narofff3cb5142008-01-25 00:51:06 +00001120 if (AT && AT->getElementType()->isCharType()) {
Anders Carlsson37704be2009-01-24 17:47:50 +00001121 return dyn_cast<StringLiteral>(Init->IgnoreParens());
Steve Narofff3cb5142008-01-25 00:51:06 +00001122 }
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001123 return 0;
1124}
1125
Douglas Gregor6428e762008-11-05 15:29:30 +00001126bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
1127 SourceLocation InitLoc,
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001128 DeclarationName InitEntity,
1129 bool DirectInit) {
Douglas Gregorf1ae3e02008-12-18 21:49:58 +00001130 if (DeclType->isDependentType() || Init->isTypeDependent())
1131 return false;
1132
Douglas Gregor81c29152008-10-29 00:13:59 +00001133 // C++ [dcl.init.ref]p1:
Sebastian Redl51504af2008-11-24 20:06:50 +00001134 // A variable declared to be a T&, that is "reference to type T"
Douglas Gregor81c29152008-10-29 00:13:59 +00001135 // (8.3.2), shall be initialized by an object, or function, of
1136 // type T or by an object that can be converted into a T.
1137 if (DeclType->isReferenceType())
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001138 return CheckReferenceInit(Init, DeclType, 0, false, DirectInit);
Douglas Gregor81c29152008-10-29 00:13:59 +00001139
Steve Naroff8e9337f2008-01-21 23:53:58 +00001140 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
1141 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattnera1923f62008-08-04 07:31:14 +00001142 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Chris Lattner9d2cf082008-11-19 05:27:50 +00001143 return Diag(InitLoc, diag::err_variable_object_no_init)
1144 << VAT->getSizeExpr()->getSourceRange();
Steve Naroff8e9337f2008-01-21 23:53:58 +00001145
Steve Naroffcb69fb72007-12-10 22:44:33 +00001146 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
1147 if (!InitList) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001148 // FIXME: Handle wide strings
1149 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
1150 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedman65280992008-02-08 00:48:24 +00001151
Douglas Gregor6428e762008-11-05 15:29:30 +00001152 // C++ [dcl.init]p14:
1153 // -- If the destination type is a (possibly cv-qualified) class
1154 // type:
1155 if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
1156 QualType DeclTypeC = Context.getCanonicalType(DeclType);
1157 QualType InitTypeC = Context.getCanonicalType(Init->getType());
1158
1159 // -- If the initialization is direct-initialization, or if it is
1160 // copy-initialization where the cv-unqualified version of the
1161 // source type is the same class as, or a derived class of, the
1162 // class of the destination, constructors are considered.
1163 if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
1164 IsDerivedFrom(InitTypeC, DeclTypeC)) {
1165 CXXConstructorDecl *Constructor
1166 = PerformInitializationByConstructor(DeclType, &Init, 1,
1167 InitLoc, Init->getSourceRange(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001168 InitEntity,
1169 DirectInit? IK_Direct : IK_Copy);
Douglas Gregor6428e762008-11-05 15:29:30 +00001170 return Constructor == 0;
1171 }
1172
1173 // -- Otherwise (i.e., for the remaining copy-initialization
1174 // cases), user-defined conversion sequences that can
1175 // convert from the source type to the destination type or
1176 // (when a conversion function is used) to a derived class
1177 // thereof are enumerated as described in 13.3.1.4, and the
1178 // best one is chosen through overload resolution
1179 // (13.3). If the conversion cannot be done or is
1180 // ambiguous, the initialization is ill-formed. The
1181 // function selected is called with the initializer
1182 // expression as its argument; if the function is a
1183 // constructor, the call initializes a temporary of the
1184 // destination type.
1185 // FIXME: We're pretending to do copy elision here; return to
1186 // this when we have ASTs for such things.
Douglas Gregor6fd35572008-12-19 17:40:08 +00001187 if (!PerformImplicitConversion(Init, DeclType, "initializing"))
Douglas Gregor6428e762008-11-05 15:29:30 +00001188 return false;
Chris Lattner70b93d82008-11-18 22:52:51 +00001189
Douglas Gregor62ae25a2008-12-24 00:01:03 +00001190 if (InitEntity)
1191 return Diag(InitLoc, diag::err_cannot_initialize_decl)
1192 << InitEntity << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1193 << Init->getType() << Init->getSourceRange();
1194 else
1195 return Diag(InitLoc, diag::err_cannot_initialize_decl_noname)
1196 << DeclType << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1197 << Init->getType() << Init->getSourceRange();
Douglas Gregor6428e762008-11-05 15:29:30 +00001198 }
1199
Steve Naroffb2f72412008-09-29 20:07:05 +00001200 // C99 6.7.8p16.
Eli Friedman65280992008-02-08 00:48:24 +00001201 if (DeclType->isArrayType())
Chris Lattner9d2cf082008-11-19 05:27:50 +00001202 return Diag(Init->getLocStart(), diag::err_array_init_list_required)
1203 << Init->getSourceRange();
Eli Friedman65280992008-02-08 00:48:24 +00001204
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001205 return CheckSingleInitializer(Init, DeclType, DirectInit);
Douglas Gregord45210d2009-01-30 22:09:00 +00001206 }
Eli Friedman38b7a912008-06-06 19:40:52 +00001207
Douglas Gregor849afc32009-01-29 00:45:39 +00001208 bool hadError = CheckInitList(InitList, DeclType);
1209 Init = InitList;
1210 return hadError;
Steve Naroffe14e5542007-09-02 02:04:30 +00001211}
1212
Douglas Gregor6704b312008-11-17 22:58:34 +00001213/// GetNameForDeclarator - Determine the full declaration name for the
1214/// given Declarator.
1215DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1216 switch (D.getKind()) {
1217 case Declarator::DK_Abstract:
1218 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
1219 return DeclarationName();
1220
1221 case Declarator::DK_Normal:
1222 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
1223 return DeclarationName(D.getIdentifier());
1224
1225 case Declarator::DK_Constructor: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001226 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor6704b312008-11-17 22:58:34 +00001227 Ty = Context.getCanonicalType(Ty);
1228 return Context.DeclarationNames.getCXXConstructorName(Ty);
1229 }
1230
1231 case Declarator::DK_Destructor: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001232 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor6704b312008-11-17 22:58:34 +00001233 Ty = Context.getCanonicalType(Ty);
1234 return Context.DeclarationNames.getCXXDestructorName(Ty);
1235 }
1236
1237 case Declarator::DK_Conversion: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001238 // FIXME: We'd like to keep the non-canonical type for diagnostics!
Douglas Gregor6704b312008-11-17 22:58:34 +00001239 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1240 Ty = Context.getCanonicalType(Ty);
1241 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
1242 }
Douglas Gregor96a32dd2008-11-18 14:39:36 +00001243
1244 case Declarator::DK_Operator:
1245 assert(D.getIdentifier() == 0 && "operator names have no identifier");
1246 return Context.DeclarationNames.getCXXOperatorName(
1247 D.getOverloadedOperator());
Douglas Gregor6704b312008-11-17 22:58:34 +00001248 }
1249
1250 assert(false && "Unknown name kind");
1251 return DeclarationName();
1252}
1253
Douglas Gregor46cfe452009-02-06 17:46:57 +00001254/// isNearlyMatchingFunction - Determine whether the C++ functions
1255/// Declaration and Definition are "nearly" matching. This heuristic
1256/// is used to improve diagnostics in the case where an out-of-line
1257/// function definition doesn't match any declaration within
1258/// the class or namespace.
1259static bool isNearlyMatchingFunction(ASTContext &Context,
1260 FunctionDecl *Declaration,
1261 FunctionDecl *Definition) {
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001262 if (Declaration->param_size() != Definition->param_size())
1263 return false;
1264 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1265 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1266 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1267
1268 DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType());
1269 DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType());
1270 if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType())
1271 return false;
1272 }
1273
1274 return true;
1275}
1276
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00001277Sema::DeclTy *
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001278Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1279 bool IsFunctionDefinition) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001280 NamedDecl *LastDeclarator = dyn_cast_or_null<NamedDecl>((Decl *)lastDecl);
Douglas Gregor6704b312008-11-17 22:58:34 +00001281 DeclarationName Name = GetNameForDeclarator(D);
1282
Chris Lattner4b009652007-07-25 00:24:17 +00001283 // All of these full declarators require an identifier. If it doesn't have
1284 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor6704b312008-11-17 22:58:34 +00001285 if (!Name) {
Chris Lattnercd61d592008-11-11 06:13:16 +00001286 if (!D.getInvalidType()) // Reject this if we think it is valid.
1287 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner8ba580c2008-11-19 05:08:23 +00001288 diag::err_declarator_need_ident)
1289 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00001290 return 0;
1291 }
1292
Chris Lattnera7549902007-08-26 06:24:45 +00001293 // The scope passed in may not be a decl scope. Zip up the scope tree until
1294 // we find one that is.
Douglas Gregor8acb7272008-12-11 16:49:14 +00001295 while ((S->getFlags() & Scope::DeclScope) == 0 ||
Douglas Gregor279272e2009-02-04 19:02:06 +00001296 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattnera7549902007-08-26 06:24:45 +00001297 S = S->getParent();
1298
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001299 DeclContext *DC;
Douglas Gregor09be81b2009-02-04 17:27:36 +00001300 NamedDecl *PrevDecl;
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001301 NamedDecl *New;
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001302 bool InvalidDecl = false;
Douglas Gregor083c23e2009-02-16 17:45:42 +00001303
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001304 // See if this is a redefinition of a variable in the same scope.
Douglas Gregor52ae30c2009-01-30 01:04:22 +00001305 if (!D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid()) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001306 DC = CurContext;
Douglas Gregor411889e2009-02-13 23:20:09 +00001307 PrevDecl = LookupName(S, Name, LookupOrdinaryName, true, true,
1308 D.getIdentifierLoc());
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001309 } else { // Something like "int foo::x;"
1310 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregor411889e2009-02-13 23:20:09 +00001311 PrevDecl = LookupQualifiedName(DC, Name, LookupOrdinaryName, true);
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001312
1313 // C++ 7.3.1.2p2:
1314 // Members (including explicit specializations of templates) of a named
1315 // namespace can also be defined outside that namespace by explicit
1316 // qualification of the name being defined, provided that the entity being
1317 // defined was already declared in the namespace and the definition appears
1318 // after the point of declaration in a namespace that encloses the
1319 // declarations namespace.
1320 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001321 // Note that we only check the context at this point. We don't yet
1322 // have enough information to make sure that PrevDecl is actually
1323 // the declaration we want to match. For example, given:
1324 //
Douglas Gregor98341042008-12-12 08:25:50 +00001325 // class X {
1326 // void f();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001327 // void f(float);
Douglas Gregor98341042008-12-12 08:25:50 +00001328 // };
1329 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001330 // void X::f(int) { } // ill-formed
1331 //
1332 // In this case, PrevDecl will point to the overload set
1333 // containing the two f's declared in X, but neither of them
1334 // matches.
Douglas Gregor46cfe452009-02-06 17:46:57 +00001335
1336 // First check whether we named the global scope.
1337 if (isa<TranslationUnitDecl>(DC)) {
1338 Diag(D.getIdentifierLoc(), diag::err_invalid_declarator_global_scope)
1339 << Name << D.getCXXScopeSpec().getRange();
1340 } else if (!CurContext->Encloses(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001341 // The qualifying scope doesn't enclose the original declaration.
1342 // Emit diagnostic based on current scope.
1343 SourceLocation L = D.getIdentifierLoc();
1344 SourceRange R = D.getCXXScopeSpec().getRange();
Douglas Gregor46cfe452009-02-06 17:46:57 +00001345 if (isa<FunctionDecl>(CurContext))
Chris Lattner254de7d2008-11-23 20:28:15 +00001346 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Douglas Gregor46cfe452009-02-06 17:46:57 +00001347 else
Chris Lattner254de7d2008-11-23 20:28:15 +00001348 Diag(L, diag::err_invalid_declarator_scope)
Douglas Gregor46cfe452009-02-06 17:46:57 +00001349 << Name << cast<NamedDecl>(DC) << R;
Douglas Gregor8acb7272008-12-11 16:49:14 +00001350 InvalidDecl = true;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001351 }
1352 }
1353
Douglas Gregor2715a1f2008-12-08 18:40:42 +00001354 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00001355 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001356 InvalidDecl = InvalidDecl
1357 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregordd861062008-12-05 18:15:24 +00001358 // Just pretend that we didn't see the previous declaration.
1359 PrevDecl = 0;
1360 }
1361
Douglas Gregor1d661552008-04-13 21:07:44 +00001362 // In C++, the previous declaration we find might be a tag type
1363 // (class or enum). In this case, the new declaration will hide the
Douglas Gregorb31f2942009-01-28 17:15:10 +00001364 // tag type. Note that this does does not apply if we're declaring a
1365 // typedef (C++ [dcl.typedef]p4).
1366 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag &&
1367 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
Douglas Gregor1d661552008-04-13 21:07:44 +00001368 PrevDecl = 0;
1369
Chris Lattner82bb4792007-11-14 06:34:38 +00001370 QualType R = GetTypeForDeclarator(D, S);
1371 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
1372
Douglas Gregor083c23e2009-02-16 17:45:42 +00001373 bool Redeclaration = false;
Chris Lattner4b009652007-07-25 00:24:17 +00001374 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001375 New = ActOnTypedefDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001376 InvalidDecl, Redeclaration);
Chris Lattner82bb4792007-11-14 06:34:38 +00001377 } else if (R.getTypePtr()->isFunctionType()) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001378 New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001379 IsFunctionDefinition, InvalidDecl,
1380 Redeclaration);
Chris Lattner4b009652007-07-25 00:24:17 +00001381 } else {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001382 New = ActOnVariableDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001383 InvalidDecl, Redeclaration);
Chris Lattner4b009652007-07-25 00:24:17 +00001384 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001385
1386 if (New == 0)
1387 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001388
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00001389 // Set the lexical context. If the declarator has a C++ scope specifier, the
1390 // lexical context will be different from the semantic context.
1391 New->setLexicalDeclContext(CurContext);
1392
Douglas Gregor083c23e2009-02-16 17:45:42 +00001393 // If this has an identifier and is not an invalid redeclaration,
1394 // add it to the scope stack.
1395 if (Name && !(Redeclaration && InvalidDecl))
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00001396 PushOnScopeChains(New, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001397 // If any semantic error occurred, mark the decl as invalid.
1398 if (D.getInvalidType() || InvalidDecl)
1399 New->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00001400
1401 return New;
1402}
1403
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001404NamedDecl*
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001405Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001406 QualType R, Decl* LastDeclarator,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001407 Decl* PrevDecl, bool& InvalidDecl,
1408 bool &Redeclaration) {
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001409 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1410 if (D.getCXXScopeSpec().isSet()) {
1411 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1412 << D.getCXXScopeSpec().getRange();
1413 InvalidDecl = true;
1414 // Pretend we didn't see the scope specifier.
1415 DC = 0;
1416 }
1417
1418 // Check that there are no default arguments (C++ only).
1419 if (getLangOptions().CPlusPlus)
1420 CheckExtraCXXDefaultArguments(D);
1421
1422 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
1423 if (!NewTD) return 0;
1424
1425 // Handle attributes prior to checking for duplicates in MergeVarDecl
1426 ProcessDeclAttributes(NewTD, D);
1427 // Merge the decl with the existing one if appropriate. If the decl is
1428 // in an outer scope, it isn't the same thing.
1429 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Douglas Gregor083c23e2009-02-16 17:45:42 +00001430 Redeclaration = true;
1431 if (MergeTypeDefDecl(NewTD, PrevDecl))
1432 InvalidDecl = true;
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001433 }
1434
1435 if (S->getFnParent() == 0) {
1436 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1437 // then it shall have block scope.
1438 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
1439 if (NewTD->getUnderlyingType()->isVariableArrayType())
1440 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1441 else
1442 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1443
1444 InvalidDecl = true;
1445 }
1446 }
1447 return NewTD;
1448}
1449
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001450NamedDecl*
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001451Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001452 QualType R, Decl* LastDeclarator,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001453 Decl* PrevDecl, bool& InvalidDecl,
1454 bool &Redeclaration) {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001455 DeclarationName Name = GetNameForDeclarator(D);
1456
1457 // Check that there are no default arguments (C++ only).
1458 if (getLangOptions().CPlusPlus)
1459 CheckExtraCXXDefaultArguments(D);
1460
1461 if (R.getTypePtr()->isObjCInterfaceType()) {
1462 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object)
1463 << D.getIdentifier();
1464 InvalidDecl = true;
1465 }
1466
1467 VarDecl *NewVD;
1468 VarDecl::StorageClass SC;
1469 switch (D.getDeclSpec().getStorageClassSpec()) {
1470 default: assert(0 && "Unknown storage class!");
1471 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1472 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1473 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1474 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1475 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1476 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1477 case DeclSpec::SCS_mutable:
1478 // mutable can only appear on non-static class members, so it's always
1479 // an error here
1480 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1481 InvalidDecl = true;
1482 SC = VarDecl::None;
1483 break;
1484 }
1485
1486 IdentifierInfo *II = Name.getAsIdentifierInfo();
1487 if (!II) {
1488 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1489 << Name.getAsString();
1490 return 0;
1491 }
1492
1493 if (DC->isRecord()) {
1494 // This is a static data member for a C++ class.
1495 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
1496 D.getIdentifierLoc(), II,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001497 R);
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001498 } else {
1499 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
1500 if (S->getFnParent() == 0) {
1501 // C99 6.9p2: The storage-class specifiers auto and register shall not
1502 // appear in the declaration specifiers in an external declaration.
1503 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1504 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
1505 InvalidDecl = true;
1506 }
1507 }
1508 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001509 II, R, SC,
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001510 // FIXME: Move to DeclGroup...
1511 D.getDeclSpec().getSourceRange().getBegin());
1512 NewVD->setThreadSpecified(ThreadSpecified);
1513 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001514 NewVD->setNextDeclarator(LastDeclarator);
1515
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001516 // Handle attributes prior to checking for duplicates in MergeVarDecl
1517 ProcessDeclAttributes(NewVD, D);
1518
1519 // Handle GNU asm-label extension (encoded as an attribute).
1520 if (Expr *E = (Expr*) D.getAsmLabel()) {
1521 // The parser guarantees this is a string.
1522 StringLiteral *SE = cast<StringLiteral>(E);
1523 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1524 SE->getByteLength())));
1525 }
1526
1527 // Emit an error if an address space was applied to decl with local storage.
1528 // This includes arrays of objects with address space qualifiers, but not
1529 // automatic variables that point to other address spaces.
1530 // ISO/IEC TR 18037 S5.1.2
1531 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1532 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1533 InvalidDecl = true;
1534 }
1535 // Merge the decl with the existing one if appropriate. If the decl is
1536 // in an outer scope, it isn't the same thing.
1537 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1538 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1539 // The user tried to define a non-static data member
1540 // out-of-line (C++ [dcl.meaning]p1).
1541 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1542 << D.getCXXScopeSpec().getRange();
1543 NewVD->Destroy(Context);
1544 return 0;
1545 }
1546
Douglas Gregor083c23e2009-02-16 17:45:42 +00001547 Redeclaration = true;
1548 if (MergeVarDecl(NewVD, PrevDecl))
1549 InvalidDecl = true;
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001550
1551 if (D.getCXXScopeSpec().isSet()) {
1552 // No previous declaration in the qualifying scope.
1553 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1554 << Name << D.getCXXScopeSpec().getRange();
1555 InvalidDecl = true;
1556 }
1557 }
1558 return NewVD;
1559}
1560
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001561NamedDecl*
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001562Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001563 QualType R, Decl *LastDeclarator,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001564 Decl* PrevDecl, bool IsFunctionDefinition,
Douglas Gregor083c23e2009-02-16 17:45:42 +00001565 bool& InvalidDecl, bool &Redeclaration) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001566 assert(R.getTypePtr()->isFunctionType());
1567
1568 DeclarationName Name = GetNameForDeclarator(D);
1569 FunctionDecl::StorageClass SC = FunctionDecl::None;
1570 switch (D.getDeclSpec().getStorageClassSpec()) {
1571 default: assert(0 && "Unknown storage class!");
1572 case DeclSpec::SCS_auto:
1573 case DeclSpec::SCS_register:
1574 case DeclSpec::SCS_mutable:
1575 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func);
1576 InvalidDecl = true;
1577 break;
1578 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1579 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
1580 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
1581 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
1582 }
1583
1584 bool isInline = D.getDeclSpec().isInlineSpecified();
1585 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1586 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1587
1588 FunctionDecl *NewFD;
1589 if (D.getKind() == Declarator::DK_Constructor) {
1590 // This is a C++ constructor declaration.
1591 assert(DC->isRecord() &&
1592 "Constructors can only be declared in a member context");
1593
1594 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
1595
1596 // Create the new declaration
1597 NewFD = CXXConstructorDecl::Create(Context,
1598 cast<CXXRecordDecl>(DC),
1599 D.getIdentifierLoc(), Name, R,
1600 isExplicit, isInline,
1601 /*isImplicitlyDeclared=*/false);
1602
1603 if (InvalidDecl)
1604 NewFD->setInvalidDecl();
1605 } else if (D.getKind() == Declarator::DK_Destructor) {
1606 // This is a C++ destructor declaration.
1607 if (DC->isRecord()) {
1608 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
1609
1610 NewFD = CXXDestructorDecl::Create(Context,
1611 cast<CXXRecordDecl>(DC),
1612 D.getIdentifierLoc(), Name, R,
1613 isInline,
1614 /*isImplicitlyDeclared=*/false);
1615
1616 if (InvalidDecl)
1617 NewFD->setInvalidDecl();
1618 } else {
1619 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
1620
1621 // Create a FunctionDecl to satisfy the function definition parsing
1622 // code path.
1623 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001624 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001625 // FIXME: Move to DeclGroup...
1626 D.getDeclSpec().getSourceRange().getBegin());
1627 InvalidDecl = true;
1628 NewFD->setInvalidDecl();
1629 }
1630 } else if (D.getKind() == Declarator::DK_Conversion) {
1631 if (!DC->isRecord()) {
1632 Diag(D.getIdentifierLoc(),
1633 diag::err_conv_function_not_member);
1634 return 0;
1635 } else {
1636 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
1637
1638 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
1639 D.getIdentifierLoc(), Name, R,
1640 isInline, isExplicit);
1641
1642 if (InvalidDecl)
1643 NewFD->setInvalidDecl();
1644 }
1645 } else if (DC->isRecord()) {
1646 // This is a C++ method declaration.
1647 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
1648 D.getIdentifierLoc(), Name, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001649 (SC == FunctionDecl::Static), isInline);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001650 } else {
1651 NewFD = FunctionDecl::Create(Context, DC,
1652 D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001653 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001654 // FIXME: Move to DeclGroup...
1655 D.getDeclSpec().getSourceRange().getBegin());
1656 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001657 NewFD->setNextDeclarator(LastDeclarator);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001658
1659 // Set the lexical context. If the declarator has a C++
1660 // scope specifier, the lexical context will be different
1661 // from the semantic context.
1662 NewFD->setLexicalDeclContext(CurContext);
1663
1664 // Handle GNU asm-label extension (encoded as an attribute).
1665 if (Expr *E = (Expr*) D.getAsmLabel()) {
1666 // The parser guarantees this is a string.
1667 StringLiteral *SE = cast<StringLiteral>(E);
1668 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1669 SE->getByteLength())));
1670 }
1671
1672 // Copy the parameter declarations from the declarator D to
1673 // the function declaration NewFD, if they are available.
1674 if (D.getNumTypeObjects() > 0) {
1675 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1676
1677 // Create Decl objects for each parameter, adding them to the
1678 // FunctionDecl.
1679 llvm::SmallVector<ParmVarDecl*, 16> Params;
1680
1681 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1682 // function that takes no arguments, not a function that takes a
1683 // single void argument.
1684 // We let through "const void" here because Sema::GetTypeForDeclarator
1685 // already checks for that case.
1686 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1687 FTI.ArgInfo[0].Param &&
1688 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1689 // empty arg list, don't push any params.
1690 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1691
1692 // In C++, the empty parameter-type-list must be spelled "void"; a
1693 // typedef of void is not permitted.
1694 if (getLangOptions().CPlusPlus &&
1695 Param->getType().getUnqualifiedType() != Context.VoidTy) {
1696 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1697 }
1698 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1699 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1700 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1701 }
1702
1703 NewFD->setParams(Context, &Params[0], Params.size());
1704 } else if (R->getAsTypedefType()) {
1705 // When we're declaring a function with a typedef, as in the
1706 // following example, we'll need to synthesize (unnamed)
1707 // parameters for use in the declaration.
1708 //
1709 // @code
1710 // typedef void fn(int);
1711 // fn f;
1712 // @endcode
1713 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1714 if (!FT) {
1715 // This is a typedef of a function with no prototype, so we
1716 // don't need to do anything.
1717 } else if ((FT->getNumArgs() == 0) ||
1718 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1719 FT->getArgType(0)->isVoidType())) {
1720 // This is a zero-argument function. We don't need to do anything.
1721 } else {
1722 // Synthesize a parameter for each argument type.
1723 llvm::SmallVector<ParmVarDecl*, 16> Params;
1724 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1725 ArgType != FT->arg_type_end(); ++ArgType) {
Douglas Gregorca9f52e2009-02-16 20:58:07 +00001726 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC,
1727 SourceLocation(), 0,
1728 *ArgType, VarDecl::None,
1729 0);
1730 Param->setImplicit();
1731 Params.push_back(Param);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001732 }
1733
1734 NewFD->setParams(Context, &Params[0], Params.size());
1735 }
1736 }
1737
1738 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1739 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
1740 else if (isa<CXXDestructorDecl>(NewFD)) {
1741 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1742 Record->setUserDeclaredDestructor(true);
1743 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1744 // user-defined destructor.
1745 Record->setPOD(false);
1746 } else if (CXXConversionDecl *Conversion =
1747 dyn_cast<CXXConversionDecl>(NewFD))
1748 ActOnConversionDeclarator(Conversion);
1749
1750 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1751 if (NewFD->isOverloadedOperator() &&
1752 CheckOverloadedOperatorDeclaration(NewFD))
1753 NewFD->setInvalidDecl();
1754
1755 // Merge the decl with the existing one if appropriate. Since C functions
1756 // are in a flat namespace, make sure we consider decls in outer scopes.
Douglas Gregorfcb19192009-02-11 23:02:49 +00001757 bool OverloadableAttrRequired = false;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001758 if (PrevDecl &&
1759 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
Douglas Gregorfcb19192009-02-11 23:02:49 +00001760 // Determine whether NewFD is an overload of PrevDecl or
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001761 // a declaration that requires merging. If it's an overload,
1762 // there's no more work to do here; we'll just add the new
1763 // function to the scope.
1764 OverloadedFunctionDecl::function_iterator MatchedDecl;
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001765
1766 if (!getLangOptions().CPlusPlus &&
1767 AllowOverloadingOfFunction(PrevDecl, Context))
1768 OverloadableAttrRequired = true;
1769
Douglas Gregorfcb19192009-02-11 23:02:49 +00001770 if (!AllowOverloadingOfFunction(PrevDecl, Context) ||
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001771 !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
Douglas Gregor083c23e2009-02-16 17:45:42 +00001772 Redeclaration = true;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001773 Decl *OldDecl = PrevDecl;
1774
1775 // If PrevDecl was an overloaded function, extract the
1776 // FunctionDecl that matched.
1777 if (isa<OverloadedFunctionDecl>(PrevDecl))
1778 OldDecl = *MatchedDecl;
1779
1780 // NewFD and PrevDecl represent declarations that need to be
1781 // merged.
Douglas Gregor083c23e2009-02-16 17:45:42 +00001782 if (MergeFunctionDecl(NewFD, OldDecl))
1783 InvalidDecl = true;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001784
Douglas Gregor083c23e2009-02-16 17:45:42 +00001785 if (!InvalidDecl) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001786 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1787
1788 // An out-of-line member function declaration must also be a
1789 // definition (C++ [dcl.meaning]p1).
1790 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1791 !InvalidDecl) {
1792 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1793 << D.getCXXScopeSpec().getRange();
1794 NewFD->setInvalidDecl();
1795 }
1796 }
1797 }
Douglas Gregor46cfe452009-02-06 17:46:57 +00001798 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001799
Douglas Gregor46cfe452009-02-06 17:46:57 +00001800 if (D.getCXXScopeSpec().isSet() &&
1801 (!PrevDecl || !Redeclaration)) {
1802 // The user tried to provide an out-of-line definition for a
1803 // function that is a member of a class or namespace, but there
1804 // was no such member function declared (C++ [class.mfct]p2,
1805 // C++ [namespace.memdef]p2). For example:
1806 //
1807 // class X {
1808 // void f() const;
1809 // };
1810 //
1811 // void X::f() { } // ill-formed
1812 //
1813 // Complain about this problem, and attempt to suggest close
1814 // matches (e.g., those that differ only in cv-qualifiers and
1815 // whether the parameter types are references).
Douglas Gregor46cfe452009-02-06 17:46:57 +00001816 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
Douglas Gregoree785232009-02-06 22:58:38 +00001817 << cast<NamedDecl>(DC) << D.getCXXScopeSpec().getRange();
Douglas Gregor46cfe452009-02-06 17:46:57 +00001818 InvalidDecl = true;
1819
1820 LookupResult Prev = LookupQualifiedName(DC, Name, LookupOrdinaryName,
1821 true);
1822 assert(!Prev.isAmbiguous() &&
1823 "Cannot have an ambiguity in previous-declaration lookup");
1824 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
1825 Func != FuncEnd; ++Func) {
1826 if (isa<FunctionDecl>(*Func) &&
1827 isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD))
1828 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001829 }
Douglas Gregor46cfe452009-02-06 17:46:57 +00001830
1831 PrevDecl = 0;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001832 }
Douglas Gregorbd4b0852009-02-02 21:35:47 +00001833
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001834 // Handle attributes. We need to have merged decls when handling attributes
1835 // (for example to check for conflicts, etc).
1836 ProcessDeclAttributes(NewFD, D);
Douglas Gregorb5af7382009-02-14 18:57:46 +00001837 AddKnownFunctionAttributes(NewFD);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001838
Douglas Gregorfcb19192009-02-11 23:02:49 +00001839 if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) {
1840 // If a function name is overloadable in C, then every function
1841 // with that name must be marked "overloadable".
1842 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001843 << Redeclaration << NewFD;
Douglas Gregorfcb19192009-02-11 23:02:49 +00001844 if (PrevDecl)
1845 Diag(PrevDecl->getLocation(),
1846 diag::note_attribute_overloadable_prev_overload);
1847 NewFD->addAttr(new OverloadableAttr);
1848 }
1849
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001850 if (getLangOptions().CPlusPlus) {
Sebastian Redl0d2157d2009-02-08 14:56:26 +00001851 // In C++, check default arguments now that we have merged decls. Unless
1852 // the lexical context is the class, because in this case this is done
1853 // during delayed parsing anyway.
1854 if (!CurContext->isRecord())
1855 CheckCXXDefaultArguments(NewFD);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001856
1857 // An out-of-line member function declaration must also be a
1858 // definition (C++ [dcl.meaning]p1).
1859 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
1860 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1861 << D.getCXXScopeSpec().getRange();
1862 InvalidDecl = true;
1863 }
1864 }
1865 return NewFD;
1866}
1867
Steve Narofffc08f5e2008-10-27 11:34:16 +00001868void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattner9d2cf082008-11-19 05:27:50 +00001869 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1870 << Init->getSourceRange();
Steve Narofffc08f5e2008-10-27 11:34:16 +00001871}
1872
Eli Friedman02c22ce2008-05-20 13:48:25 +00001873bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1874 switch (Init->getStmtClass()) {
1875 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001876 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001877 return true;
1878 case Expr::ParenExprClass: {
1879 const ParenExpr* PE = cast<ParenExpr>(Init);
1880 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1881 }
1882 case Expr::CompoundLiteralExprClass:
1883 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregor566782a2009-01-06 05:10:23 +00001884 case Expr::DeclRefExprClass:
1885 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001886 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman8cb86e32008-05-21 03:39:11 +00001887 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1888 if (VD->hasGlobalStorage())
1889 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001890 InitializerElementNotConstant(Init);
Eli Friedman8cb86e32008-05-21 03:39:11 +00001891 return true;
1892 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001893 if (isa<FunctionDecl>(D))
1894 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001895 InitializerElementNotConstant(Init);
Steve Narofff0b23542008-01-10 22:15:12 +00001896 return true;
1897 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001898 case Expr::MemberExprClass: {
1899 const MemberExpr *M = cast<MemberExpr>(Init);
1900 if (M->isArrow())
1901 return CheckAddressConstantExpression(M->getBase());
1902 return CheckAddressConstantExpressionLValue(M->getBase());
1903 }
1904 case Expr::ArraySubscriptExprClass: {
1905 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1906 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1907 return CheckAddressConstantExpression(ASE->getBase()) ||
1908 CheckArithmeticConstantExpression(ASE->getIdx());
1909 }
1910 case Expr::StringLiteralClass:
Chris Lattner69909292008-08-10 01:53:14 +00001911 case Expr::PredefinedExprClass:
Eli Friedman02c22ce2008-05-20 13:48:25 +00001912 return false;
1913 case Expr::UnaryOperatorClass: {
1914 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1915
1916 // C99 6.6p9
1917 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman8cb86e32008-05-21 03:39:11 +00001918 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001919
Steve Narofffc08f5e2008-10-27 11:34:16 +00001920 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001921 return true;
1922 }
1923 }
1924}
1925
1926bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1927 switch (Init->getStmtClass()) {
1928 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001929 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001930 return true;
Chris Lattner0903cba2008-10-06 07:26:43 +00001931 case Expr::ParenExprClass:
1932 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001933 case Expr::StringLiteralClass:
1934 case Expr::ObjCStringLiteralClass:
1935 return false;
Chris Lattner0903cba2008-10-06 07:26:43 +00001936 case Expr::CallExprClass:
Douglas Gregor65fedaf2008-11-14 16:09:21 +00001937 case Expr::CXXOperatorCallExprClass:
Chris Lattner0903cba2008-10-06 07:26:43 +00001938 // __builtin___CFStringMakeConstantString is a valid constant l-value.
Douglas Gregorb5af7382009-02-14 18:57:46 +00001939 if (cast<CallExpr>(Init)->isBuiltinCall(Context) ==
Chris Lattner0903cba2008-10-06 07:26:43 +00001940 Builtin::BI__builtin___CFStringMakeConstantString)
1941 return false;
1942
Steve Narofffc08f5e2008-10-27 11:34:16 +00001943 InitializerElementNotConstant(Init);
Chris Lattner0903cba2008-10-06 07:26:43 +00001944 return true;
1945
Eli Friedman02c22ce2008-05-20 13:48:25 +00001946 case Expr::UnaryOperatorClass: {
1947 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1948
1949 // C99 6.6p9
1950 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1951 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1952
1953 if (Exp->getOpcode() == UnaryOperator::Extension)
1954 return CheckAddressConstantExpression(Exp->getSubExpr());
1955
Steve Narofffc08f5e2008-10-27 11:34:16 +00001956 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001957 return true;
1958 }
1959 case Expr::BinaryOperatorClass: {
1960 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1961 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1962
1963 Expr *PExp = Exp->getLHS();
1964 Expr *IExp = Exp->getRHS();
1965 if (IExp->getType()->isPointerType())
1966 std::swap(PExp, IExp);
1967
1968 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1969 return CheckAddressConstantExpression(PExp) ||
1970 CheckArithmeticConstantExpression(IExp);
1971 }
Eli Friedman1fad3c62008-08-25 20:46:57 +00001972 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00001973 case Expr::CStyleCastExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001974 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman1fad3c62008-08-25 20:46:57 +00001975 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1976 // Check for implicit promotion
1977 if (SubExpr->getType()->isFunctionType() ||
1978 SubExpr->getType()->isArrayType())
1979 return CheckAddressConstantExpressionLValue(SubExpr);
1980 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001981
1982 // Check for pointer->pointer cast
1983 if (SubExpr->getType()->isPointerType())
1984 return CheckAddressConstantExpression(SubExpr);
1985
Eli Friedman1fad3c62008-08-25 20:46:57 +00001986 if (SubExpr->getType()->isIntegralType()) {
1987 // Check for the special-case of a pointer->int->pointer cast;
1988 // this isn't standard, but some code requires it. See
1989 // PR2720 for an example.
1990 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1991 if (SubCast->getSubExpr()->getType()->isPointerType()) {
1992 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1993 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1994 if (IntWidth >= PointerWidth) {
1995 return CheckAddressConstantExpression(SubCast->getSubExpr());
1996 }
1997 }
1998 }
1999 }
2000 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002001 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedman1fad3c62008-08-25 20:46:57 +00002002 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002003
Steve Narofffc08f5e2008-10-27 11:34:16 +00002004 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002005 return true;
2006 }
2007 case Expr::ConditionalOperatorClass: {
2008 // FIXME: Should we pedwarn here?
2009 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
2010 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002011 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002012 return true;
2013 }
2014 if (CheckArithmeticConstantExpression(Exp->getCond()))
2015 return true;
2016 if (Exp->getLHS() &&
2017 CheckAddressConstantExpression(Exp->getLHS()))
2018 return true;
2019 return CheckAddressConstantExpression(Exp->getRHS());
2020 }
2021 case Expr::AddrLabelExprClass:
2022 return false;
2023 }
2024}
2025
Eli Friedman998dffb2008-06-09 05:05:07 +00002026static const Expr* FindExpressionBaseAddress(const Expr* E);
2027
2028static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
2029 switch (E->getStmtClass()) {
2030 default:
2031 return E;
2032 case Expr::ParenExprClass: {
2033 const ParenExpr* PE = cast<ParenExpr>(E);
2034 return FindExpressionBaseAddressLValue(PE->getSubExpr());
2035 }
2036 case Expr::MemberExprClass: {
2037 const MemberExpr *M = cast<MemberExpr>(E);
2038 if (M->isArrow())
2039 return FindExpressionBaseAddress(M->getBase());
2040 return FindExpressionBaseAddressLValue(M->getBase());
2041 }
2042 case Expr::ArraySubscriptExprClass: {
2043 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
2044 return FindExpressionBaseAddress(ASE->getBase());
2045 }
2046 case Expr::UnaryOperatorClass: {
2047 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2048
2049 if (Exp->getOpcode() == UnaryOperator::Deref)
2050 return FindExpressionBaseAddress(Exp->getSubExpr());
2051
2052 return E;
2053 }
2054 }
2055}
2056
2057static const Expr* FindExpressionBaseAddress(const Expr* E) {
2058 switch (E->getStmtClass()) {
2059 default:
2060 return E;
2061 case Expr::ParenExprClass: {
2062 const ParenExpr* PE = cast<ParenExpr>(E);
2063 return FindExpressionBaseAddress(PE->getSubExpr());
2064 }
2065 case Expr::UnaryOperatorClass: {
2066 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2067
2068 // C99 6.6p9
2069 if (Exp->getOpcode() == UnaryOperator::AddrOf)
2070 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
2071
2072 if (Exp->getOpcode() == UnaryOperator::Extension)
2073 return FindExpressionBaseAddress(Exp->getSubExpr());
2074
2075 return E;
2076 }
2077 case Expr::BinaryOperatorClass: {
2078 const BinaryOperator *Exp = cast<BinaryOperator>(E);
2079
2080 Expr *PExp = Exp->getLHS();
2081 Expr *IExp = Exp->getRHS();
2082 if (IExp->getType()->isPointerType())
2083 std::swap(PExp, IExp);
2084
2085 return FindExpressionBaseAddress(PExp);
2086 }
2087 case Expr::ImplicitCastExprClass: {
2088 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
2089
2090 // Check for implicit promotion
2091 if (SubExpr->getType()->isFunctionType() ||
2092 SubExpr->getType()->isArrayType())
2093 return FindExpressionBaseAddressLValue(SubExpr);
2094
2095 // Check for pointer->pointer cast
2096 if (SubExpr->getType()->isPointerType())
2097 return FindExpressionBaseAddress(SubExpr);
2098
2099 // We assume that we have an arithmetic expression here;
2100 // if we don't, we'll figure it out later
2101 return 0;
2102 }
Douglas Gregor035d0882008-10-28 15:36:24 +00002103 case Expr::CStyleCastExprClass: {
Eli Friedman998dffb2008-06-09 05:05:07 +00002104 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
2105
2106 // Check for pointer->pointer cast
2107 if (SubExpr->getType()->isPointerType())
2108 return FindExpressionBaseAddress(SubExpr);
2109
2110 // We assume that we have an arithmetic expression here;
2111 // if we don't, we'll figure it out later
2112 return 0;
2113 }
2114 }
2115}
2116
Anders Carlssone8bd9f22008-11-22 21:04:56 +00002117bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002118 switch (Init->getStmtClass()) {
2119 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002120 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002121 return true;
2122 case Expr::ParenExprClass: {
2123 const ParenExpr* PE = cast<ParenExpr>(Init);
2124 return CheckArithmeticConstantExpression(PE->getSubExpr());
2125 }
2126 case Expr::FloatingLiteralClass:
2127 case Expr::IntegerLiteralClass:
2128 case Expr::CharacterLiteralClass:
2129 case Expr::ImaginaryLiteralClass:
2130 case Expr::TypesCompatibleExprClass:
2131 case Expr::CXXBoolLiteralExprClass:
2132 return false;
Douglas Gregor65fedaf2008-11-14 16:09:21 +00002133 case Expr::CallExprClass:
2134 case Expr::CXXOperatorCallExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002135 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002136
2137 // Allow any constant foldable calls to builtins.
Douglas Gregorb5af7382009-02-14 18:57:46 +00002138 if (CE->isBuiltinCall(Context) && CE->isEvaluatable(Context))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002139 return false;
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002140
Steve Narofffc08f5e2008-10-27 11:34:16 +00002141 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002142 return true;
2143 }
Douglas Gregor566782a2009-01-06 05:10:23 +00002144 case Expr::DeclRefExprClass:
2145 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002146 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2147 if (isa<EnumConstantDecl>(D))
2148 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002149 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002150 return true;
2151 }
2152 case Expr::CompoundLiteralExprClass:
2153 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2154 // but vectors are allowed to be magic.
2155 if (Init->getType()->isVectorType())
2156 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002157 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002158 return true;
2159 case Expr::UnaryOperatorClass: {
2160 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2161
2162 switch (Exp->getOpcode()) {
2163 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2164 // See C99 6.6p3.
2165 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002166 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002167 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002168 case UnaryOperator::OffsetOf:
Eli Friedman02c22ce2008-05-20 13:48:25 +00002169 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2170 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002171 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002172 return true;
2173 case UnaryOperator::Extension:
2174 case UnaryOperator::LNot:
2175 case UnaryOperator::Plus:
2176 case UnaryOperator::Minus:
2177 case UnaryOperator::Not:
2178 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2179 }
2180 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002181 case Expr::SizeOfAlignOfExprClass: {
2182 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002183 // Special check for void types, which are allowed as an extension
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002184 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedman02c22ce2008-05-20 13:48:25 +00002185 return false;
2186 // alignof always evaluates to a constant.
2187 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002188 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002189 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002190 return true;
2191 }
2192 return false;
2193 }
2194 case Expr::BinaryOperatorClass: {
2195 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2196
2197 if (Exp->getLHS()->getType()->isArithmeticType() &&
2198 Exp->getRHS()->getType()->isArithmeticType()) {
2199 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2200 CheckArithmeticConstantExpression(Exp->getRHS());
2201 }
2202
Eli Friedman998dffb2008-06-09 05:05:07 +00002203 if (Exp->getLHS()->getType()->isPointerType() &&
2204 Exp->getRHS()->getType()->isPointerType()) {
2205 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2206 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2207
2208 // Only allow a null (constant integer) base; we could
2209 // allow some additional cases if necessary, but this
2210 // is sufficient to cover offsetof-like constructs.
2211 if (!LHSBase && !RHSBase) {
2212 return CheckAddressConstantExpression(Exp->getLHS()) ||
2213 CheckAddressConstantExpression(Exp->getRHS());
2214 }
2215 }
2216
Steve Narofffc08f5e2008-10-27 11:34:16 +00002217 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002218 return true;
2219 }
2220 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00002221 case Expr::CStyleCastExprClass: {
Nuno Lopes7dd54222009-02-02 22:57:15 +00002222 const CastExpr *CE = cast<CastExpr>(Init);
2223 const Expr *SubExpr = CE->getSubExpr();
2224
Eli Friedmand662caa2008-09-01 22:08:17 +00002225 if (SubExpr->getType()->isArithmeticType())
2226 return CheckArithmeticConstantExpression(SubExpr);
2227
Eli Friedman266df142008-09-02 09:37:00 +00002228 if (SubExpr->getType()->isPointerType()) {
2229 const Expr* Base = FindExpressionBaseAddress(SubExpr);
Nuno Lopes7dd54222009-02-02 22:57:15 +00002230 if (Base) {
2231 // the cast is only valid if done to a wide enough type
2232 if (Context.getTypeSize(CE->getType()) >=
2233 Context.getTypeSize(SubExpr->getType()))
2234 return false;
2235 } else {
2236 // If the pointer has a null base, this is an offsetof-like construct
2237 return CheckAddressConstantExpression(SubExpr);
2238 }
Eli Friedman266df142008-09-02 09:37:00 +00002239 }
2240
Steve Narofffc08f5e2008-10-27 11:34:16 +00002241 InitializerElementNotConstant(Init);
Eli Friedmand662caa2008-09-01 22:08:17 +00002242 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002243 }
2244 case Expr::ConditionalOperatorClass: {
2245 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner94d45412008-10-06 05:42:39 +00002246
2247 // If GNU extensions are disabled, we require all operands to be arithmetic
2248 // constant expressions.
2249 if (getLangOptions().NoExtensions) {
2250 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2251 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2252 CheckArithmeticConstantExpression(Exp->getRHS());
2253 }
2254
2255 // Otherwise, we have to emulate some of the behavior of fold here.
2256 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2257 // because it can constant fold things away. To retain compatibility with
2258 // GCC code, we see if we can fold the condition to a constant (which we
2259 // should always be able to do in theory). If so, we only require the
2260 // specified arm of the conditional to be a constant. This is a horrible
2261 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson8c3de802008-12-19 20:58:05 +00002262 Expr::EvalResult EvalResult;
2263 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2264 EvalResult.HasSideEffects) {
Chris Lattneref069662008-11-16 21:24:15 +00002265 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattner94d45412008-10-06 05:42:39 +00002266 // won't be able to either. Use it to emit the diagnostic though.
2267 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattneref069662008-11-16 21:24:15 +00002268 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattner94d45412008-10-06 05:42:39 +00002269 return Res;
2270 }
2271
2272 // Verify that the side following the condition is also a constant.
2273 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson8c3de802008-12-19 20:58:05 +00002274 if (EvalResult.Val.getInt() == 0)
Chris Lattner94d45412008-10-06 05:42:39 +00002275 std::swap(TrueSide, FalseSide);
2276
2277 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002278 return true;
Chris Lattner94d45412008-10-06 05:42:39 +00002279
2280 // Okay, the evaluated side evaluates to a constant, so we accept this.
2281 // Check to see if the other side is obviously not a constant. If so,
2282 // emit a warning that this is a GNU extension.
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002283 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner94d45412008-10-06 05:42:39 +00002284 Diag(Init->getExprLoc(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00002285 diag::ext_typecheck_expression_not_constant_but_accepted)
2286 << FalseSide->getSourceRange();
Chris Lattner94d45412008-10-06 05:42:39 +00002287 return false;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002288 }
2289 }
2290}
2291
2292bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00002293 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init))
2294 Init = DIE->getInit();
2295
Nuno Lopese7280452008-07-07 16:46:50 +00002296 Init = Init->IgnoreParens();
2297
Nate Begemand6d2f772009-01-18 03:20:47 +00002298 if (Init->isEvaluatable(Context))
Anders Carlssonf6791c62008-12-05 05:09:56 +00002299 return false;
2300
Eli Friedman02c22ce2008-05-20 13:48:25 +00002301 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2302 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2303 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2304
Nuno Lopese7280452008-07-07 16:46:50 +00002305 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2306 return CheckForConstantInitializer(e->getInitializer(), DclT);
2307
Douglas Gregorc9e012a2009-01-29 17:44:32 +00002308 if (isa<ImplicitValueInitExpr>(Init)) {
2309 // FIXME: In C++, check for non-POD types.
2310 return false;
2311 }
2312
Eli Friedman02c22ce2008-05-20 13:48:25 +00002313 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2314 unsigned numInits = Exp->getNumInits();
2315 for (unsigned i = 0; i < numInits; i++) {
2316 // FIXME: Need to get the type of the declaration for C++,
2317 // because it could be a reference?
Douglas Gregorf603b472009-01-28 21:54:33 +00002318
Eli Friedman02c22ce2008-05-20 13:48:25 +00002319 if (CheckForConstantInitializer(Exp->getInit(i),
2320 Exp->getInit(i)->getType()))
2321 return true;
2322 }
2323 return false;
2324 }
2325
Anders Carlssonf6791c62008-12-05 05:09:56 +00002326 // FIXME: We can probably remove some of this code below, now that
2327 // Expr::Evaluate is doing the heavy lifting for scalars.
2328
Eli Friedman02c22ce2008-05-20 13:48:25 +00002329 if (Init->isNullPointerConstant(Context))
2330 return false;
2331 if (Init->getType()->isArithmeticType()) {
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00002332 QualType InitTy = Context.getCanonicalType(Init->getType())
2333 .getUnqualifiedType();
Eli Friedman25086f02008-05-30 18:14:48 +00002334 if (InitTy == Context.BoolTy) {
2335 // Special handling for pointers implicitly cast to bool;
2336 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2337 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2338 Expr* SubE = ICE->getSubExpr();
2339 if (SubE->getType()->isPointerType() ||
2340 SubE->getType()->isArrayType() ||
2341 SubE->getType()->isFunctionType()) {
2342 return CheckAddressConstantExpression(Init);
2343 }
2344 }
2345 } else if (InitTy->isIntegralType()) {
2346 Expr* SubE = 0;
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00002347 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedman25086f02008-05-30 18:14:48 +00002348 SubE = CE->getSubExpr();
2349 // Special check for pointer cast to int; we allow as an extension
2350 // an address constant cast to an integer if the integer
2351 // is of an appropriate width (this sort of code is apparently used
2352 // in some places).
2353 // FIXME: Add pedwarn?
2354 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2355 if (SubE && (SubE->getType()->isPointerType() ||
2356 SubE->getType()->isArrayType() ||
2357 SubE->getType()->isFunctionType())) {
2358 unsigned IntWidth = Context.getTypeSize(Init->getType());
2359 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2360 if (IntWidth >= PointerWidth)
2361 return CheckAddressConstantExpression(Init);
2362 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002363 }
2364
2365 return CheckArithmeticConstantExpression(Init);
2366 }
2367
2368 if (Init->getType()->isPointerType())
2369 return CheckAddressConstantExpression(Init);
2370
Eli Friedman25086f02008-05-30 18:14:48 +00002371 // An array type at the top level that isn't an init-list must
2372 // be a string literal
Eli Friedman02c22ce2008-05-20 13:48:25 +00002373 if (Init->getType()->isArrayType())
2374 return false;
2375
Nuno Lopes1dc26762008-09-01 18:42:41 +00002376 if (Init->getType()->isFunctionType())
2377 return false;
2378
Steve Naroffdff3fb22008-10-02 17:12:56 +00002379 // Allow block exprs at top level.
2380 if (Init->getType()->isBlockPointerType())
2381 return false;
Nuno Lopes8260d5d2009-01-15 16:44:45 +00002382
2383 // GCC cast to union extension
2384 // note: the validity of the cast expr is checked by CheckCastTypes()
2385 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2386 QualType T = C->getType();
2387 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2388 }
2389
Steve Narofffc08f5e2008-10-27 11:34:16 +00002390 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002391 return true;
Steve Narofff0b23542008-01-10 22:15:12 +00002392}
2393
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002394void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002395 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2396}
2397
2398/// AddInitializerToDecl - Adds the initializer Init to the
2399/// declaration dcl. If DirectInit is true, this is C++ direct
2400/// initialization rather than copy initialization.
2401void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002402 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002403 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002404 assert(Init && "missing initializer");
Steve Naroff6a0e2092007-09-12 14:07:44 +00002405
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002406 // If there is no declaration, there was an error parsing it. Just ignore
2407 // the initializer.
2408 if (RealDecl == 0) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00002409 Init->Destroy(Context);
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002410 return;
2411 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002412
Steve Naroff420d0f52007-09-12 20:13:48 +00002413 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2414 if (!VDecl) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002415 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
Steve Naroff420d0f52007-09-12 20:13:48 +00002416 RealDecl->setInvalidDecl();
2417 return;
2418 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002419 // Get the decls type and save a reference for later, since
Steve Narofff0b23542008-01-10 22:15:12 +00002420 // CheckInitializerTypes may change it.
Steve Naroff420d0f52007-09-12 20:13:48 +00002421 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002422 if (VDecl->isBlockVarDecl()) {
2423 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002424 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff420d0f52007-09-12 20:13:48 +00002425 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002426 VDecl->setInvalidDecl();
2427 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002428 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002429 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002430 VDecl->setInvalidDecl();
Anders Carlssonea7140a2008-08-22 05:00:02 +00002431
2432 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2433 if (!getLangOptions().CPlusPlus) {
2434 if (SC == VarDecl::Static) // C99 6.7.8p4.
2435 CheckForConstantInitializer(Init, DclT);
2436 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002437 }
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002438 } else if (VDecl->isFileVarDecl()) {
2439 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff420d0f52007-09-12 20:13:48 +00002440 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002441 if (!VDecl->isInvalidDecl())
Douglas Gregor6428e762008-11-05 15:29:30 +00002442 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002443 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002444 VDecl->setInvalidDecl();
Steve Narofff0b23542008-01-10 22:15:12 +00002445
Anders Carlssonea7140a2008-08-22 05:00:02 +00002446 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2447 if (!getLangOptions().CPlusPlus) {
2448 // C99 6.7.8p4. All file scoped initializers need to be constant.
2449 CheckForConstantInitializer(Init, DclT);
2450 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002451 }
2452 // If the type changed, it means we had an incomplete type that was
2453 // completed by the initializer. For example:
2454 // int ary[] = { 1, 3, 5 };
2455 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb62f06b62007-11-29 19:09:19 +00002456 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002457 VDecl->setType(DclT);
Christopher Lamb62f06b62007-11-29 19:09:19 +00002458 Init->setType(DclT);
2459 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002460
2461 // Attach the initializer to the decl.
Steve Naroff420d0f52007-09-12 20:13:48 +00002462 VDecl->setInit(Init);
Steve Naroff6a0e2092007-09-12 14:07:44 +00002463 return;
2464}
2465
Douglas Gregor81c29152008-10-29 00:13:59 +00002466void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2467 Decl *RealDecl = static_cast<Decl *>(dcl);
2468
Argiris Kirtzidis9c0e9942008-11-07 13:01:22 +00002469 // If there is no declaration, there was an error parsing it. Just ignore it.
2470 if (RealDecl == 0)
2471 return;
2472
Douglas Gregor81c29152008-10-29 00:13:59 +00002473 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2474 QualType Type = Var->getType();
2475 // C++ [dcl.init.ref]p3:
2476 // The initializer can be omitted for a reference only in a
2477 // parameter declaration (8.3.5), in the declaration of a
2478 // function return type, in the declaration of a class member
2479 // within its class declaration (9.2), and where the extern
2480 // specifier is explicitly used.
Douglas Gregorb9213832008-12-15 21:24:18 +00002481 if (Type->isReferenceType() &&
2482 Var->getStorageClass() != VarDecl::Extern &&
2483 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner77d52da2008-11-20 06:06:08 +00002484 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattner271d4c22008-11-24 05:29:24 +00002485 << Var->getDeclName()
2486 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor5870a952008-11-03 20:45:27 +00002487 Var->setInvalidDecl();
2488 return;
2489 }
2490
2491 // C++ [dcl.init]p9:
2492 //
2493 // If no initializer is specified for an object, and the object
2494 // is of (possibly cv-qualified) non-POD class type (or array
2495 // thereof), the object shall be default-initialized; if the
2496 // object is of const-qualified type, the underlying class type
2497 // shall have a user-declared default constructor.
2498 if (getLangOptions().CPlusPlus) {
2499 QualType InitType = Type;
2500 if (const ArrayType *Array = Context.getAsArrayType(Type))
2501 InitType = Array->getElementType();
Douglas Gregorb9213832008-12-15 21:24:18 +00002502 if (Var->getStorageClass() != VarDecl::Extern &&
2503 Var->getStorageClass() != VarDecl::PrivateExtern &&
2504 InitType->isRecordType()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002505 const CXXConstructorDecl *Constructor
2506 = PerformInitializationByConstructor(InitType, 0, 0,
2507 Var->getLocation(),
2508 SourceRange(Var->getLocation(),
2509 Var->getLocation()),
Chris Lattner271d4c22008-11-24 05:29:24 +00002510 Var->getDeclName(),
Douglas Gregor6428e762008-11-05 15:29:30 +00002511 IK_Default);
Douglas Gregor5870a952008-11-03 20:45:27 +00002512 if (!Constructor)
2513 Var->setInvalidDecl();
2514 }
2515 }
Douglas Gregor81c29152008-10-29 00:13:59 +00002516
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002517#if 0
2518 // FIXME: Temporarily disabled because we are not properly parsing
2519 // linkage specifications on declarations, e.g.,
2520 //
2521 // extern "C" const CGPoint CGPointerZero;
2522 //
Douglas Gregor81c29152008-10-29 00:13:59 +00002523 // C++ [dcl.init]p9:
2524 //
2525 // If no initializer is specified for an object, and the
2526 // object is of (possibly cv-qualified) non-POD class type (or
2527 // array thereof), the object shall be default-initialized; if
2528 // the object is of const-qualified type, the underlying class
2529 // type shall have a user-declared default
2530 // constructor. Otherwise, if no initializer is specified for
2531 // an object, the object and its subobjects, if any, have an
2532 // indeterminate initial value; if the object or any of its
2533 // subobjects are of const-qualified type, the program is
2534 // ill-formed.
2535 //
2536 // This isn't technically an error in C, so we don't diagnose it.
2537 //
2538 // FIXME: Actually perform the POD/user-defined default
2539 // constructor check.
2540 if (getLangOptions().CPlusPlus &&
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002541 Context.getCanonicalType(Type).isConstQualified() &&
2542 Var->getStorageClass() != VarDecl::Extern)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002543 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2544 << Var->getName()
2545 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002546#endif
Douglas Gregor81c29152008-10-29 00:13:59 +00002547 }
2548}
2549
Chris Lattner4b009652007-07-25 00:24:17 +00002550/// The declarators are chained together backwards, reverse the list.
2551Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2552 // Often we have single declarators, handle them quickly.
Steve Naroff2591e1b2007-09-13 23:52:58 +00002553 Decl *GroupDecl = static_cast<Decl*>(group);
2554 if (GroupDecl == 0)
Steve Naroff6a0e2092007-09-12 14:07:44 +00002555 return 0;
Steve Naroff2591e1b2007-09-13 23:52:58 +00002556
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002557 Decl *Group = dyn_cast<Decl>(GroupDecl);
2558 Decl *NewGroup = 0;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002559 if (Group->getNextDeclarator() == 0)
Chris Lattner4b009652007-07-25 00:24:17 +00002560 NewGroup = Group;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002561 else { // reverse the list.
2562 while (Group) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002563 Decl *Next = Group->getNextDeclarator();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002564 Group->setNextDeclarator(NewGroup);
2565 NewGroup = Group;
2566 Group = Next;
2567 }
2568 }
2569 // Perform semantic analysis that depends on having fully processed both
2570 // the declarator and initializer.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002571 for (Decl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroff6a0e2092007-09-12 14:07:44 +00002572 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2573 if (!IDecl)
2574 continue;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002575 QualType T = IDecl->getType();
2576
Anders Carlsson68adbd12008-12-07 00:20:55 +00002577 if (T->isVariableArrayType()) {
Anders Carlssonef2f7df2008-12-20 21:51:53 +00002578 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002579
2580 // FIXME: This won't give the correct result for
2581 // int a[10][n];
2582 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002583 if (IDecl->isFileVarDecl()) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002584 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2585 SizeRange;
2586
Eli Friedman8ff07782008-02-15 18:16:39 +00002587 IDecl->setInvalidDecl();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002588 } else {
2589 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2590 // static storage duration, it shall not have a variable length array.
2591 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002592 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2593 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002594 IDecl->setInvalidDecl();
2595 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002596 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2597 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002598 IDecl->setInvalidDecl();
2599 }
2600 }
2601 } else if (T->isVariablyModifiedType()) {
2602 if (IDecl->isFileVarDecl()) {
2603 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2604 IDecl->setInvalidDecl();
2605 } else {
2606 if (IDecl->getStorageClass() == VarDecl::Extern) {
2607 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2608 IDecl->setInvalidDecl();
2609 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002610 }
2611 }
Anders Carlsson68adbd12008-12-07 00:20:55 +00002612
Steve Naroff6a0e2092007-09-12 14:07:44 +00002613 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2614 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002615 if (IDecl->isBlockVarDecl() &&
2616 IDecl->getStorageClass() != VarDecl::Extern) {
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002617 if (!IDecl->isInvalidDecl() &&
2618 DiagnoseIncompleteType(IDecl->getLocation(), T,
2619 diag::err_typecheck_decl_incomplete_type))
Steve Naroff6a0e2092007-09-12 14:07:44 +00002620 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002621 }
2622 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2623 // object that has file scope without an initializer, and without a
2624 // storage-class specifier or with the storage-class specifier "static",
2625 // constitutes a tentative definition. Note: A tentative definition with
2626 // external linkage is valid (C99 6.2.2p5).
Steve Naroffb5e78152008-08-08 17:50:35 +00002627 if (isTentativeDefinition(IDecl)) {
Eli Friedmane0079792008-02-15 12:53:51 +00002628 if (T->isIncompleteArrayType()) {
Steve Naroff60685462008-01-18 20:40:52 +00002629 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2630 // array to be completed. Don't issue a diagnostic.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002631 } else if (!IDecl->isInvalidDecl() &&
2632 DiagnoseIncompleteType(IDecl->getLocation(), T,
2633 diag::err_typecheck_decl_incomplete_type))
Steve Naroff60685462008-01-18 20:40:52 +00002634 // C99 6.9.2p3: If the declaration of an identifier for an object is
2635 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2636 // declared type shall not be an incomplete type.
Steve Naroff6a0e2092007-09-12 14:07:44 +00002637 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002638 }
Steve Naroffb5e78152008-08-08 17:50:35 +00002639 if (IDecl->isFileVarDecl())
2640 CheckForFileScopedRedefinitions(S, IDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00002641 }
2642 return NewGroup;
2643}
Steve Naroff91b03f72007-08-28 03:03:08 +00002644
Chris Lattner3e254fb2008-04-08 04:40:51 +00002645/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2646/// to introduce parameters into function prototype scope.
2647Sema::DeclTy *
2648Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner5e77ade2008-06-26 06:49:43 +00002649 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002650
Chris Lattner3e254fb2008-04-08 04:40:51 +00002651 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002652 VarDecl::StorageClass StorageClass = VarDecl::None;
2653 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2654 StorageClass = VarDecl::Register;
2655 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002656 Diag(DS.getStorageClassSpecLoc(),
2657 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002658 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002659 }
2660 if (DS.isThreadSpecified()) {
2661 Diag(DS.getThreadSpecLoc(),
2662 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002663 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002664 }
2665
Douglas Gregor2b9422f2008-05-07 04:49:29 +00002666 // Check that there are no default arguments inside the type of this
2667 // parameter (C++ only).
2668 if (getLangOptions().CPlusPlus)
2669 CheckExtraCXXDefaultArguments(D);
2670
Chris Lattner3e254fb2008-04-08 04:40:51 +00002671 // In this context, we *do not* check D.getInvalidType(). If the declarator
2672 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2673 // though it will not reflect the user specified type.
2674 QualType parmDeclType = GetTypeForDeclarator(D, S);
2675
2676 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2677
Chris Lattner4b009652007-07-25 00:24:17 +00002678 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2679 // Can this happen for params? We already checked that they don't conflict
2680 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002681 IdentifierInfo *II = D.getIdentifier();
Chris Lattner310dea32009-01-21 02:38:50 +00002682 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00002683 if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) {
Chris Lattner310dea32009-01-21 02:38:50 +00002684 if (PrevDecl->isTemplateParameter()) {
2685 // Maybe we will complain about the shadowed template parameter.
2686 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2687 // Just pretend that we didn't see the previous declaration.
2688 PrevDecl = 0;
2689 } else if (S->isDeclScope(PrevDecl)) {
2690 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002691
Chris Lattner310dea32009-01-21 02:38:50 +00002692 // Recover by removing the name
2693 II = 0;
2694 D.SetIdentifier(0, D.getIdentifierLoc());
2695 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002696 }
Chris Lattner4b009652007-07-25 00:24:17 +00002697 }
Steve Naroff94cd93f2007-08-07 22:44:21 +00002698
2699 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2700 // Doing the promotion here has a win and a loss. The win is the type for
2701 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2702 // code generator). The loss is the orginal type isn't preserved. For example:
2703 //
2704 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2705 // int blockvardecl[5];
2706 // sizeof(parmvardecl); // size == 4
2707 // sizeof(blockvardecl); // size == 20
2708 // }
2709 //
2710 // For expressions, all implicit conversions are captured using the
2711 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2712 //
2713 // FIXME: If a source translation tool needs to see the original type, then
2714 // we need to consider storing both types (in ParmVarDecl)...
2715 //
Chris Lattner19eb97e2008-04-02 05:18:44 +00002716 if (parmDeclType->isArrayType()) {
Chris Lattnerc08564a2008-01-02 22:50:48 +00002717 // int x[restrict 4] -> int *restrict
Chris Lattner19eb97e2008-04-02 05:18:44 +00002718 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattnerc08564a2008-01-02 22:50:48 +00002719 } else if (parmDeclType->isFunctionType())
Steve Naroff94cd93f2007-08-07 22:44:21 +00002720 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor8acb7272008-12-11 16:49:14 +00002721
Chris Lattner3e254fb2008-04-08 04:40:51 +00002722 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2723 D.getIdentifierLoc(), II,
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002724 parmDeclType, StorageClass,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002725 0);
Anders Carlsson3f70c542008-02-15 07:04:12 +00002726
Chris Lattner3e254fb2008-04-08 04:40:51 +00002727 if (D.getInvalidType())
Steve Naroffcae537d2007-08-28 18:45:29 +00002728 New->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00002729
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002730 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2731 if (D.getCXXScopeSpec().isSet()) {
2732 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2733 << D.getCXXScopeSpec().getRange();
2734 New->setInvalidDecl();
2735 }
2736
Douglas Gregor8acb7272008-12-11 16:49:14 +00002737 // Add the parameter declaration into this scope.
2738 S->AddDecl(New);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002739 if (II)
Douglas Gregor8acb7272008-12-11 16:49:14 +00002740 IdResolver.AddDecl(New);
Nate Begeman9f3c4bb2008-02-17 21:20:31 +00002741
Chris Lattner9b384ca2008-06-29 00:02:00 +00002742 ProcessDeclAttributes(New, D);
Chris Lattner4b009652007-07-25 00:24:17 +00002743 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002744
Chris Lattner4b009652007-07-25 00:24:17 +00002745}
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00002746
Douglas Gregor65075ec2009-01-23 16:23:13 +00002747void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D) {
Chris Lattner4b009652007-07-25 00:24:17 +00002748 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2749 "Not a function declarator!");
2750 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002751
Chris Lattner4b009652007-07-25 00:24:17 +00002752 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2753 // for a K&R function.
2754 if (!FTI.hasPrototype) {
2755 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002756 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002757 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2758 << FTI.ArgInfo[i].Ident;
Chris Lattner4b009652007-07-25 00:24:17 +00002759 // Implicitly declare the argument as type 'int' for lack of a better
2760 // type.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002761 DeclSpec DS;
2762 const char* PrevSpec; // unused
2763 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2764 PrevSpec);
2765 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2766 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
Douglas Gregor65075ec2009-01-23 16:23:13 +00002767 FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
Chris Lattner4b009652007-07-25 00:24:17 +00002768 }
2769 }
Douglas Gregor65075ec2009-01-23 16:23:13 +00002770 }
2771}
2772
2773Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
2774 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
2775 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2776 "Not a function declarator!");
2777 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2778
2779 if (FTI.hasPrototype) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002780 // FIXME: Diagnose arguments without names in C.
Chris Lattner4b009652007-07-25 00:24:17 +00002781 }
2782
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002783 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroff1d5bd642008-01-14 20:51:29 +00002784
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002785 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002786 ActOnDeclarator(ParentScope, D, 0,
2787 /*IsFunctionDefinition=*/true));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002788}
2789
2790Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2791 Decl *decl = static_cast<Decl*>(D);
Chris Lattner2d2216b2008-02-16 01:20:36 +00002792 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregor56da7862008-10-29 15:10:40 +00002793
2794 // See if this is a redefinition.
2795 const FunctionDecl *Definition;
2796 if (FD->getBody(Definition)) {
Chris Lattnerb1753422008-11-23 21:45:46 +00002797 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +00002798 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregor56da7862008-10-29 15:10:40 +00002799 }
2800
Douglas Gregor083c23e2009-02-16 17:45:42 +00002801 // Builtin functions cannot be defined.
2802 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
2803 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
2804 Diag(FD->getLocation(), diag::err_builtin_lib_definition) << FD;
2805 Diag(FD->getLocation(), diag::note_builtin_lib_def_freestanding);
2806 } else
2807 Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
2808 FD->setInvalidDecl();
2809 }
2810
Douglas Gregor8acb7272008-12-11 16:49:14 +00002811 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002812
Chris Lattner3e254fb2008-04-08 04:40:51 +00002813 // Check the validity of our function parameters
2814 CheckParmsForFunctionDef(FD);
2815
2816 // Introduce our parameters into the function scope
2817 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2818 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregord394a272009-01-09 18:51:29 +00002819 Param->setOwningFunction(FD);
2820
Chris Lattner3e254fb2008-04-08 04:40:51 +00002821 // If this has an identifier, add it to the scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002822 if (Param->getIdentifier())
2823 PushOnScopeChains(Param, FnBodyScope);
Chris Lattner4b009652007-07-25 00:24:17 +00002824 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002825
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002826 // Checking attributes of current function definition
2827 // dllimport attribute.
2828 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2829 // dllimport attribute cannot be applied to definition.
2830 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2831 Diag(FD->getLocation(),
2832 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2833 << "dllimport";
2834 FD->setInvalidDecl();
2835 return FD;
2836 } else {
2837 // If a symbol previously declared dllimport is later defined, the
2838 // attribute is ignored in subsequent references, and a warning is
2839 // emitted.
2840 Diag(FD->getLocation(),
2841 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2842 << FD->getNameAsCString() << "dllimport";
2843 }
2844 }
Chris Lattner4b009652007-07-25 00:24:17 +00002845 return FD;
2846}
2847
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002848Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroff99ee4302007-11-11 23:20:51 +00002849 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002850 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff3ac43f92008-07-25 17:57:26 +00002851 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002852 FD->setBody(Body);
Argiris Kirtzidis95256e62008-06-28 06:07:14 +00002853 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff3ac43f92008-07-25 17:57:26 +00002854 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Chris Lattner5e3f2172009-02-16 19:27:54 +00002855 assert(MD == getCurMethodDecl() && "Method parsing confused");
Steve Naroff99ee4302007-11-11 23:20:51 +00002856 MD->setBody((Stmt*)Body);
Ted Kremenek0c97e042009-02-07 01:47:29 +00002857 } else {
2858 Body->Destroy(Context);
Steve Naroff3ac43f92008-07-25 17:57:26 +00002859 return 0;
Ted Kremenek0c97e042009-02-07 01:47:29 +00002860 }
Chris Lattnerf3874bc2008-04-06 04:47:34 +00002861 PopDeclContext();
Chris Lattner4b009652007-07-25 00:24:17 +00002862 // Verify and clean out per-function state.
2863
2864 // Check goto/label use.
2865 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2866 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
2867 // Verify that we have no forward references left. If so, there was a goto
2868 // or address of a label taken, but no definition of it. Label fwd
2869 // definitions are indicated with a null substmt.
2870 if (I->second->getSubStmt() == 0) {
2871 LabelStmt *L = I->second;
2872 // Emit error.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002873 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Chris Lattner4b009652007-07-25 00:24:17 +00002874
2875 // At this point, we have gotos that use the bogus label. Stitch it into
2876 // the function body so that they aren't leaked and that the AST is well
2877 // formed.
Chris Lattner83343342008-01-25 00:01:10 +00002878 if (Body) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00002879#if 0
2880 // FIXME: Why do this? Having a 'push_back' in CompoundStmt is ugly,
2881 // and the AST is malformed anyway. We should just blow away 'L'.
2882 L->setSubStmt(new (Context) NullStmt(L->getIdentLoc()));
2883 cast<CompoundStmt>(Body)->push_back(L);
2884#else
2885 L->Destroy(Context);
2886#endif
Chris Lattner83343342008-01-25 00:01:10 +00002887 } else {
2888 // The whole function wasn't parsed correctly, just delete this.
Ted Kremenek0c97e042009-02-07 01:47:29 +00002889 L->Destroy(Context);
Chris Lattner83343342008-01-25 00:01:10 +00002890 }
Chris Lattner4b009652007-07-25 00:24:17 +00002891 }
2892 }
2893 LabelMap.clear();
2894
Steve Naroff99ee4302007-11-11 23:20:51 +00002895 return D;
Fariborz Jahaniane6f59f12007-11-10 16:31:34 +00002896}
2897
Chris Lattner4b009652007-07-25 00:24:17 +00002898/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2899/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002900NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2901 IdentifierInfo &II, Scope *S) {
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002902 // Extension in C99. Legal in C90, but warn about it.
2903 if (getLangOptions().C99)
Chris Lattner65cae292008-11-19 08:23:25 +00002904 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002905 else
Chris Lattner65cae292008-11-19 08:23:25 +00002906 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Chris Lattner4b009652007-07-25 00:24:17 +00002907
2908 // FIXME: handle stuff like:
2909 // void foo() { extern float X(); }
2910 // void bar() { X(); } <-- implicit decl for X in another scope.
2911
2912 // Set a Declarator for the implicit definition: int foo();
2913 const char *Dummy;
2914 DeclSpec DS;
2915 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
2916 Error = Error; // Silence warning.
2917 assert(!Error && "Error setting up implicit decl!");
2918 Declarator D(DS, Declarator::BlockContext);
Sebastian Redl0c986032009-02-09 18:23:29 +00002919 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc, D),
2920 SourceLocation());
Chris Lattner4b009652007-07-25 00:24:17 +00002921 D.SetIdentifier(&II, Loc);
Sebastian Redl0c986032009-02-09 18:23:29 +00002922
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00002923 // Insert this function into translation-unit scope.
2924
2925 DeclContext *PrevDC = CurContext;
2926 CurContext = Context.getTranslationUnitDecl();
2927
Steve Naroff9104f3c2008-04-04 14:32:09 +00002928 FunctionDecl *FD =
Daniel Dunbar72eaf8a2008-08-05 16:28:08 +00002929 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroff9104f3c2008-04-04 14:32:09 +00002930 FD->setImplicit();
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00002931
2932 CurContext = PrevDC;
2933
Douglas Gregorb5af7382009-02-14 18:57:46 +00002934 AddKnownFunctionAttributes(FD);
2935
Steve Naroff9104f3c2008-04-04 14:32:09 +00002936 return FD;
Chris Lattner4b009652007-07-25 00:24:17 +00002937}
2938
Douglas Gregorb5af7382009-02-14 18:57:46 +00002939/// \brief Adds any function attributes that we know a priori based on
2940/// the declaration of this function.
2941///
2942/// These attributes can apply both to implicitly-declared builtins
2943/// (like __builtin___printf_chk) or to library-declared functions
2944/// like NSLog or printf.
2945void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
2946 if (FD->isInvalidDecl())
2947 return;
2948
2949 // If this is a built-in function, map its builtin attributes to
2950 // actual attributes.
2951 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
2952 // Handle printf-formatting attributes.
2953 unsigned FormatIdx;
2954 bool HasVAListArg;
2955 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
2956 if (!FD->getAttr<FormatAttr>())
2957 FD->addAttr(new FormatAttr("printf", FormatIdx + 1, FormatIdx + 2));
2958 }
Daniel Dunbarfd46ea22009-02-16 22:43:43 +00002959
2960 // Mark const if we don't care about errno and that is the only
2961 // thing preventing the function from being const. This allows
2962 // IRgen to use LLVM intrinsics for such functions.
2963 if (!getLangOptions().MathErrno &&
2964 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
2965 if (!FD->getAttr<ConstAttr>())
2966 FD->addAttr(new ConstAttr());
2967 }
Douglas Gregorb5af7382009-02-14 18:57:46 +00002968 }
2969
2970 IdentifierInfo *Name = FD->getIdentifier();
2971 if (!Name)
2972 return;
2973 if ((!getLangOptions().CPlusPlus &&
2974 FD->getDeclContext()->isTranslationUnit()) ||
2975 (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
2976 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
2977 LinkageSpecDecl::lang_c)) {
2978 // Okay: this could be a libc/libm/Objective-C function we know
2979 // about.
2980 } else
2981 return;
2982
2983 unsigned KnownID;
2984 for (KnownID = 0; KnownID != id_num_known_functions; ++KnownID)
2985 if (KnownFunctionIDs[KnownID] == Name)
2986 break;
2987
2988 switch (KnownID) {
2989 case id_NSLog:
2990 case id_NSLogv:
2991 if (const FormatAttr *Format = FD->getAttr<FormatAttr>()) {
2992 // FIXME: We known better than our headers.
2993 const_cast<FormatAttr *>(Format)->setType("printf");
2994 } else
2995 FD->addAttr(new FormatAttr("printf", 1, 2));
2996 break;
2997
2998 case id_asprintf:
2999 case id_vasprintf:
3000 if (!FD->getAttr<FormatAttr>())
3001 FD->addAttr(new FormatAttr("printf", 2, 3));
3002 break;
3003
3004 default:
3005 // Unknown function or known function without any attributes to
3006 // add. Do nothing.
3007 break;
3008 }
3009}
Chris Lattner4b009652007-07-25 00:24:17 +00003010
Chris Lattner82bb4792007-11-14 06:34:38 +00003011TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003012 Decl *LastDeclarator) {
Chris Lattner4b009652007-07-25 00:24:17 +00003013 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003014 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Chris Lattner4b009652007-07-25 00:24:17 +00003015
3016 // Scope manipulation handled by caller.
Chris Lattnereee57c02008-04-04 06:12:32 +00003017 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
3018 D.getIdentifierLoc(),
Chris Lattnere4650482008-03-15 06:12:44 +00003019 D.getIdentifier(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003020 T);
3021 NewTD->setNextDeclarator(LastDeclarator);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003022 if (D.getInvalidType())
3023 NewTD->setInvalidDecl();
3024 return NewTD;
Chris Lattner4b009652007-07-25 00:24:17 +00003025}
3026
Steve Naroff0acc9c92007-09-15 18:49:24 +00003027/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Chris Lattner4b009652007-07-25 00:24:17 +00003028/// former case, Name will be non-null. In the later case, Name will be null.
Douglas Gregor98b27542009-01-17 00:42:38 +00003029/// TagSpec indicates what kind of tag this is. TK indicates whether this is a
Chris Lattner4b009652007-07-25 00:24:17 +00003030/// reference/declaration/definition of a tag.
Douglas Gregor98b27542009-01-17 00:42:38 +00003031Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagKind TK,
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +00003032 SourceLocation KWLoc, const CXXScopeSpec &SS,
3033 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregord406b032009-02-06 22:42:48 +00003034 AttributeList *Attr) {
Douglas Gregorae644892008-12-15 16:32:14 +00003035 // If this is not a definition, it must have a name.
Chris Lattner4b009652007-07-25 00:24:17 +00003036 assert((Name != 0 || TK == TK_Definition) &&
3037 "Nameless record must be a definition!");
Douglas Gregor279272e2009-02-04 19:02:06 +00003038
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003039 TagDecl::TagKind Kind;
Douglas Gregor98b27542009-01-17 00:42:38 +00003040 switch (TagSpec) {
Chris Lattner4b009652007-07-25 00:24:17 +00003041 default: assert(0 && "Unknown tag type!");
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003042 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
3043 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
3044 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
3045 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Chris Lattner4b009652007-07-25 00:24:17 +00003046 }
3047
Douglas Gregorb748fc52009-01-12 22:49:06 +00003048 DeclContext *SearchDC = CurContext;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003049 DeclContext *DC = CurContext;
Douglas Gregor09be81b2009-02-04 17:27:36 +00003050 NamedDecl *PrevDecl = 0;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00003051
Douglas Gregor98b27542009-01-17 00:42:38 +00003052 bool Invalid = false;
3053
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003054 if (Name && SS.isNotEmpty()) {
3055 // We have a nested-name tag ('struct foo::bar').
3056
3057 // Check for invalid 'foo::'.
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003058 if (SS.isInvalid()) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003059 Name = 0;
3060 goto CreateNewDecl;
3061 }
3062
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003063 DC = static_cast<DeclContext*>(SS.getScopeRep());
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003064 SearchDC = DC;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00003065 // Look-up name inside 'foo::'.
Steve Naroffc349ee22009-01-29 00:07:50 +00003066 PrevDecl = dyn_cast_or_null<TagDecl>(
Douglas Gregor7a7be652009-02-03 19:21:40 +00003067 LookupQualifiedName(DC, Name, LookupTagName, true).getAsDecl());
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003068
3069 // A tag 'foo::bar' must already exist.
3070 if (PrevDecl == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00003071 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003072 Name = 0;
3073 goto CreateNewDecl;
3074 }
Chris Lattner310dea32009-01-21 02:38:50 +00003075 } else if (Name) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003076 // If this is a named struct, check to see if there was a previous forward
3077 // declaration or definition.
Douglas Gregor7a7be652009-02-03 19:21:40 +00003078 // FIXME: We're looking into outer scopes here, even when we
3079 // shouldn't be. Doing so can result in ambiguities that we
3080 // shouldn't be diagnosing.
Douglas Gregor362c8952009-02-03 19:26:08 +00003081 LookupResult R = LookupName(S, Name, LookupTagName,
3082 /*RedeclarationOnly=*/(TK != TK_Reference));
Douglas Gregor7a7be652009-02-03 19:21:40 +00003083 if (R.isAmbiguous()) {
3084 DiagnoseAmbiguousLookup(R, Name, NameLoc);
3085 // FIXME: This is not best way to recover from case like:
3086 //
3087 // struct S s;
3088 //
3089 // causes needless err_ovl_no_viable_function_in_init latter.
3090 Name = 0;
3091 PrevDecl = 0;
3092 Invalid = true;
3093 }
3094 else
Douglas Gregor09be81b2009-02-04 17:27:36 +00003095 PrevDecl = R;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003096
3097 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
3098 // FIXME: This makes sure that we ignore the contexts associated
3099 // with C structs, unions, and enums when looking for a matching
3100 // tag declaration or definition. See the similar lookup tweak
Douglas Gregor52ae30c2009-01-30 01:04:22 +00003101 // in Sema::LookupName; is there a better way to deal with this?
Douglas Gregorb748fc52009-01-12 22:49:06 +00003102 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
3103 SearchDC = SearchDC->getParent();
Douglas Gregordb568cf2009-01-08 20:45:30 +00003104 }
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00003105 }
3106
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003107 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003108 // Maybe we will complain about the shadowed template parameter.
3109 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
3110 // Just pretend that we didn't see the previous declaration.
3111 PrevDecl = 0;
3112 }
3113
Chris Lattner31ccf0a2009-02-16 22:07:16 +00003114 if (PrevDecl) {
3115 // If the previous declaration was deprecated, emit a warning.
3116 DiagnoseUseOfDeprecatedDecl(PrevDecl, NameLoc);
3117
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003118 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003119 // If this is a use of a previous tag, or if the tag is already declared
3120 // in the same scope (so that the definition/declaration completes or
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003121 // rementions the tag), reuse the decl.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003122 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003123 // Make sure that this wasn't declared as an enum and now used as a
3124 // struct or something similar.
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003125 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner65cae292008-11-19 08:23:25 +00003126 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00003127 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003128 // Recover by making this an anonymous redefinition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003129 Name = 0;
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003130 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003131 Invalid = true;
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003132 } else {
Douglas Gregorae644892008-12-15 16:32:14 +00003133 // If this is a use, just return the declaration we found.
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003134
Douglas Gregorae644892008-12-15 16:32:14 +00003135 // FIXME: In the future, return a variant or some other clue
3136 // for the consumer of this Decl to know it doesn't own it.
3137 // For our current ASTs this shouldn't be a problem, but will
3138 // need to be changed with DeclGroups.
3139 if (TK == TK_Reference)
Chris Lattner5bf0ad52008-07-03 03:30:58 +00003140 return PrevDecl;
Douglas Gregor279272e2009-02-04 19:02:06 +00003141
Douglas Gregorae644892008-12-15 16:32:14 +00003142 // Diagnose attempts to redefine a tag.
3143 if (TK == TK_Definition) {
3144 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
3145 Diag(NameLoc, diag::err_redefinition) << Name;
3146 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregor98b27542009-01-17 00:42:38 +00003147 // If this is a redefinition, recover by making this
3148 // struct be anonymous, which will make any later
3149 // references get the previous definition.
Douglas Gregorae644892008-12-15 16:32:14 +00003150 Name = 0;
3151 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003152 Invalid = true;
3153 } else {
3154 // If the type is currently being defined, complain
3155 // about a nested redefinition.
3156 TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
3157 if (Tag->isBeingDefined()) {
3158 Diag(NameLoc, diag::err_nested_redefinition) << Name;
3159 Diag(PrevTagDecl->getLocation(),
3160 diag::note_previous_definition);
3161 Name = 0;
3162 PrevDecl = 0;
3163 Invalid = true;
3164 }
Douglas Gregorae644892008-12-15 16:32:14 +00003165 }
Douglas Gregor98b27542009-01-17 00:42:38 +00003166
Douglas Gregorae644892008-12-15 16:32:14 +00003167 // Okay, this is definition of a previously declared or referenced
3168 // tag PrevDecl. We're going to create a new Decl for it.
Douglas Gregor98b27542009-01-17 00:42:38 +00003169 }
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003170 }
Douglas Gregorae644892008-12-15 16:32:14 +00003171 // If we get here we have (another) forward declaration or we
3172 // have a definition. Just create a new decl.
3173 } else {
3174 // If we get here, this is a definition of a new tag type in a nested
3175 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
3176 // new decl/type. We set PrevDecl to NULL so that the entities
3177 // have distinct types.
3178 PrevDecl = 0;
Chris Lattner4b009652007-07-25 00:24:17 +00003179 }
Douglas Gregorae644892008-12-15 16:32:14 +00003180 // If we get here, we're going to create a new Decl. If PrevDecl
3181 // is non-NULL, it's a definition of the tag declared by
3182 // PrevDecl. If it's NULL, we have a new definition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00003183 } else {
Douglas Gregorb31f2942009-01-28 17:15:10 +00003184 // PrevDecl is a namespace, template, or anything else
3185 // that lives in the IDNS_Tag identifier namespace.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003186 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremenek40e70e72008-09-03 18:03:35 +00003187 // The tag name clashes with a namespace name, issue an error and
3188 // recover by making this tag be anonymous.
Chris Lattner65cae292008-11-19 08:23:25 +00003189 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00003190 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003191 Name = 0;
Douglas Gregorae644892008-12-15 16:32:14 +00003192 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003193 Invalid = true;
Douglas Gregorae644892008-12-15 16:32:14 +00003194 } else {
3195 // The existing declaration isn't relevant to us; we're in a
3196 // new scope, so clear out the previous declaration.
3197 PrevDecl = 0;
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003198 }
Chris Lattner4b009652007-07-25 00:24:17 +00003199 }
Douglas Gregorcab994d2009-01-09 22:42:13 +00003200 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
3201 (Kind != TagDecl::TK_enum)) {
3202 // C++ [basic.scope.pdecl]p5:
3203 // -- for an elaborated-type-specifier of the form
3204 //
3205 // class-key identifier
3206 //
3207 // if the elaborated-type-specifier is used in the
3208 // decl-specifier-seq or parameter-declaration-clause of a
3209 // function defined in namespace scope, the identifier is
3210 // declared as a class-name in the namespace that contains
3211 // the declaration; otherwise, except as a friend
3212 // declaration, the identifier is declared in the smallest
3213 // non-class, non-function-prototype scope that contains the
3214 // declaration.
3215 //
3216 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
3217 // C structs and unions.
3218
3219 // Find the context where we'll be declaring the tag.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003220 // FIXME: We would like to maintain the current DeclContext as the
3221 // lexical context,
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003222 while (SearchDC->isRecord())
3223 SearchDC = SearchDC->getParent();
Douglas Gregorcab994d2009-01-09 22:42:13 +00003224
3225 // Find the scope where we'll be declaring the tag.
3226 while (S->isClassScope() ||
3227 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003228 ((S->getFlags() & Scope::DeclScope) == 0) ||
3229 (S->getEntity() &&
3230 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregorcab994d2009-01-09 22:42:13 +00003231 S = S->getParent();
Chris Lattner4b009652007-07-25 00:24:17 +00003232 }
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00003233
Chris Lattner9bb9abf2008-12-17 07:13:27 +00003234CreateNewDecl:
Chris Lattner4b009652007-07-25 00:24:17 +00003235
3236 // If there is an identifier, use the location of the identifier as the
3237 // location of the decl, otherwise use the location of the struct/union
3238 // keyword.
3239 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
3240
Douglas Gregorae644892008-12-15 16:32:14 +00003241 // Otherwise, create a new declaration. If there is a previous
3242 // declaration of the same entity, the two will be linked via
3243 // PrevDecl.
Chris Lattner4b009652007-07-25 00:24:17 +00003244 TagDecl *New;
Douglas Gregor723d3332009-01-07 00:43:41 +00003245
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003246 if (Kind == TagDecl::TK_enum) {
Chris Lattner4b009652007-07-25 00:24:17 +00003247 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3248 // enum X { A, B, C } D; D should chain to X.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003249 New = EnumDecl::Create(Context, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003250 cast_or_null<EnumDecl>(PrevDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003251 // If this is an undefined enum, warn.
3252 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003253 } else {
3254 // struct/union/class
3255
Chris Lattner4b009652007-07-25 00:24:17 +00003256 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3257 // struct X { int A; } D; D should chain to X.
Douglas Gregord406b032009-02-06 22:42:48 +00003258 if (getLangOptions().CPlusPlus)
Ted Kremenek770b11d2008-09-05 17:39:33 +00003259 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003260 New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003261 cast_or_null<CXXRecordDecl>(PrevDecl));
Douglas Gregord406b032009-02-06 22:42:48 +00003262 else
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003263 New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003264 cast_or_null<RecordDecl>(PrevDecl));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003265 }
Douglas Gregorae644892008-12-15 16:32:14 +00003266
3267 if (Kind != TagDecl::TK_enum) {
3268 // Handle #pragma pack: if the #pragma pack stack has non-default
3269 // alignment, make up a packed attribute for this decl. These
3270 // attributes are checked when the ASTContext lays out the
3271 // structure.
3272 //
3273 // It is important for implementing the correct semantics that this
3274 // happen here (in act on tag decl). The #pragma pack stack is
3275 // maintained as a result of parser callbacks which can occur at
3276 // many points during the parsing of a struct declaration (because
3277 // the #pragma tokens are effectively skipped over during the
3278 // parsing of the struct).
Chris Lattnera8699562009-02-17 01:09:29 +00003279 if (unsigned Alignment = getPragmaPackAlignment())
Douglas Gregorae644892008-12-15 16:32:14 +00003280 New->addAttr(new PackedAttr(Alignment * 8));
3281 }
3282
Douglas Gregorb31f2942009-01-28 17:15:10 +00003283 if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
3284 // C++ [dcl.typedef]p3:
3285 // [...] Similarly, in a given scope, a class or enumeration
3286 // shall not be declared with the same name as a typedef-name
3287 // that is declared in that scope and refers to a type other
3288 // than the class or enumeration itself.
Douglas Gregor52ae30c2009-01-30 01:04:22 +00003289 LookupResult Lookup = LookupName(S, Name, LookupOrdinaryName, true);
Douglas Gregorb31f2942009-01-28 17:15:10 +00003290 TypedefDecl *PrevTypedef = 0;
3291 if (Lookup.getKind() == LookupResult::Found)
3292 PrevTypedef = dyn_cast<TypedefDecl>(Lookup.getAsDecl());
3293
3294 if (PrevTypedef && isDeclInScope(PrevTypedef, SearchDC, S) &&
3295 Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
3296 Context.getCanonicalType(Context.getTypeDeclType(New))) {
3297 Diag(Loc, diag::err_tag_definition_of_typedef)
3298 << Context.getTypeDeclType(New)
3299 << PrevTypedef->getUnderlyingType();
3300 Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
3301 Invalid = true;
3302 }
3303 }
3304
Douglas Gregor98b27542009-01-17 00:42:38 +00003305 if (Invalid)
3306 New->setInvalidDecl();
3307
Douglas Gregorae644892008-12-15 16:32:14 +00003308 if (Attr)
3309 ProcessDeclAttributeList(New, Attr);
3310
Douglas Gregor98b27542009-01-17 00:42:38 +00003311 // If we're declaring or defining a tag in function prototype scope
3312 // in C, note that this type can only be used within the function.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003313 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3314 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3315
Douglas Gregorae644892008-12-15 16:32:14 +00003316 // Set the lexical context. If the tag has a C++ scope specifier, the
3317 // lexical context will be different from the semantic context.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003318 New->setLexicalDeclContext(CurContext);
Douglas Gregor98b27542009-01-17 00:42:38 +00003319
3320 if (TK == TK_Definition)
3321 New->startDefinition();
Chris Lattner4b009652007-07-25 00:24:17 +00003322
3323 // If this has an identifier, add it to the scope stack.
3324 if (Name) {
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003325 S = getNonFieldDeclScope(S);
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003326 PushOnScopeChains(New, S);
Douglas Gregorb748fc52009-01-12 22:49:06 +00003327 } else {
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003328 CurContext->addDecl(New);
Chris Lattner4b009652007-07-25 00:24:17 +00003329 }
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00003330
Chris Lattner4b009652007-07-25 00:24:17 +00003331 return New;
3332}
3333
Douglas Gregordb568cf2009-01-08 20:45:30 +00003334void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregor279272e2009-02-04 19:02:06 +00003335 AdjustDeclIfTemplate(TagD);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003336 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3337
3338 // Enter the tag context.
3339 PushDeclContext(S, Tag);
3340
3341 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3342 FieldCollector->StartClass();
3343
3344 if (Record->getIdentifier()) {
3345 // C++ [class]p2:
3346 // [...] The class-name is also inserted into the scope of the
3347 // class itself; this is known as the injected-class-name. For
3348 // purposes of access checking, the injected-class-name is treated
3349 // as if it were a public member name.
3350 RecordDecl *InjectedClassName
3351 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3352 CurContext, Record->getLocation(),
3353 Record->getIdentifier(), Record);
3354 InjectedClassName->setImplicit();
3355 PushOnScopeChains(InjectedClassName, S);
3356 }
3357 }
3358}
3359
3360void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregor279272e2009-02-04 19:02:06 +00003361 AdjustDeclIfTemplate(TagD);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003362 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3363
3364 if (isa<CXXRecordDecl>(Tag))
3365 FieldCollector->FinishClass();
3366
3367 // Exit this scope of this tag's definition.
3368 PopDeclContext();
3369
3370 // Notify the consumer that we've defined a tag.
3371 Consumer.HandleTagDeclDefinition(Tag);
3372}
Chris Lattner1bf58f62008-06-21 19:39:06 +00003373
Chris Lattnera73e2202008-11-12 21:17:48 +00003374/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
3375/// types into constant array types in certain situations which would otherwise
3376/// be errors (for GCC compatibility).
3377static QualType TryToFixInvalidVariablyModifiedType(QualType T,
3378 ASTContext &Context) {
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003379 // This method tries to turn a variable array into a constant
3380 // array even when the size isn't an ICE. This is necessary
3381 // for compatibility with code that depends on gcc's buggy
3382 // constant expression folding, like struct {char x[(int)(char*)2];}
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003383 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
3384 if (!VLATy) return QualType();
3385
Anders Carlsson8c3de802008-12-19 20:58:05 +00003386 Expr::EvalResult EvalResult;
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003387 if (!VLATy->getSizeExpr() ||
Anders Carlsson8c3de802008-12-19 20:58:05 +00003388 !VLATy->getSizeExpr()->Evaluate(EvalResult, Context))
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003389 return QualType();
3390
Anders Carlsson8c3de802008-12-19 20:58:05 +00003391 assert(EvalResult.Val.isInt() && "Size expressions must be integers!");
3392 llvm::APSInt &Res = EvalResult.Val.getInt();
Nuno Lopes5ba3b262009-02-02 22:32:08 +00003393 if (Res >= llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
3394 return Context.getConstantArrayType(VLATy->getElementType(),
3395 Res, ArrayType::Normal, 0);
3396 return QualType();
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003397}
3398
Anders Carlsson108229a2008-12-06 20:33:04 +00003399bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattner8464c372008-12-12 04:56:04 +00003400 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson108229a2008-12-06 20:33:04 +00003401 // FIXME: 6.7.2.1p4 - verify the field type.
3402
3403 llvm::APSInt Value;
3404 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3405 return true;
3406
Chris Lattner8464c372008-12-12 04:56:04 +00003407 // Zero-width bitfield is ok for anonymous field.
3408 if (Value == 0 && FieldName)
3409 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3410
3411 if (Value.isNegative())
3412 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson108229a2008-12-06 20:33:04 +00003413
3414 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3415 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattner8464c372008-12-12 04:56:04 +00003416 if (TypeSize && Value.getZExtValue() > TypeSize)
3417 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3418 << FieldName << (unsigned)TypeSize;
Anders Carlsson108229a2008-12-06 20:33:04 +00003419
3420 return false;
3421}
3422
Steve Naroff0acc9c92007-09-15 18:49:24 +00003423/// ActOnField - Each field of a struct/union/class is passed into this in order
Chris Lattner4b009652007-07-25 00:24:17 +00003424/// to create a FieldDecl object for it.
Douglas Gregor8acb7272008-12-11 16:49:14 +00003425Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Chris Lattner4b009652007-07-25 00:24:17 +00003426 SourceLocation DeclStart,
3427 Declarator &D, ExprTy *BitfieldWidth) {
3428 IdentifierInfo *II = D.getIdentifier();
3429 Expr *BitWidth = (Expr*)BitfieldWidth;
Chris Lattner4b009652007-07-25 00:24:17 +00003430 SourceLocation Loc = DeclStart;
Douglas Gregor8acb7272008-12-11 16:49:14 +00003431 RecordDecl *Record = (RecordDecl *)TagD;
Chris Lattner4b009652007-07-25 00:24:17 +00003432 if (II) Loc = D.getIdentifierLoc();
3433
3434 // FIXME: Unnamed fields can be handled in various different ways, for
3435 // example, unnamed unions inject all members into the struct namespace!
Chris Lattner4b009652007-07-25 00:24:17 +00003436
Chris Lattner4b009652007-07-25 00:24:17 +00003437 QualType T = GetTypeForDeclarator(D, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003438 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3439 bool InvalidDecl = false;
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003440
Chris Lattner4b009652007-07-25 00:24:17 +00003441 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3442 // than a variably modified type.
Eli Friedmane0079792008-02-15 12:53:51 +00003443 if (T->isVariablyModifiedType()) {
Chris Lattnera73e2202008-11-12 21:17:48 +00003444 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003445 if (!FixedTy.isNull()) {
Chris Lattner86be8572008-11-13 18:49:38 +00003446 Diag(Loc, diag::warn_illegal_constant_array_size);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003447 T = FixedTy;
3448 } else {
Chris Lattner86be8572008-11-13 18:49:38 +00003449 Diag(Loc, diag::err_typecheck_field_variable_size);
Chris Lattner2a884752008-11-12 19:45:49 +00003450 T = Context.IntTy;
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003451 InvalidDecl = true;
3452 }
Chris Lattner4b009652007-07-25 00:24:17 +00003453 }
Anders Carlsson108229a2008-12-06 20:33:04 +00003454
3455 if (BitWidth) {
3456 if (VerifyBitField(Loc, II, T, BitWidth))
3457 InvalidDecl = true;
3458 } else {
3459 // Not a bitfield.
3460
3461 // validate II.
3462
3463 }
3464
Chris Lattner4b009652007-07-25 00:24:17 +00003465 // FIXME: Chain fielddecls together.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003466 FieldDecl *NewFD;
3467
Douglas Gregor8acb7272008-12-11 16:49:14 +00003468 NewFD = FieldDecl::Create(Context, Record,
3469 Loc, II, T, BitWidth,
3470 D.getDeclSpec().getStorageClassSpec() ==
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003471 DeclSpec::SCS_mutable);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003472
Douglas Gregordb568cf2009-01-08 20:45:30 +00003473 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00003474 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003475 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3476 && !isa<TagDecl>(PrevDecl)) {
3477 Diag(Loc, diag::err_duplicate_member) << II;
3478 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3479 NewFD->setInvalidDecl();
3480 Record->setInvalidDecl();
3481 }
3482 }
3483
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003484 if (getLangOptions().CPlusPlus) {
Douglas Gregor605de8d2008-12-16 21:30:33 +00003485 CheckExtraCXXDefaultArguments(D);
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003486 if (!T->isPODType())
3487 cast<CXXRecordDecl>(Record)->setPOD(false);
3488 }
Douglas Gregor605de8d2008-12-16 21:30:33 +00003489
Chris Lattner9b384ca2008-06-29 00:02:00 +00003490 ProcessDeclAttributes(NewFD, D);
Anders Carlsson136cdc32008-02-16 00:29:18 +00003491
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003492 if (D.getInvalidType() || InvalidDecl)
3493 NewFD->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00003494
Douglas Gregordb568cf2009-01-08 20:45:30 +00003495 if (II) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003496 PushOnScopeChains(NewFD, S);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003497 } else
Douglas Gregor03b2ad22009-01-12 23:27:07 +00003498 Record->addDecl(NewFD);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003499
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003500 return NewFD;
Chris Lattner4b009652007-07-25 00:24:17 +00003501}
3502
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003503/// TranslateIvarVisibility - Translate visibility from a token ID to an
3504/// AST enum value.
Ted Kremenek42730c52008-01-07 19:49:32 +00003505static ObjCIvarDecl::AccessControl
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003506TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Naroffffeaa552007-09-14 23:09:53 +00003507 switch (ivarVisibility) {
Chris Lattner504c5432008-10-12 00:28:42 +00003508 default: assert(0 && "Unknown visitibility kind");
3509 case tok::objc_private: return ObjCIvarDecl::Private;
3510 case tok::objc_public: return ObjCIvarDecl::Public;
3511 case tok::objc_protected: return ObjCIvarDecl::Protected;
3512 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Naroffffeaa552007-09-14 23:09:53 +00003513 }
3514}
3515
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003516/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3517/// in order to create an IvarDecl object for it.
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003518Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003519 SourceLocation DeclStart,
3520 Declarator &D, ExprTy *BitfieldWidth,
3521 tok::ObjCKeywordKind Visibility) {
Douglas Gregordb568cf2009-01-08 20:45:30 +00003522
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003523 IdentifierInfo *II = D.getIdentifier();
3524 Expr *BitWidth = (Expr*)BitfieldWidth;
3525 SourceLocation Loc = DeclStart;
3526 if (II) Loc = D.getIdentifierLoc();
3527
3528 // FIXME: Unnamed fields can be handled in various different ways, for
3529 // example, unnamed unions inject all members into the struct namespace!
3530
Anders Carlsson108229a2008-12-06 20:33:04 +00003531 QualType T = GetTypeForDeclarator(D, S);
3532 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3533 bool InvalidDecl = false;
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003534
3535 if (BitWidth) {
3536 // TODO: Validate.
3537 //printf("WARNING: BITFIELDS IGNORED!\n");
3538
3539 // 6.7.2.1p3
3540 // 6.7.2.1p4
3541
3542 } else {
3543 // Not a bitfield.
3544
3545 // validate II.
3546
3547 }
3548
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003549 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3550 // than a variably modified type.
3551 if (T->isVariablyModifiedType()) {
Anders Carlsson68adbd12008-12-07 00:20:55 +00003552 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003553 InvalidDecl = true;
3554 }
3555
Ted Kremenek173dd312008-07-23 18:04:17 +00003556 // Get the visibility (access control) for this ivar.
3557 ObjCIvarDecl::AccessControl ac =
3558 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3559 : ObjCIvarDecl::None;
3560
3561 // Construct the decl.
Chris Lattner7dd239c2009-02-15 22:44:22 +00003562 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroffd3354222008-07-16 18:22:22 +00003563 (Expr *)BitfieldWidth);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003564
Douglas Gregordb568cf2009-01-08 20:45:30 +00003565 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00003566 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003567 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3568 && !isa<TagDecl>(PrevDecl)) {
3569 Diag(Loc, diag::err_duplicate_member) << II;
3570 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3571 NewID->setInvalidDecl();
3572 }
3573 }
3574
Ted Kremenek173dd312008-07-23 18:04:17 +00003575 // Process attributes attached to the ivar.
Chris Lattner9b384ca2008-06-29 00:02:00 +00003576 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003577
3578 if (D.getInvalidType() || InvalidDecl)
3579 NewID->setInvalidDecl();
Ted Kremenek173dd312008-07-23 18:04:17 +00003580
Douglas Gregordb568cf2009-01-08 20:45:30 +00003581 if (II) {
3582 // FIXME: When interfaces are DeclContexts, we'll need to add
3583 // these to the interface.
3584 S->AddDecl(NewID);
3585 IdResolver.AddDecl(NewID);
3586 }
3587
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003588 return NewID;
3589}
3590
Fariborz Jahanian0c5affb2007-09-29 00:54:24 +00003591void Sema::ActOnFields(Scope* S,
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003592 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff0acc9c92007-09-15 18:49:24 +00003593 DeclTy **Fields, unsigned NumFields,
Daniel Dunbarf3944442008-10-03 02:03:53 +00003594 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar175e6392008-10-03 17:33:35 +00003595 AttributeList *Attr) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003596 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3597 assert(EnclosingDecl && "missing record or interface decl");
3598 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
3599
Chris Lattner4b009652007-07-25 00:24:17 +00003600 // Verify that all the fields are okay.
3601 unsigned NumNamedMembers = 0;
3602 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregorc7f01612009-01-07 19:46:03 +00003603
Chris Lattner4b009652007-07-25 00:24:17 +00003604 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003605 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3606 assert(FD && "missing field decl");
3607
Chris Lattner4b009652007-07-25 00:24:17 +00003608 // Get the type for the field.
Chris Lattner36be3d82007-07-31 21:33:24 +00003609 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregorc7f01612009-01-07 19:46:03 +00003610
Douglas Gregordb568cf2009-01-08 20:45:30 +00003611 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregorc7f01612009-01-07 19:46:03 +00003612 // Remember all fields written by the user.
3613 RecFields.push_back(FD);
3614 }
Steve Naroffffeaa552007-09-14 23:09:53 +00003615
Chris Lattner4b009652007-07-25 00:24:17 +00003616 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner36be3d82007-07-31 21:33:24 +00003617 if (FDTy->isFunctionType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003618 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattner271d4c22008-11-24 05:29:24 +00003619 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003620 FD->setInvalidDecl();
3621 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003622 continue;
3623 }
Chris Lattner4b009652007-07-25 00:24:17 +00003624 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
3625 if (FDTy->isIncompleteType()) {
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003626 if (!Record) { // Incomplete ivar type is always an error.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003627 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3628 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003629 FD->setInvalidDecl();
3630 EnclosingDecl->setInvalidDecl();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003631 continue;
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003632 }
Chris Lattner4b009652007-07-25 00:24:17 +00003633 if (i != NumFields-1 || // ... that the last member ...
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003634 !Record->isStruct() || // ... of a structure ...
Chris Lattner36be3d82007-07-31 21:33:24 +00003635 !FDTy->isArrayType()) { //... may have incomplete array type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003636 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3637 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003638 FD->setInvalidDecl();
3639 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003640 continue;
3641 }
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003642 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003643 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003644 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003645 FD->setInvalidDecl();
3646 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003647 continue;
3648 }
Chris Lattner4b009652007-07-25 00:24:17 +00003649 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003650 if (Record)
3651 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003652 }
Chris Lattner4b009652007-07-25 00:24:17 +00003653 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3654 /// field of another structure or the element of an array.
Chris Lattner36be3d82007-07-31 21:33:24 +00003655 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003656 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3657 // If this is a member of a union, then entire union becomes "flexible".
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003658 if (Record && Record->isUnion()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003659 Record->setHasFlexibleArrayMember(true);
3660 } else {
3661 // If this is a struct/class and this is not the last element, reject
3662 // it. Note that GCC supports variable sized arrays in the middle of
3663 // structures.
3664 if (i != NumFields-1) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003665 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003666 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003667 FD->setInvalidDecl();
3668 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003669 continue;
3670 }
Chris Lattner4b009652007-07-25 00:24:17 +00003671 // We support flexible arrays at the end of structs in other structs
3672 // as an extension.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003673 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003674 << FD->getDeclName();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003675 if (Record)
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003676 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003677 }
3678 }
3679 }
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003680 /// A field cannot be an Objective-c object
Ted Kremenek42730c52008-01-07 19:49:32 +00003681 if (FDTy->isObjCInterfaceType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003682 Diag(FD->getLocation(), diag::err_statically_allocated_object)
Chris Lattnerb1753422008-11-23 21:45:46 +00003683 << FD->getDeclName();
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003684 FD->setInvalidDecl();
3685 EnclosingDecl->setInvalidDecl();
3686 continue;
3687 }
Chris Lattner4b009652007-07-25 00:24:17 +00003688 // Keep track of the number of named members.
Douglas Gregordb568cf2009-01-08 20:45:30 +00003689 if (FD->getIdentifier())
Chris Lattner4b009652007-07-25 00:24:17 +00003690 ++NumNamedMembers;
Chris Lattner4b009652007-07-25 00:24:17 +00003691 }
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003692
Chris Lattner4b009652007-07-25 00:24:17 +00003693 // Okay, we successfully defined 'Record'.
Chris Lattner33aad6e2008-02-06 00:51:33 +00003694 if (Record) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003695 Record->completeDefinition(Context);
Chris Lattner33aad6e2008-02-06 00:51:33 +00003696 } else {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003697 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003698 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003699 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003700 // Must enforce the rule that ivars in the base classes may not be
3701 // duplicates.
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003702 if (ID->getSuperClass()) {
3703 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3704 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3705 ObjCIvarDecl* Ivar = (*IVI);
3706 IdentifierInfo *II = Ivar->getIdentifier();
Fariborz Jahanianbeae78e2009-02-16 19:35:27 +00003707 ObjCIvarDecl* prevIvar = ID->getSuperClass()->lookupInstanceVariable(II);
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003708 if (prevIvar) {
3709 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003710 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003711 }
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003712 }
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003713 }
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003714 }
Chris Lattner1100cfb2008-02-05 22:40:55 +00003715 else if (ObjCImplementationDecl *IMPDecl =
3716 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremenek42730c52008-01-07 19:49:32 +00003717 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
3718 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian87093732007-10-31 18:48:14 +00003719 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand34caf92007-09-26 18:27:25 +00003720 }
Fariborz Jahanianebcc9b62007-09-14 21:08:27 +00003721 }
Daniel Dunbar175e6392008-10-03 17:33:35 +00003722
3723 if (Attr)
3724 ProcessDeclAttributeList(Record, Attr);
Chris Lattner4b009652007-07-25 00:24:17 +00003725}
3726
Steve Naroff0acc9c92007-09-15 18:49:24 +00003727Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Chris Lattner4b009652007-07-25 00:24:17 +00003728 DeclTy *lastEnumConst,
3729 SourceLocation IdLoc, IdentifierInfo *Id,
3730 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattnereee57c02008-04-04 06:12:32 +00003731 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003732 EnumConstantDecl *LastEnumConst =
3733 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3734 Expr *Val = static_cast<Expr*>(val);
3735
Chris Lattnera7549902007-08-26 06:24:45 +00003736 // The scope passed in may not be a decl scope. Zip up the scope tree until
3737 // we find one that is.
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003738 S = getNonFieldDeclScope(S);
Chris Lattnera7549902007-08-26 06:24:45 +00003739
Chris Lattner4b009652007-07-25 00:24:17 +00003740 // Verify that there isn't already something declared with this name in this
3741 // scope.
Douglas Gregor09be81b2009-02-04 17:27:36 +00003742 NamedDecl *PrevDecl = LookupName(S, Id, LookupOrdinaryName);
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003743 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003744 // Maybe we will complain about the shadowed template parameter.
3745 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3746 // Just pretend that we didn't see the previous declaration.
3747 PrevDecl = 0;
3748 }
3749
3750 if (PrevDecl) {
Argiris Kirtzidis4f071ec2008-07-16 21:01:53 +00003751 // When in C++, we may get a TagDecl with the same name; in this case the
3752 // enum constant will 'hide' the tag.
3753 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3754 "Received TagDecl when not in C++!");
Argiris Kirtzidis90842b62008-09-09 21:18:04 +00003755 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003756 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner65cae292008-11-19 08:23:25 +00003757 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Chris Lattner4b009652007-07-25 00:24:17 +00003758 else
Chris Lattner65cae292008-11-19 08:23:25 +00003759 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner1336cab2008-11-23 23:12:31 +00003760 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Ted Kremenek0c97e042009-02-07 01:47:29 +00003761 Val->Destroy(Context);
Chris Lattner4b009652007-07-25 00:24:17 +00003762 return 0;
3763 }
3764 }
3765
3766 llvm::APSInt EnumVal(32);
3767 QualType EltTy;
3768 if (Val) {
Chris Lattner2cda8792007-08-27 21:16:18 +00003769 // Make sure to promote the operand type to int.
3770 UsualUnaryConversions(Val);
3771
Chris Lattner4b009652007-07-25 00:24:17 +00003772 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3773 SourceLocation ExpLoc;
Anders Carlsson5374c6b2008-12-05 16:33:57 +00003774 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00003775 Val->Destroy(Context);
Chris Lattnere7f53a42007-08-27 17:37:24 +00003776 Val = 0; // Just forget about it.
Chris Lattner7cea0552007-08-29 16:03:41 +00003777 } else {
3778 EltTy = Val->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00003779 }
Chris Lattnere7f53a42007-08-27 17:37:24 +00003780 }
3781
3782 if (!Val) {
3783 if (LastEnumConst) {
3784 // Assign the last value + 1.
3785 EnumVal = LastEnumConst->getInitVal();
3786 ++EnumVal;
Chris Lattner2cda8792007-08-27 21:16:18 +00003787
3788 // Check for overflow on increment.
3789 if (EnumVal < LastEnumConst->getInitVal())
3790 Diag(IdLoc, diag::warn_enum_value_overflow);
3791
Chris Lattnere7f53a42007-08-27 17:37:24 +00003792 EltTy = LastEnumConst->getType();
3793 } else {
3794 // First value, set to zero.
3795 EltTy = Context.IntTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003796 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnere7f53a42007-08-27 17:37:24 +00003797 }
Chris Lattner4b009652007-07-25 00:24:17 +00003798 }
3799
Chris Lattnere4650482008-03-15 06:12:44 +00003800 EnumConstantDecl *New =
Chris Lattnereee57c02008-04-04 06:12:32 +00003801 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003802 Val, EnumVal);
Chris Lattner4b009652007-07-25 00:24:17 +00003803
3804 // Register this decl in the current scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00003805 PushOnScopeChains(New, S);
Douglas Gregor0c3ab042008-12-17 02:04:30 +00003806
Chris Lattner4b009652007-07-25 00:24:17 +00003807 return New;
3808}
3809
Steve Naroffb0726b82008-08-07 14:08:16 +00003810// FIXME: For consistency with ActOnFields(), we should have the parser
3811// pass in the source location for the left/right braces.
Steve Naroff0acc9c92007-09-15 18:49:24 +00003812void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Chris Lattner4b009652007-07-25 00:24:17 +00003813 DeclTy **Elements, unsigned NumElements) {
3814 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregord8028382009-01-05 19:45:36 +00003815 QualType EnumType = Context.getTypeDeclType(Enum);
Chris Lattner4b009652007-07-25 00:24:17 +00003816
Chris Lattner435c3fd2007-08-28 05:10:31 +00003817 // TODO: If the result value doesn't fit in an int, it must be a long or long
3818 // long value. ISO C does not support this, but GCC does as an extension,
3819 // emit a warning.
Chris Lattner8cd0e932008-03-05 18:54:05 +00003820 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattner435c3fd2007-08-28 05:10:31 +00003821
Chris Lattner206754a2007-08-28 06:15:15 +00003822 // Verify that all the values are okay, compute the size of the values, and
3823 // reverse the list.
3824 unsigned NumNegativeBits = 0;
3825 unsigned NumPositiveBits = 0;
3826
3827 // Keep track of whether all elements have type int.
3828 bool AllElementsInt = true;
3829
Chris Lattner4b009652007-07-25 00:24:17 +00003830 for (unsigned i = 0; i != NumElements; ++i) {
3831 EnumConstantDecl *ECD =
3832 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3833 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003834
3835 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003836 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003837 assert(InitVal.getBitWidth() >= IntWidth &&
3838 "Should have promoted value to int");
Chris Lattnercb33ae12007-08-28 05:27:00 +00003839 if (InitVal.getBitWidth() > IntWidth) {
3840 llvm::APSInt V(InitVal);
3841 V.trunc(IntWidth);
3842 V.extend(InitVal.getBitWidth());
3843 if (V != InitVal)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003844 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3845 << InitVal.toString(10);
Chris Lattnercb33ae12007-08-28 05:27:00 +00003846 }
Chris Lattner206754a2007-08-28 06:15:15 +00003847
3848 // Keep track of the size of positive and negative values.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003849 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattneraff63f02008-01-14 21:47:29 +00003850 NumPositiveBits = std::max(NumPositiveBits,
3851 (unsigned)InitVal.getActiveBits());
Chris Lattner206754a2007-08-28 06:15:15 +00003852 else
Chris Lattneraff63f02008-01-14 21:47:29 +00003853 NumNegativeBits = std::max(NumNegativeBits,
3854 (unsigned)InitVal.getMinSignedBits());
Chris Lattner4b009652007-07-25 00:24:17 +00003855
Chris Lattner206754a2007-08-28 06:15:15 +00003856 // Keep track of whether every enum element has type int (very commmon).
3857 if (AllElementsInt)
3858 AllElementsInt = ECD->getType() == Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003859 }
3860
Chris Lattner206754a2007-08-28 06:15:15 +00003861 // Figure out the type that should be used for this enum.
3862 // FIXME: Support attribute(packed) on enums and -fshort-enums.
3863 QualType BestType;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003864 unsigned BestWidth;
Chris Lattner206754a2007-08-28 06:15:15 +00003865
3866 if (NumNegativeBits) {
3867 // If there is a negative value, figure out the smallest integer type (of
3868 // int/long/longlong) that fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003869 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003870 BestType = Context.IntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003871 BestWidth = IntWidth;
3872 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003873 BestWidth = Context.Target.getLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003874
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003875 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003876 BestType = Context.LongTy;
3877 else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003878 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003879
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003880 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003881 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3882 BestType = Context.LongLongTy;
3883 }
3884 }
3885 } else {
3886 // If there is no negative value, figure out which of uint, ulong, ulonglong
3887 // fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003888 if (NumPositiveBits <= IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003889 BestType = Context.UnsignedIntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003890 BestWidth = IntWidth;
3891 } else if (NumPositiveBits <=
Chris Lattner8cd0e932008-03-05 18:54:05 +00003892 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattner206754a2007-08-28 06:15:15 +00003893 BestType = Context.UnsignedLongTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003894 } else {
3895 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003896 assert(NumPositiveBits <= BestWidth &&
Chris Lattner206754a2007-08-28 06:15:15 +00003897 "How could an initializer get larger than ULL?");
3898 BestType = Context.UnsignedLongLongTy;
3899 }
3900 }
3901
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003902 // Loop over all of the enumerator constants, changing their types to match
3903 // the type of the enum if needed.
3904 for (unsigned i = 0; i != NumElements; ++i) {
3905 EnumConstantDecl *ECD =
3906 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3907 if (!ECD) continue; // Already issued a diagnostic.
3908
3909 // Standard C says the enumerators have int type, but we allow, as an
3910 // extension, the enumerators to be larger than int size. If each
3911 // enumerator value fits in an int, type it as an int, otherwise type it the
3912 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3913 // that X has type 'int', not 'unsigned'.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003914 if (ECD->getType() == Context.IntTy) {
3915 // Make sure the init value is signed.
3916 llvm::APSInt IV = ECD->getInitVal();
3917 IV.setIsSigned(true);
3918 ECD->setInitVal(IV);
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003919
3920 if (getLangOptions().CPlusPlus)
3921 // C++ [dcl.enum]p4: Following the closing brace of an
3922 // enum-specifier, each enumerator has the type of its
3923 // enumeration.
3924 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003925 continue; // Already int type.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003926 }
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003927
3928 // Determine whether the value fits into an int.
3929 llvm::APSInt InitVal = ECD->getInitVal();
3930 bool FitsInInt;
3931 if (InitVal.isUnsigned() || !InitVal.isNegative())
3932 FitsInInt = InitVal.getActiveBits() < IntWidth;
3933 else
3934 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3935
3936 // If it fits into an integer type, force it. Otherwise force it to match
3937 // the enum decl type.
3938 QualType NewTy;
3939 unsigned NewWidth;
3940 bool NewSign;
3941 if (FitsInInt) {
3942 NewTy = Context.IntTy;
3943 NewWidth = IntWidth;
3944 NewSign = true;
3945 } else if (ECD->getType() == BestType) {
3946 // Already the right type!
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003947 if (getLangOptions().CPlusPlus)
3948 // C++ [dcl.enum]p4: Following the closing brace of an
3949 // enum-specifier, each enumerator has the type of its
3950 // enumeration.
3951 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003952 continue;
3953 } else {
3954 NewTy = BestType;
3955 NewWidth = BestWidth;
3956 NewSign = BestType->isSignedIntegerType();
3957 }
3958
3959 // Adjust the APSInt value.
3960 InitVal.extOrTrunc(NewWidth);
3961 InitVal.setIsSigned(NewSign);
3962 ECD->setInitVal(InitVal);
3963
3964 // Adjust the Expr initializer and type.
Chris Lattner8c6dc7a2009-01-15 19:19:42 +00003965 if (ECD->getInitExpr())
Ted Kremenek0c97e042009-02-07 01:47:29 +00003966 ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3967 /*isLvalue=*/false));
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003968 if (getLangOptions().CPlusPlus)
3969 // C++ [dcl.enum]p4: Following the closing brace of an
3970 // enum-specifier, each enumerator has the type of its
3971 // enumeration.
3972 ECD->setType(EnumType);
3973 else
3974 ECD->setType(NewTy);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003975 }
Chris Lattner206754a2007-08-28 06:15:15 +00003976
Douglas Gregor8acb7272008-12-11 16:49:14 +00003977 Enum->completeDefinition(Context, BestType);
Chris Lattner4b009652007-07-25 00:24:17 +00003978}
3979
Anders Carlsson4f7f4412008-02-08 00:33:21 +00003980Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00003981 ExprArg expr) {
3982 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
3983
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003984 return FileScopeAsmDecl::Create(Context, CurContext, Loc, AsmString);
Anders Carlsson4f7f4412008-02-08 00:33:21 +00003985}
3986