blob: 37e1f54f7f0e0ccd4a4dba7bfcc0a6c7c2098ed5 [file] [log] [blame]
Chris Lattner697e5d62006-11-09 06:32:27 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-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 Lattner697e5d62006-11-09 06:32:27 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattnere168f762006-11-10 05:29:30 +000014#include "Sema.h"
Anders Carlsson7a241ba2008-07-03 04:20:39 +000015#include "clang/AST/APValue.h"
Chris Lattner622c1932008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Chris Lattner5c5fbcc2006-12-03 08:41:30 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregorded2d7b2009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000020#include "clang/AST/ExprCXX.h"
Chris Lattner591a6752006-11-19 23:16:18 +000021#include "clang/Parse/DeclSpec.h"
Chris Lattner9561a0b2007-01-28 08:20:04 +000022#include "clang/Basic/TargetInfo.h"
Steve Naroffe101f952008-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 Lattner622c1932008-02-06 00:51:33 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroffe101f952008-01-30 23:46:05 +000026#include "clang/Lex/HeaderSearch.h"
Chris Lattner38047f92007-01-27 06:24:01 +000027#include "llvm/ADT/SmallSet.h"
Douglas Gregor7a4fad12008-12-11 20:41:00 +000028#include "llvm/ADT/STLExtras.h"
Douglas Gregor8b9ccca2008-12-23 21:05:05 +000029#include <algorithm>
30#include <functional>
Douglas Gregor7a4fad12008-12-11 20:41:00 +000031
Chris Lattner697e5d62006-11-09 06:32:27 +000032using namespace clang;
33
Douglas Gregorec6e1892009-02-04 19:16:12 +000034/// \brief If the identifier refers to a type name within this scope,
35/// return the declaration of that type.
36///
37/// This routine performs ordinary name lookup of the identifier II
38/// within the given scope, with optional C++ scope specifier SS, to
Douglas Gregor9817f4a2009-02-09 15:09:02 +000039/// determine whether the name refers to a type. If so, returns an
40/// opaque pointer (actually a QualType) corresponding to that
41/// type. Otherwise, returns NULL.
Douglas Gregorec6e1892009-02-04 19:16:12 +000042///
43/// If name lookup results in an ambiguity, this routine will complain
44/// and then return NULL.
Douglas Gregor9817f4a2009-02-09 15:09:02 +000045Sema::TypeTy *Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
Douglas Gregor8a6be5e2009-02-04 17:00:24 +000046 Scope *S, const CXXScopeSpec *SS) {
Douglas Gregor960b5bc2009-01-15 00:26:24 +000047 Decl *IIDecl = 0;
Douglas Gregorb9063fc2009-02-13 23:20:09 +000048 LookupResult Result = LookupParsedName(S, SS, &II, LookupOrdinaryName,
49 false, false);
Douglas Gregor960b5bc2009-01-15 00:26:24 +000050 switch (Result.getKind()) {
Steve Naroffd25adc92009-01-29 18:09:31 +000051 case LookupResult::NotFound:
52 case LookupResult::FoundOverloaded:
Douglas Gregor8a6be5e2009-02-04 17:00:24 +000053 return 0;
54
Steve Naroffd25adc92009-01-29 18:09:31 +000055 case LookupResult::AmbiguousBaseSubobjectTypes:
56 case LookupResult::AmbiguousBaseSubobjects:
Douglas Gregor889ceb72009-02-03 19:21:40 +000057 case LookupResult::AmbiguousReference:
Douglas Gregor8a6be5e2009-02-04 17:00:24 +000058 DiagnoseAmbiguousLookup(Result, DeclarationName(&II), NameLoc);
Steve Naroffd25adc92009-01-29 18:09:31 +000059 return 0;
Douglas Gregor8a6be5e2009-02-04 17:00:24 +000060
Steve Naroffd25adc92009-01-29 18:09:31 +000061 case LookupResult::Found:
62 IIDecl = Result.getAsDecl();
63 break;
Douglas Gregor960b5bc2009-01-15 00:26:24 +000064 }
65
Steve Naroffd25adc92009-01-29 18:09:31 +000066 if (IIDecl) {
Douglas Gregor9817f4a2009-02-09 15:09:02 +000067 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl))
68 return Context.getTypeDeclType(TD).getAsOpaquePtr();
69 else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl))
70 return Context.getObjCInterfaceType(IDecl).getAsOpaquePtr();
Steve Naroffd25adc92009-01-29 18:09:31 +000071 }
Steve Naroff09bf8152007-09-06 21:24:23 +000072 return 0;
Chris Lattnere168f762006-11-10 05:29:30 +000073}
74
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000075DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +000076 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000077 // A C++ out-of-line method will return to the file declaration context.
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +000078 if (MD->isOutOfLineDefinition())
79 return MD->getLexicalDeclContext();
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000080
81 // A C++ inline method is parsed *after* the topmost class it was declared in
82 // is fully parsed (it's "complete").
83 // The parsing of a C++ inline method happens at the declaration context of
Argyrios Kyrtzidis0d09c492008-11-19 18:01:13 +000084 // the topmost (non-nested) class it is lexically declared in.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +000085 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
86 DC = MD->getParent();
Argyrios Kyrtzidis0d09c492008-11-19 18:01:13 +000087 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
Argyrios Kyrtzidised983422008-07-01 10:37:29 +000088 DC = RD;
89
90 // Return the declaration context of the topmost class the inline method is
91 // declared in.
92 return DC;
93 }
94
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +000095 if (isa<ObjCMethodDecl>(DC))
96 return Context.getTranslationUnitDecl();
97
Douglas Gregor6e6ad602009-01-20 01:17:11 +000098 if (Decl *D = dyn_cast<Decl>(DC))
99 return D->getLexicalDeclContext();
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000100
Argyrios Kyrtzidis0d09c492008-11-19 18:01:13 +0000101 return DC->getLexicalParent();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000102}
103
Douglas Gregor91f84212008-12-11 16:49:14 +0000104void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000105 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xu17a37eb2008-12-08 07:14:51 +0000106 "The next DeclContext should be lexically contained in the current one.");
Chris Lattnerbec41342008-04-22 18:39:57 +0000107 CurContext = DC;
Douglas Gregor91f84212008-12-11 16:49:14 +0000108 S->setEntity(DC);
Chris Lattnerc5ffed42008-04-04 06:12:32 +0000109}
110
Chris Lattner0a5ff0d2008-04-06 04:47:34 +0000111void Sema::PopDeclContext() {
112 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor91f84212008-12-11 16:49:14 +0000113
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000114 CurContext = getContainingDC(CurContext);
Chris Lattnerc5ffed42008-04-04 06:12:32 +0000115}
116
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +0000117/// \brief Determine whether we allow overloading of the function
118/// PrevDecl with another declaration.
119///
120/// This routine determines whether overloading is possible, not
121/// whether some new function is actually an overload. It will return
122/// true in C++ (where we can always provide overloads) or, as an
123/// extension, in C when the previous function is already an
124/// overloaded function declaration or has the "overloadable"
125/// attribute.
126static bool AllowOverloadingOfFunction(Decl *PrevDecl, ASTContext &Context) {
127 if (Context.getLangOptions().CPlusPlus)
128 return true;
129
130 if (isa<OverloadedFunctionDecl>(PrevDecl))
131 return true;
132
133 return PrevDecl->getAttr<OverloadableAttr>() != 0;
134}
135
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +0000136/// Add this decl to the scope shadowed decl chains.
137void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Douglas Gregor07665a62009-01-05 19:45:36 +0000138 // Move up the scope chain until we find the nearest enclosing
139 // non-transparent context. The declaration will be introduced into this
140 // scope.
141 while (S->getEntity() &&
142 ((DeclContext *)S->getEntity())->isTransparentContext())
143 S = S->getParent();
144
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +0000145 S->AddDecl(D);
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000146
Douglas Gregor8b9ccca2008-12-23 21:05:05 +0000147 // Add scoped declarations into their context, so that they can be
148 // found later. Declarations without a context won't be inserted
149 // into any context.
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000150 CurContext->addDecl(D);
Douglas Gregor8b9ccca2008-12-23 21:05:05 +0000151
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000152 // C++ [basic.scope]p4:
153 // -- exactly one declaration shall declare a class name or
154 // enumeration name that is not a typedef name and the other
155 // declarations shall all refer to the same object or
156 // enumerator, or all refer to functions and function templates;
157 // in this case the class name or enumeration name is hidden.
158 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
159 // We are pushing the name of a tag (enum or class).
Douglas Gregore9558802009-01-07 16:34:42 +0000160 if (CurContext->getLookupContext()
161 == TD->getDeclContext()->getLookupContext()) {
Douglas Gregor91f84212008-12-11 16:49:14 +0000162 // We're pushing the tag into the current context, which might
163 // require some reshuffling in the identifier resolver.
164 IdentifierResolver::iterator
Douglas Gregored8f2882009-01-30 01:04:22 +0000165 I = IdResolver.begin(TD->getDeclName()),
Douglas Gregor8b9ccca2008-12-23 21:05:05 +0000166 IEnd = IdResolver.end();
167 if (I != IEnd && isDeclInScope(*I, CurContext, S)) {
168 NamedDecl *PrevDecl = *I;
169 for (; I != IEnd && isDeclInScope(*I, CurContext, S);
170 PrevDecl = *I, ++I) {
171 if (TD->declarationReplaces(*I)) {
172 // This is a redeclaration. Remove it from the chain and
173 // break out, so that we'll add in the shadowed
174 // declaration.
175 S->RemoveDecl(*I);
176 if (PrevDecl == *I) {
177 IdResolver.RemoveDecl(*I);
178 IdResolver.AddDecl(TD);
179 return;
180 } else {
181 IdResolver.RemoveDecl(*I);
182 break;
183 }
184 }
185 }
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000186
Douglas Gregor8b9ccca2008-12-23 21:05:05 +0000187 // There is already a declaration with the same name in the same
188 // scope, which is not a tag declaration. It must be found
189 // before we find the new declaration, so insert the new
190 // declaration at the end of the chain.
191 IdResolver.AddShadowedDecl(TD, PrevDecl);
192
193 return;
Douglas Gregor91f84212008-12-11 16:49:14 +0000194 }
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000195 }
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +0000196 } else if (isa<FunctionDecl>(D) &&
197 AllowOverloadingOfFunction(D, Context)) {
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000198 // We are pushing the name of a function, which might be an
199 // overloaded name.
Douglas Gregor91f84212008-12-11 16:49:14 +0000200 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor8b9ccca2008-12-23 21:05:05 +0000201 IdentifierResolver::iterator Redecl
Douglas Gregored8f2882009-01-30 01:04:22 +0000202 = std::find_if(IdResolver.begin(FD->getDeclName()),
Douglas Gregor8b9ccca2008-12-23 21:05:05 +0000203 IdResolver.end(),
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000204 std::bind1st(std::mem_fun(&NamedDecl::declarationReplaces),
Douglas Gregor8b9ccca2008-12-23 21:05:05 +0000205 FD));
206 if (Redecl != IdResolver.end()) {
207 // There is already a declaration of a function on our
208 // IdResolver chain. Replace it with this declaration.
209 S->RemoveDecl(*Redecl);
210 IdResolver.RemoveDecl(*Redecl);
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000211 }
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000212 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000213
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000214 IdResolver.AddDecl(D);
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +0000215}
216
Steve Naroffc62adb62007-10-09 22:01:59 +0000217void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000218 if (S->decl_empty()) return;
Douglas Gregor5101c242008-12-05 18:15:24 +0000219 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
220 "Scope shouldn't contain decls!");
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000221
Chris Lattner302b4be2006-11-19 02:31:38 +0000222 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
223 I != E; ++I) {
Steve Naroff9324db12007-09-13 18:10:37 +0000224 Decl *TmpD = static_cast<Decl*>(*I);
225 assert(TmpD && "This decl didn't get pushed??");
Argyrios Kyrtzidis406fb232008-06-10 01:32:09 +0000226
Douglas Gregor91f84212008-12-11 16:49:14 +0000227 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
228 NamedDecl *D = cast<NamedDecl>(TmpD);
Argyrios Kyrtzidis406fb232008-06-10 01:32:09 +0000229
Douglas Gregor91f84212008-12-11 16:49:14 +0000230 if (!D->getDeclName()) continue;
Chris Lattnerc5c95b52008-04-11 07:00:53 +0000231
Douglas Gregor91f84212008-12-11 16:49:14 +0000232 // Remove this name from our lexical scope.
233 IdResolver.RemoveDecl(D);
Chris Lattner302b4be2006-11-19 02:31:38 +0000234 }
235}
236
Steve Naroff257520b2008-04-01 23:04:06 +0000237/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
238/// return 0 if one not found.
Steve Naroff257520b2008-04-01 23:04:06 +0000239ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff77892752008-04-02 18:30:49 +0000240 // The third "scope" argument is 0 since we aren't enabling lazy built-in
241 // creation from this context.
Douglas Gregor2ada0482009-02-04 17:27:36 +0000242 NamedDecl *IDecl = LookupName(TUScope, Id, LookupOrdinaryName);
Fariborz Jahanianc7afeeb2007-10-12 19:38:20 +0000243
Steve Naroff2fc93f52008-04-02 14:35:35 +0000244 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanianc7afeeb2007-10-12 19:38:20 +0000245}
246
Douglas Gregor45a33ec2009-01-12 18:45:55 +0000247/// getNonFieldDeclScope - Retrieves the innermost scope, starting
248/// from S, where a non-field would be declared. This routine copes
249/// with the difference between C and C++ scoping rules in structs and
250/// unions. For example, the following code is well-formed in C but
251/// ill-formed in C++:
252/// @code
253/// struct S6 {
254/// enum { BAR } e;
255/// };
256///
257/// void test_S6() {
258/// struct S6 a;
259/// a.e = BAR;
260/// }
261/// @endcode
262/// For the declaration of BAR, this routine will return a different
263/// scope. The scope S will be the scope of the unnamed enumeration
264/// within S6. In C++, this routine will return the scope associated
265/// with S6, because the enumeration's scope is a transparent
266/// context but structures can contain non-field names. In C, this
267/// routine will return the translation unit scope, since the
268/// enumeration's scope is a transparent context and structures cannot
269/// contain non-field names.
270Scope *Sema::getNonFieldDeclScope(Scope *S) {
271 while (((S->getFlags() & Scope::DeclScope) == 0) ||
272 (S->getEntity() &&
273 ((DeclContext *)S->getEntity())->isTransparentContext()) ||
274 (S->isClassScope() && !getLangOptions().CPlusPlus))
275 S = S->getParent();
276 return S;
277}
278
Chris Lattner4dd27102008-05-05 22:18:14 +0000279void Sema::InitBuiltinVaListType() {
Anders Carlsson7e13ab82007-10-15 20:28:48 +0000280 if (!Context.getBuiltinVaListType().isNull())
281 return;
282
283 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Douglas Gregor2ada0482009-02-04 17:27:36 +0000284 NamedDecl *VaDecl = LookupName(TUScope, VaIdent, LookupOrdinaryName);
Steve Naroffeee59eb2007-10-18 22:17:45 +0000285 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7e13ab82007-10-15 20:28:48 +0000286 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
287}
288
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000289/// LazilyCreateBuiltin - The specified Builtin-ID was first used at
290/// file scope. lazily create a decl for it. ForRedeclaration is true
291/// if we're creating this built-in in anticipation of redeclaring the
292/// built-in.
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000293NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000294 Scope *S, bool ForRedeclaration,
295 SourceLocation Loc) {
Chris Lattner9561a0b2007-01-28 08:20:04 +0000296 Builtin::ID BID = (Builtin::ID)bid;
297
Chris Lattnerff2c1872008-09-28 05:54:29 +0000298 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson7e13ab82007-10-15 20:28:48 +0000299 InitBuiltinVaListType();
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000300
Douglas Gregor538c3d82009-02-14 01:52:53 +0000301 Builtin::Context::GetBuiltinTypeError Error;
302 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context, Error);
303 switch (Error) {
304 case Builtin::Context::GE_None:
305 // Okay
306 break;
307
308 case Builtin::Context::GE_Missing_FILE:
309 if (ForRedeclaration)
310 Diag(Loc, diag::err_implicit_decl_requires_stdio)
311 << Context.BuiltinInfo.GetName(BID);
312 return 0;
313 }
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000314
315 if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
316 Diag(Loc, diag::ext_implicit_lib_function_decl)
317 << Context.BuiltinInfo.GetName(BID)
318 << R;
Douglas Gregorac5d4c52009-02-14 00:32:47 +0000319 if (!Context.BuiltinInfo.getHeaderName(BID).empty() &&
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000320 Diags.getDiagnosticMapping(diag::ext_implicit_lib_function_decl)
321 != diag::MAP_IGNORE)
322 Diag(Loc, diag::note_please_include_header)
323 << Context.BuiltinInfo.getHeaderName(BID)
324 << Context.BuiltinInfo.GetName(BID);
325 }
326
Argyrios Kyrtzidis6d053032008-04-17 14:47:13 +0000327 FunctionDecl *New = FunctionDecl::Create(Context,
328 Context.getTranslationUnitDecl(),
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000329 Loc, II, R,
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000330 FunctionDecl::Extern, false);
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000331 New->setImplicit();
332
Chris Lattner4dd27102008-05-05 22:18:14 +0000333 // Create Decl objects for each parameter, adding them to the
334 // FunctionDecl.
335 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
336 llvm::SmallVector<ParmVarDecl*, 16> Params;
337 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
338 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000339 FT->getArgType(i), VarDecl::None, 0));
Ted Kremenek4ba36fc2009-01-14 00:42:25 +0000340 New->setParams(Context, &Params[0], Params.size());
Chris Lattner4dd27102008-05-05 22:18:14 +0000341 }
342
Douglas Gregore711f702009-02-14 18:57:46 +0000343 AddKnownFunctionAttributes(New);
Chris Lattner4dd27102008-05-05 22:18:14 +0000344
Chris Lattnerc5c95b52008-04-11 07:00:53 +0000345 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregorc72e6452009-01-09 18:51:29 +0000346 // FIXME: This is hideous. We need to teach PushOnScopeChains to
347 // relate Scopes to DeclContexts, and probably eliminate CurContext
348 // entirely, but we're not there yet.
349 DeclContext *SavedContext = CurContext;
350 CurContext = Context.getTranslationUnitDecl();
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000351 PushOnScopeChains(New, TUScope);
Douglas Gregorc72e6452009-01-09 18:51:29 +0000352 CurContext = SavedContext;
Chris Lattner9561a0b2007-01-28 08:20:04 +0000353 return New;
354}
355
Sebastian Redlc4704762008-11-11 11:37:55 +0000356/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
357/// everything from the standard library is defined.
358NamespaceDecl *Sema::GetStdNamespace() {
359 if (!StdNamespace) {
Chris Lattner0e73b2c2008-11-20 05:45:14 +0000360 IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
Sebastian Redlc4704762008-11-11 11:37:55 +0000361 DeclContext *Global = Context.getTranslationUnitDecl();
Douglas Gregored8f2882009-01-30 01:04:22 +0000362 Decl *Std = LookupQualifiedName(Global, StdIdent, LookupNamespaceName);
Sebastian Redlc4704762008-11-11 11:37:55 +0000363 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
364 }
365 return StdNamespace;
366}
367
Chris Lattner01564d92007-01-27 19:27:06 +0000368/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
369/// and scope as a previous declaration 'Old'. Figure out how to resolve this
370/// situation, merging decls or emitting diagnostics as appropriate.
371///
Steve Naroff257520b2008-04-01 23:04:06 +0000372TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Fariborz Jahanian1778f4b2009-01-16 19:58:32 +0000373 bool objc_types = false;
Steve Naroff44cfcb62008-09-09 14:32:20 +0000374 // Allow multiple definitions for ObjC built-in typedefs.
375 // FIXME: Verify the underlying types are equivalent!
376 if (getLangOptions().ObjC1) {
Chris Lattner66e32812008-11-20 05:41:43 +0000377 const IdentifierInfo *TypeID = New->getIdentifier();
378 switch (TypeID->getLength()) {
379 default: break;
380 case 2:
381 if (!TypeID->isStr("id"))
382 break;
Steve Naroff44cfcb62008-09-09 14:32:20 +0000383 Context.setObjCIdType(New);
Fariborz Jahanian1778f4b2009-01-16 19:58:32 +0000384 objc_types = true;
385 break;
Chris Lattner66e32812008-11-20 05:41:43 +0000386 case 5:
387 if (!TypeID->isStr("Class"))
388 break;
Steve Naroff44cfcb62008-09-09 14:32:20 +0000389 Context.setObjCClassType(New);
Fariborz Jahanian1778f4b2009-01-16 19:58:32 +0000390 objc_types = true;
Steve Naroff44cfcb62008-09-09 14:32:20 +0000391 return New;
Chris Lattner66e32812008-11-20 05:41:43 +0000392 case 3:
393 if (!TypeID->isStr("SEL"))
394 break;
Steve Naroff44cfcb62008-09-09 14:32:20 +0000395 Context.setObjCSelType(New);
Fariborz Jahanian1778f4b2009-01-16 19:58:32 +0000396 objc_types = true;
Steve Naroff44cfcb62008-09-09 14:32:20 +0000397 return New;
Chris Lattner66e32812008-11-20 05:41:43 +0000398 case 8:
399 if (!TypeID->isStr("Protocol"))
400 break;
Steve Naroff44cfcb62008-09-09 14:32:20 +0000401 Context.setObjCProtoType(New->getUnderlyingType());
Fariborz Jahanian1778f4b2009-01-16 19:58:32 +0000402 objc_types = true;
Steve Naroff44cfcb62008-09-09 14:32:20 +0000403 return New;
404 }
405 // Fall through - the typedef name was not a builtin type.
406 }
Douglas Gregorfb034662009-01-28 17:15:10 +0000407 // Verify the old decl was also a type.
408 TypeDecl *Old = dyn_cast<TypeDecl>(OldD);
Chris Lattnerc511efb2007-01-27 19:32:14 +0000409 if (!Old) {
Douglas Gregorfb034662009-01-28 17:15:10 +0000410 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnere3d20d92008-11-23 21:45:46 +0000411 << New->getDeclName();
Fariborz Jahanian1778f4b2009-01-16 19:58:32 +0000412 if (!objc_types)
413 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattnerc511efb2007-01-27 19:32:14 +0000414 return New;
415 }
Douglas Gregorfb034662009-01-28 17:15:10 +0000416
417 // Determine the "old" type we'll use for checking and diagnostics.
418 QualType OldType;
419 if (TypedefDecl *OldTypedef = dyn_cast<TypedefDecl>(Old))
420 OldType = OldTypedef->getUnderlyingType();
421 else
422 OldType = Context.getTypeDeclType(Old);
423
Chris Lattnerf9c49e52008-07-25 18:44:27 +0000424 // If the typedef types are not identical, reject them in all languages and
425 // with any extensions enabled.
Douglas Gregorfb034662009-01-28 17:15:10 +0000426
427 if (OldType != New->getUnderlyingType() &&
428 Context.getCanonicalType(OldType) !=
Chris Lattnerf9c49e52008-07-25 18:44:27 +0000429 Context.getCanonicalType(New->getUnderlyingType())) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +0000430 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
Douglas Gregorfb034662009-01-28 17:15:10 +0000431 << New->getUnderlyingType() << OldType;
Fariborz Jahanian1778f4b2009-01-16 19:58:32 +0000432 if (!objc_types)
433 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregor020713e2009-01-09 19:42:16 +0000434 return New;
Chris Lattnerf9c49e52008-07-25 18:44:27 +0000435 }
Fariborz Jahanian1778f4b2009-01-16 19:58:32 +0000436 if (objc_types) return New;
Eli Friedman61b529f2008-06-11 06:20:39 +0000437 if (getLangOptions().Microsoft) return New;
438
Douglas Gregor5d58c3a2008-11-21 16:29:06 +0000439 // C++ [dcl.typedef]p2:
440 // In a given non-class scope, a typedef specifier can be used to
441 // redefine the name of any type declared in that scope to refer
442 // to the type to which it already refers.
443 if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext))
444 return New;
445
446 // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
Steve Naroffe101f952008-01-30 23:46:05 +0000447 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
448 // *either* declaration is in a system header. The code below implements
449 // this adhoc compatibility rule. FIXME: The following code will not
450 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar84b70f72008-09-12 18:10:20 +0000451 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
452 SourceManager &SrcMgr = Context.getSourceManager();
453 if (SrcMgr.isInSystemHeader(Old->getLocation()))
454 return New;
455 if (SrcMgr.isInSystemHeader(New->getLocation()))
456 return New;
457 }
Eli Friedman61b529f2008-06-11 06:20:39 +0000458
Chris Lattnere3d20d92008-11-23 21:45:46 +0000459 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +0000460 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner01564d92007-01-27 19:27:06 +0000461 return New;
462}
463
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000464/// DeclhasAttr - returns true if decl Declaration already has the target
465/// attribute.
Chris Lattner84966392008-03-03 03:28:21 +0000466static bool DeclHasAttr(const Decl *decl, const Attr *target) {
467 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
468 if (attr->getKind() == target->getKind())
469 return true;
470
471 return false;
472}
473
474/// MergeAttributes - append attributes from the Old decl to the New one.
475static void MergeAttributes(Decl *New, Decl *Old) {
476 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
477
Chris Lattner84966392008-03-03 03:28:21 +0000478 while (attr) {
Douglas Gregor633b7372009-02-13 00:26:38 +0000479 tmp = attr;
480 attr = attr->getNext();
Chris Lattner84966392008-03-03 03:28:21 +0000481
Douglas Gregor633b7372009-02-13 00:26:38 +0000482 if (!DeclHasAttr(New, tmp) && tmp->isMerged()) {
483 tmp->setInherited(true);
484 New->addAttr(tmp);
Chris Lattner84966392008-03-03 03:28:21 +0000485 } else {
Douglas Gregor633b7372009-02-13 00:26:38 +0000486 tmp->setNext(0);
487 delete(tmp);
Chris Lattner84966392008-03-03 03:28:21 +0000488 }
489 }
Nuno Lopes3fe46512008-06-01 22:53:53 +0000490
491 Old->invalidateAttrs();
Chris Lattner84966392008-03-03 03:28:21 +0000492}
493
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000494/// MergeFunctionDecl - We just parsed a function 'New' from
495/// declarator D which has the same name and scope as a previous
496/// declaration 'Old'. Figure out how to resolve this situation,
497/// merging decls or emitting diagnostics as appropriate.
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000498/// Redeclaration will be set true if this New is a redeclaration OldD.
499///
500/// In C++, New and Old must be declarations that are not
501/// overloaded. Use IsOverload to determine whether New and Old are
502/// overloaded, and to select the Old declaration that New should be
503/// merged with.
Douglas Gregor89f238c2008-04-21 02:02:58 +0000504FunctionDecl *
505Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000506 assert(!isa<OverloadedFunctionDecl>(OldD) &&
507 "Cannot merge with an overloaded function declaration");
508
Douglas Gregor89f238c2008-04-21 02:02:58 +0000509 Redeclaration = false;
Chris Lattnerc511efb2007-01-27 19:32:14 +0000510 // Verify the old decl was also a function.
511 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
512 if (!Old) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +0000513 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnere3d20d92008-11-23 21:45:46 +0000514 << New->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +0000515 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattnerc511efb2007-01-27 19:32:14 +0000516 return New;
517 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000518
519 // Determine whether the previous declaration was a definition,
520 // implicit declaration, or a declaration.
521 diag::kind PrevDiag;
522 if (Old->isThisDeclarationADefinition())
Chris Lattner0369c572008-11-23 23:12:31 +0000523 PrevDiag = diag::note_previous_definition;
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000524 else if (Old->isImplicit()) {
Douglas Gregore711f702009-02-14 18:57:46 +0000525 if (Old->getBuiltinID(Context))
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000526 PrevDiag = diag::note_previous_builtin_declaration;
527 else
528 PrevDiag = diag::note_previous_implicit_declaration;
529 } else
Chris Lattner0369c572008-11-23 23:12:31 +0000530 PrevDiag = diag::note_previous_declaration;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000531
Chris Lattnerfc4379f2008-04-06 23:10:54 +0000532 QualType OldQType = Context.getCanonicalType(Old->getType());
533 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner5c3f1542007-11-20 19:04:50 +0000534
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000535 if (getLangOptions().CPlusPlus) {
536 // (C++98 13.1p2):
537 // Certain function declarations cannot be overloaded:
538 // -- Function declarations that differ only in the return type
539 // cannot be overloaded.
540 QualType OldReturnType
541 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
542 QualType NewReturnType
543 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
544 if (OldReturnType != NewReturnType) {
545 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000546 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor55297ac2008-12-23 00:26:44 +0000547 Redeclaration = true;
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000548 return New;
549 }
550
551 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
552 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
553 if (OldMethod && NewMethod) {
554 // -- Member function declarations with the same name and the
555 // same parameter types cannot be overloaded if any of them
556 // is a static member function declaration.
557 if (OldMethod->isStatic() || NewMethod->isStatic()) {
558 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000559 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000560 return New;
561 }
Douglas Gregor1349b452008-12-15 21:24:18 +0000562
563 // C++ [class.mem]p1:
564 // [...] A member shall not be declared twice in the
565 // member-specification, except that a nested class or member
566 // class template can be declared and then later defined.
567 if (OldMethod->getLexicalDeclContext() ==
568 NewMethod->getLexicalDeclContext()) {
569 unsigned NewDiag;
570 if (isa<CXXConstructorDecl>(OldMethod))
571 NewDiag = diag::err_constructor_redeclared;
572 else if (isa<CXXDestructorDecl>(NewMethod))
573 NewDiag = diag::err_destructor_redeclared;
574 else if (isa<CXXConversionDecl>(NewMethod))
575 NewDiag = diag::err_conv_function_redeclared;
576 else
577 NewDiag = diag::err_member_redeclared;
578
579 Diag(New->getLocation(), NewDiag);
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000580 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Douglas Gregor1349b452008-12-15 21:24:18 +0000581 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000582 }
583
584 // (C++98 8.3.5p3):
585 // All declarations for a function shall agree exactly in both the
586 // return type and the parameter-type-list.
587 if (OldQType == NewQType) {
588 // We have a redeclaration.
589 MergeAttributes(New, Old);
590 Redeclaration = true;
591 return MergeCXXFunctionDecl(New, Old);
592 }
593
594 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregor89f238c2008-04-21 02:02:58 +0000595 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000596
597 // C: Function types need to be compatible, not identical. This handles
Steve Naroff012484d2008-01-14 20:51:29 +0000598 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000599 if (!getLangOptions().CPlusPlus &&
Eli Friedman47f77112008-08-22 00:56:42 +0000600 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregor89f238c2008-04-21 02:02:58 +0000601 MergeAttributes(New, Old);
602 Redeclaration = true;
Steve Naroff012484d2008-01-14 20:51:29 +0000603 return New;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000604 }
Chris Lattner45d561a2007-11-06 06:07:26 +0000605
Steve Naroff17832a42008-01-16 15:01:34 +0000606 // A function that has already been declared has been redeclared or defined
607 // with a different type- show appropriate diagnostic
Steve Naroff17832a42008-01-16 15:01:34 +0000608
Chris Lattner01564d92007-01-27 19:27:06 +0000609 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
610 // TODO: This is totally simplistic. It should handle merging functions
611 // together etc, merging extern int X; int X; ...
Chris Lattnerf3d3fae2008-11-24 05:29:24 +0000612 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Douglas Gregorb9063fc2009-02-13 23:20:09 +0000613 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType();
Chris Lattner01564d92007-01-27 19:27:06 +0000614 return New;
615}
616
Steve Naroff5bb8f222008-08-08 17:50:35 +0000617/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroff63ebb3c2008-08-10 15:28:06 +0000618static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroff5bb8f222008-08-08 17:50:35 +0000619 if (VD->isFileVarDecl())
620 return (!VD->getInit() &&
621 (VD->getStorageClass() == VarDecl::None ||
622 VD->getStorageClass() == VarDecl::Static));
623 return false;
624}
625
626/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
627/// when dealing with C "tentative" external object definitions (C99 6.9.2).
628void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
629 bool VDIsTentative = isTentativeDefinition(VD);
Steve Naroff84e37352008-08-10 15:20:13 +0000630 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroff5bb8f222008-08-08 17:50:35 +0000631
Douglas Gregore9558802009-01-07 16:34:42 +0000632 // FIXME: I don't think this will actually see all of the
Douglas Gregor8b9ccca2008-12-23 21:05:05 +0000633 // redefinitions. Can't we check this property on-the-fly?
Douglas Gregored8f2882009-01-30 01:04:22 +0000634 for (IdentifierResolver::iterator I = IdResolver.begin(VD->getIdentifier()),
635 E = IdResolver.end();
636 I != E; ++I) {
Argyrios Kyrtzidis5b144d52008-09-09 21:18:04 +0000637 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroff5bb8f222008-08-08 17:50:35 +0000638 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
639
Steve Naroff84e37352008-08-10 15:20:13 +0000640 // Handle the following case:
641 // int a[10];
642 // int a[]; - the code below makes sure we set the correct type.
643 // int a[11]; - this is an error, size isn't 10.
644 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
645 OldDecl->getType()->isConstantArrayType())
646 VD->setType(OldDecl->getType());
647
Steve Naroff5bb8f222008-08-08 17:50:35 +0000648 // Check for "tentative" definitions. We can't accomplish this in
649 // MergeVarDecl since the initializer hasn't been attached.
650 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
651 continue;
652
653 // Handle __private_extern__ just like extern.
654 if (OldDecl->getStorageClass() != VarDecl::Extern &&
655 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
656 VD->getStorageClass() != VarDecl::Extern &&
657 VD->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000658 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +0000659 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Sebastian Redl95ea38f2009-02-08 10:49:44 +0000660 // One redefinition error is enough.
661 break;
Steve Naroff5bb8f222008-08-08 17:50:35 +0000662 }
663 }
664 }
665}
666
Chris Lattner01564d92007-01-27 19:27:06 +0000667/// MergeVarDecl - We just parsed a variable 'New' which has the same name
668/// and scope as a previous declaration 'Old'. Figure out how to resolve this
669/// situation, merging decls or emitting diagnostics as appropriate.
670///
Steve Naroff5bb8f222008-08-08 17:50:35 +0000671/// Tentative definition rules (C99 6.9.2p2) are checked by
672/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
673/// definitions here, since the initializer hasn't been attached.
Steve Narofffc49d672007-04-01 21:27:45 +0000674///
Steve Naroff257520b2008-04-01 23:04:06 +0000675VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Chris Lattnerc511efb2007-01-27 19:32:14 +0000676 // Verify the old decl was also a variable.
677 VarDecl *Old = dyn_cast<VarDecl>(OldD);
678 if (!Old) {
Chris Lattner651d42d2008-11-20 06:38:18 +0000679 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnere3d20d92008-11-23 21:45:46 +0000680 << New->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +0000681 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattnerc511efb2007-01-27 19:32:14 +0000682 return New;
683 }
Chris Lattner84966392008-03-03 03:28:21 +0000684
685 MergeAttributes(New, Old);
686
Eli Friedman8b7c5262009-01-24 23:49:55 +0000687 // Merge the types
688 QualType MergedT = Context.mergeTypes(New->getType(), Old->getType());
689 if (MergedT.isNull()) {
Douglas Gregor020713e2009-01-09 19:42:16 +0000690 Diag(New->getLocation(), diag::err_redefinition_different_type)
691 << New->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +0000692 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000693 return New;
694 }
Eli Friedman8b7c5262009-01-24 23:49:55 +0000695 New->setType(MergedT);
Steve Naroff1e787362008-01-30 00:44:01 +0000696 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
697 if (New->getStorageClass() == VarDecl::Static &&
698 (Old->getStorageClass() == VarDecl::None ||
699 Old->getStorageClass() == VarDecl::Extern)) {
Chris Lattnerf3d3fae2008-11-24 05:29:24 +0000700 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +0000701 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroff1e787362008-01-30 00:44:01 +0000702 return New;
703 }
704 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
705 if (New->getStorageClass() != VarDecl::Static &&
706 Old->getStorageClass() == VarDecl::Static) {
Chris Lattnerf3d3fae2008-11-24 05:29:24 +0000707 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +0000708 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroff1e787362008-01-30 00:44:01 +0000709 return New;
710 }
Steve Naroffa5629372008-09-17 14:05:40 +0000711 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
712 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000713 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +0000714 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000715 }
Chris Lattner01564d92007-01-27 19:27:06 +0000716 return New;
717}
718
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000719/// CheckParmsForFunctionDef - Check that the parameters of the given
720/// function are appropriate for the definition of a function. This
721/// takes care of any checks that cannot be performed on the
722/// declaration itself, e.g., that the types of each of the function
723/// parameters are complete.
724bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
725 bool HasInvalidParm = false;
726 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
727 ParmVarDecl *Param = FD->getParamDecl(p);
728
729 // C99 6.7.5.3p4: the parameters in a parameter type list in a
730 // function declarator that is part of a function definition of
731 // that function shall not have incomplete type.
Douglas Gregordd430f72009-01-19 19:26:10 +0000732 if (!Param->isInvalidDecl() &&
733 DiagnoseIncompleteType(Param->getLocation(), Param->getType(),
734 diag::err_typecheck_decl_incomplete_type)) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000735 Param->setInvalidDecl();
736 HasInvalidParm = true;
737 }
Chris Lattner3d722972008-12-17 07:32:46 +0000738
739 // C99 6.9.1p5: If the declarator includes a parameter type list, the
740 // declaration of each parameter shall include an identifier.
741 if (Param->getIdentifier() == 0 && !getLangOptions().CPlusPlus)
742 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000743 }
744
745 return HasInvalidParm;
746}
747
Chris Lattnerb6738ec2007-01-28 00:38:24 +0000748/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
749/// no declarator (e.g. "struct foo;") is parsed.
750Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000751 TagDecl *Tag = 0;
752 if (DS.getTypeSpecType() == DeclSpec::TST_class ||
753 DS.getTypeSpecType() == DeclSpec::TST_struct ||
754 DS.getTypeSpecType() == DeclSpec::TST_union ||
755 DS.getTypeSpecType() == DeclSpec::TST_enum)
756 Tag = dyn_cast<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
757
Douglas Gregorc6f58fe2009-01-12 22:49:06 +0000758 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
759 if (!Record->getDeclName() && Record->isDefinition() &&
760 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
761 return BuildAnonymousStructOrUnion(S, DS, Record);
762
763 // Microsoft allows unnamed struct/union fields. Don't complain
764 // about them.
765 // FIXME: Should we support Microsoft's extensions in this area?
766 if (Record->getDeclName() && getLangOptions().Microsoft)
767 return Tag;
768 }
769
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000770 if (!DS.isMissingDeclaratorOk() &&
771 DS.getTypeSpecType() != DeclSpec::TST_error) {
Douglas Gregor2d9dde0e2009-01-22 16:23:54 +0000772 // Warn about typedefs of enums without names, since this is an
773 // extension in both Microsoft an GNU.
Douglas Gregor051d8fd2009-01-17 02:55:50 +0000774 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
775 Tag && isa<EnumDecl>(Tag)) {
Douglas Gregor2d9dde0e2009-01-22 16:23:54 +0000776 Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
Douglas Gregor2b136fe2009-01-13 23:10:51 +0000777 << DS.getSourceRange();
778 return Tag;
779 }
780
Sebastian Redla2b5e312008-12-28 15:28:59 +0000781 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
782 << DS.getSourceRange();
783 return 0;
784 }
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000785
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000786 return Tag;
787}
788
789/// InjectAnonymousStructOrUnionMembers - Inject the members of the
790/// anonymous struct or union AnonRecord into the owning context Owner
791/// and scope S. This routine will be invoked just after we realize
792/// that an unnamed union or struct is actually an anonymous union or
793/// struct, e.g.,
794///
795/// @code
796/// union {
797/// int i;
798/// float f;
799/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
800/// // f into the surrounding scope.x
801/// @endcode
802///
803/// This routine is recursive, injecting the names of nested anonymous
804/// structs/unions into the owning context and scope as well.
805bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
806 RecordDecl *AnonRecord) {
807 bool Invalid = false;
808 for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
809 FEnd = AnonRecord->field_end();
810 F != FEnd; ++F) {
811 if ((*F)->getDeclName()) {
Douglas Gregor2ada0482009-02-04 17:27:36 +0000812 NamedDecl *PrevDecl = LookupQualifiedName(Owner, (*F)->getDeclName(),
813 LookupOrdinaryName, true);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000814 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
815 // C++ [class.union]p2:
816 // The names of the members of an anonymous union shall be
817 // distinct from the names of any other entity in the
818 // scope in which the anonymous union is declared.
819 unsigned diagKind
820 = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl
821 : diag::err_anonymous_struct_member_redecl;
822 Diag((*F)->getLocation(), diagKind)
823 << (*F)->getDeclName();
824 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
825 Invalid = true;
826 } else {
827 // C++ [class.union]p2:
828 // For the purpose of name lookup, after the anonymous union
829 // definition, the members of the anonymous union are
830 // considered to have been defined in the scope in which the
831 // anonymous union is declared.
Douglas Gregor0da5ac82009-01-20 16:54:50 +0000832 Owner->makeDeclVisibleInContext(*F);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000833 S->AddDecl(*F);
834 IdResolver.AddDecl(*F);
835 }
836 } else if (const RecordType *InnerRecordType
837 = (*F)->getType()->getAsRecordType()) {
838 RecordDecl *InnerRecord = InnerRecordType->getDecl();
839 if (InnerRecord->isAnonymousStructOrUnion())
840 Invalid = Invalid ||
841 InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
842 }
843 }
844
845 return Invalid;
846}
847
848/// ActOnAnonymousStructOrUnion - Handle the declaration of an
849/// anonymous structure or union. Anonymous unions are a C++ feature
850/// (C++ [class.union]) and a GNU C extension; anonymous structures
851/// are a GNU C and GNU C++ extension.
852Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
853 RecordDecl *Record) {
854 DeclContext *Owner = Record->getDeclContext();
855
856 // Diagnose whether this anonymous struct/union is an extension.
857 if (Record->isUnion() && !getLangOptions().CPlusPlus)
858 Diag(Record->getLocation(), diag::ext_anonymous_union);
859 else if (!Record->isUnion())
860 Diag(Record->getLocation(), diag::ext_anonymous_struct);
861
862 // C and C++ require different kinds of checks for anonymous
863 // structs/unions.
864 bool Invalid = false;
865 if (getLangOptions().CPlusPlus) {
866 const char* PrevSpec = 0;
867 // C++ [class.union]p3:
868 // Anonymous unions declared in a named namespace or in the
869 // global namespace shall be declared static.
870 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
871 (isa<TranslationUnitDecl>(Owner) ||
872 (isa<NamespaceDecl>(Owner) &&
873 cast<NamespaceDecl>(Owner)->getDeclName()))) {
874 Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
875 Invalid = true;
876
877 // Recover by adding 'static'.
878 DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec);
879 }
880 // C++ [class.union]p3:
881 // A storage class is not allowed in a declaration of an
882 // anonymous union in a class scope.
883 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
884 isa<RecordDecl>(Owner)) {
885 Diag(DS.getStorageClassSpecLoc(),
886 diag::err_anonymous_union_with_storage_spec);
887 Invalid = true;
888
889 // Recover by removing the storage specifier.
890 DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
891 PrevSpec);
892 }
Douglas Gregorf4d33272009-01-07 19:46:03 +0000893
894 // C++ [class.union]p2:
895 // The member-specification of an anonymous union shall only
896 // define non-static data members. [Note: nested types and
897 // functions cannot be declared within an anonymous union. ]
898 for (DeclContext::decl_iterator Mem = Record->decls_begin(),
899 MemEnd = Record->decls_end();
900 Mem != MemEnd; ++Mem) {
901 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
902 // C++ [class.union]p3:
903 // An anonymous union shall not have private or protected
904 // members (clause 11).
905 if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
906 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
907 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
908 Invalid = true;
909 }
910 } else if ((*Mem)->isImplicit()) {
911 // Any implicit members are fine.
Douglas Gregor8761da52009-02-03 00:34:39 +0000912 } else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) {
913 // This is a type that showed up in an
914 // elaborated-type-specifier inside the anonymous struct or
915 // union, but which actually declares a type outside of the
916 // anonymous struct or union. It's okay.
Douglas Gregorf4d33272009-01-07 19:46:03 +0000917 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
918 if (!MemRecord->isAnonymousStructOrUnion() &&
919 MemRecord->getDeclName()) {
920 // This is a nested type declaration.
921 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
922 << (int)Record->isUnion();
923 Invalid = true;
924 }
925 } else {
926 // We have something that isn't a non-static data
927 // member. Complain about it.
928 unsigned DK = diag::err_anonymous_record_bad_member;
929 if (isa<TypeDecl>(*Mem))
930 DK = diag::err_anonymous_record_with_type;
931 else if (isa<FunctionDecl>(*Mem))
932 DK = diag::err_anonymous_record_with_function;
933 else if (isa<VarDecl>(*Mem))
934 DK = diag::err_anonymous_record_with_static;
935 Diag((*Mem)->getLocation(), DK)
936 << (int)Record->isUnion();
937 Invalid = true;
938 }
939 }
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000940 } else {
941 // FIXME: Check GNU C semantics
Douglas Gregorc6f58fe2009-01-12 22:49:06 +0000942 if (Record->isUnion() && !Owner->isRecord()) {
943 Diag(Record->getLocation(), diag::err_anonymous_union_not_member)
944 << (int)getLangOptions().CPlusPlus;
945 Invalid = true;
946 }
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000947 }
948
949 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregorc6f58fe2009-01-12 22:49:06 +0000950 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
951 << (int)getLangOptions().CPlusPlus;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000952 Invalid = true;
953 }
954
955 // Create a declaration for this anonymous struct/union.
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000956 NamedDecl *Anon = 0;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000957 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
958 Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
959 /*IdentifierInfo=*/0,
960 Context.getTypeDeclType(Record),
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000961 /*BitWidth=*/0, /*Mutable=*/false);
Douglas Gregorf4d33272009-01-07 19:46:03 +0000962 Anon->setAccess(AS_public);
963 if (getLangOptions().CPlusPlus)
964 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000965 } else {
966 VarDecl::StorageClass SC;
967 switch (DS.getStorageClassSpec()) {
968 default: assert(0 && "Unknown storage class!");
969 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
970 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
971 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
972 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
973 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
974 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
975 case DeclSpec::SCS_mutable:
976 // mutable can only appear on non-static class members, so it's always
977 // an error here
978 Diag(Record->getLocation(), diag::err_mutable_nonmember);
979 Invalid = true;
980 SC = VarDecl::None;
981 break;
982 }
983
984 Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
985 /*IdentifierInfo=*/0,
986 Context.getTypeDeclType(Record),
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000987 SC, DS.getSourceRange().getBegin());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000988 }
Douglas Gregorf4d33272009-01-07 19:46:03 +0000989 Anon->setImplicit();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000990
991 // Add the anonymous struct/union object to the current
992 // context. We'll be referencing this object when we refer to one of
993 // its members.
Douglas Gregorb3730b52009-01-12 23:27:07 +0000994 Owner->addDecl(Anon);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000995
996 // Inject the members of the anonymous struct/union into the owning
997 // context and into the identifier resolver chain for name lookup
998 // purposes.
Douglas Gregorc6f58fe2009-01-12 22:49:06 +0000999 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
1000 Invalid = true;
Douglas Gregor9ac7a072009-01-07 00:43:41 +00001001
1002 // Mark this as an anonymous struct/union type. Note that we do not
1003 // do this until after we have already checked and injected the
1004 // members of this anonymous struct/union type, because otherwise
1005 // the members could be injected twice: once by DeclContext when it
1006 // builds its lookup table, and once by
1007 // InjectAnonymousStructOrUnionMembers.
1008 Record->setAnonymousStructOrUnion(true);
1009
1010 if (Invalid)
1011 Anon->setInvalidDecl();
1012
1013 return Anon;
Chris Lattnerb6738ec2007-01-28 00:38:24 +00001014}
1015
Douglas Gregor5fb53972009-01-14 15:45:31 +00001016bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType,
1017 bool DirectInit) {
Steve Naroff2fea1392007-09-02 02:04:30 +00001018 // Get the type before calling CheckSingleAssignmentConstraints(), since
1019 // it can promote the expression.
Chris Lattner9bad62c2008-01-04 18:04:52 +00001020 QualType InitType = Init->getType();
Douglas Gregor47d3f272008-12-19 17:40:08 +00001021
Douglas Gregor5fb53972009-01-14 15:45:31 +00001022 if (getLangOptions().CPlusPlus) {
1023 // FIXME: I dislike this error message. A lot.
1024 if (PerformImplicitConversion(Init, DeclType, "initializing", DirectInit))
1025 return Diag(Init->getSourceRange().getBegin(),
1026 diag::err_typecheck_convert_incompatible)
1027 << DeclType << Init->getType() << "initializing"
1028 << Init->getSourceRange();
1029
1030 return false;
1031 }
Douglas Gregor47d3f272008-12-19 17:40:08 +00001032
Chris Lattner9bad62c2008-01-04 18:04:52 +00001033 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
1034 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
1035 InitType, Init, "initializing");
Steve Naroff2fea1392007-09-02 02:04:30 +00001036}
1037
Steve Naroffaf2a0222008-01-22 00:55:40 +00001038bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattner7adf0762008-08-04 07:31:14 +00001039 const ArrayType *AT = Context.getAsArrayType(DeclT);
1040
1041 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroffaf2a0222008-01-22 00:55:40 +00001042 // C99 6.7.8p14. We have an array of character type with unknown size
1043 // being initialized to a string literal.
1044 llvm::APSInt ConstVal(32);
1045 ConstVal = strLiteral->getByteLength() + 1;
1046 // Return a new array type (C99 6.7.8p22).
Eli Friedmanbd258282008-02-15 18:16:39 +00001047 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffaf2a0222008-01-22 00:55:40 +00001048 ArrayType::Normal, 0);
Chris Lattner7adf0762008-08-04 07:31:14 +00001049 } else {
1050 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroffaf2a0222008-01-22 00:55:40 +00001051 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattner7adf0762008-08-04 07:31:14 +00001052 // FIXME: Avoid truncation for 64-bit length strings.
1053 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroffaf2a0222008-01-22 00:55:40 +00001054 Diag(strLiteral->getSourceRange().getBegin(),
Chris Lattnerf490e152008-11-19 05:27:50 +00001055 diag::warn_initializer_string_for_char_array_too_long)
1056 << strLiteral->getSourceRange();
Steve Naroffaf2a0222008-01-22 00:55:40 +00001057 }
1058 // Set type from "char *" to "constant array of char".
1059 strLiteral->setType(DeclT);
1060 // For now, we always return false (meaning success).
1061 return false;
1062}
1063
1064StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattner7adf0762008-08-04 07:31:14 +00001065 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Naroff78c6cdf2008-01-25 00:51:06 +00001066 if (AT && AT->getElementType()->isCharType()) {
Anders Carlssonb66a3122009-01-24 17:47:50 +00001067 return dyn_cast<StringLiteral>(Init->IgnoreParens());
Steve Naroff78c6cdf2008-01-25 00:51:06 +00001068 }
Steve Naroffaf2a0222008-01-22 00:55:40 +00001069 return 0;
1070}
1071
Douglas Gregor6f543152008-11-05 15:29:30 +00001072bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
1073 SourceLocation InitLoc,
Douglas Gregor5fb53972009-01-14 15:45:31 +00001074 DeclarationName InitEntity,
1075 bool DirectInit) {
Douglas Gregorb04675d2008-12-18 21:49:58 +00001076 if (DeclType->isDependentType() || Init->isTypeDependent())
1077 return false;
1078
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001079 // C++ [dcl.init.ref]p1:
Sebastian Redl849b1e62008-11-24 20:06:50 +00001080 // A variable declared to be a T&, that is "reference to type T"
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001081 // (8.3.2), shall be initialized by an object, or function, of
1082 // type T or by an object that can be converted into a T.
1083 if (DeclType->isReferenceType())
Douglas Gregor5fb53972009-01-14 15:45:31 +00001084 return CheckReferenceInit(Init, DeclType, 0, false, DirectInit);
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001085
Steve Narofff9eb5982008-01-21 23:53:58 +00001086 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
1087 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattner7adf0762008-08-04 07:31:14 +00001088 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Chris Lattnerf490e152008-11-19 05:27:50 +00001089 return Diag(InitLoc, diag::err_variable_object_no_init)
1090 << VAT->getSizeExpr()->getSourceRange();
Steve Narofff9eb5982008-01-21 23:53:58 +00001091
Steve Naroff91f78082007-12-10 22:44:33 +00001092 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
1093 if (!InitList) {
Steve Naroffaf2a0222008-01-22 00:55:40 +00001094 // FIXME: Handle wide strings
1095 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
1096 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedman42978262008-02-08 00:48:24 +00001097
Douglas Gregor6f543152008-11-05 15:29:30 +00001098 // C++ [dcl.init]p14:
1099 // -- If the destination type is a (possibly cv-qualified) class
1100 // type:
1101 if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
1102 QualType DeclTypeC = Context.getCanonicalType(DeclType);
1103 QualType InitTypeC = Context.getCanonicalType(Init->getType());
1104
1105 // -- If the initialization is direct-initialization, or if it is
1106 // copy-initialization where the cv-unqualified version of the
1107 // source type is the same class as, or a derived class of, the
1108 // class of the destination, constructors are considered.
1109 if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
1110 IsDerivedFrom(InitTypeC, DeclTypeC)) {
1111 CXXConstructorDecl *Constructor
1112 = PerformInitializationByConstructor(DeclType, &Init, 1,
1113 InitLoc, Init->getSourceRange(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00001114 InitEntity,
1115 DirectInit? IK_Direct : IK_Copy);
Douglas Gregor6f543152008-11-05 15:29:30 +00001116 return Constructor == 0;
1117 }
1118
1119 // -- Otherwise (i.e., for the remaining copy-initialization
1120 // cases), user-defined conversion sequences that can
1121 // convert from the source type to the destination type or
1122 // (when a conversion function is used) to a derived class
1123 // thereof are enumerated as described in 13.3.1.4, and the
1124 // best one is chosen through overload resolution
1125 // (13.3). If the conversion cannot be done or is
1126 // ambiguous, the initialization is ill-formed. The
1127 // function selected is called with the initializer
1128 // expression as its argument; if the function is a
1129 // constructor, the call initializes a temporary of the
1130 // destination type.
1131 // FIXME: We're pretending to do copy elision here; return to
1132 // this when we have ASTs for such things.
Douglas Gregor47d3f272008-12-19 17:40:08 +00001133 if (!PerformImplicitConversion(Init, DeclType, "initializing"))
Douglas Gregor6f543152008-11-05 15:29:30 +00001134 return false;
Chris Lattner377d1f82008-11-18 22:52:51 +00001135
Douglas Gregor58354032008-12-24 00:01:03 +00001136 if (InitEntity)
1137 return Diag(InitLoc, diag::err_cannot_initialize_decl)
1138 << InitEntity << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1139 << Init->getType() << Init->getSourceRange();
1140 else
1141 return Diag(InitLoc, diag::err_cannot_initialize_decl_noname)
1142 << DeclType << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1143 << Init->getType() << Init->getSourceRange();
Douglas Gregor6f543152008-11-05 15:29:30 +00001144 }
1145
Steve Naroff38093af2008-09-29 20:07:05 +00001146 // C99 6.7.8p16.
Eli Friedman42978262008-02-08 00:48:24 +00001147 if (DeclType->isArrayType())
Chris Lattnerf490e152008-11-19 05:27:50 +00001148 return Diag(Init->getLocStart(), diag::err_array_init_list_required)
1149 << Init->getSourceRange();
Eli Friedman42978262008-02-08 00:48:24 +00001150
Douglas Gregor5fb53972009-01-14 15:45:31 +00001151 return CheckSingleInitializer(Init, DeclType, DirectInit);
Douglas Gregord14247a2009-01-30 22:09:00 +00001152 }
Eli Friedman01321c32008-06-06 19:40:52 +00001153
Douglas Gregor85df8d82009-01-29 00:45:39 +00001154 bool hadError = CheckInitList(InitList, DeclType);
1155 Init = InitList;
1156 return hadError;
Steve Naroff2fea1392007-09-02 02:04:30 +00001157}
1158
Douglas Gregor92751d42008-11-17 22:58:34 +00001159/// GetNameForDeclarator - Determine the full declaration name for the
1160/// given Declarator.
1161DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1162 switch (D.getKind()) {
1163 case Declarator::DK_Abstract:
1164 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
1165 return DeclarationName();
1166
1167 case Declarator::DK_Normal:
1168 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
1169 return DeclarationName(D.getIdentifier());
1170
1171 case Declarator::DK_Constructor: {
Douglas Gregor9817f4a2009-02-09 15:09:02 +00001172 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor92751d42008-11-17 22:58:34 +00001173 Ty = Context.getCanonicalType(Ty);
1174 return Context.DeclarationNames.getCXXConstructorName(Ty);
1175 }
1176
1177 case Declarator::DK_Destructor: {
Douglas Gregor9817f4a2009-02-09 15:09:02 +00001178 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor92751d42008-11-17 22:58:34 +00001179 Ty = Context.getCanonicalType(Ty);
1180 return Context.DeclarationNames.getCXXDestructorName(Ty);
1181 }
1182
1183 case Declarator::DK_Conversion: {
Douglas Gregor9817f4a2009-02-09 15:09:02 +00001184 // FIXME: We'd like to keep the non-canonical type for diagnostics!
Douglas Gregor92751d42008-11-17 22:58:34 +00001185 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1186 Ty = Context.getCanonicalType(Ty);
1187 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
1188 }
Douglas Gregor163c5852008-11-18 14:39:36 +00001189
1190 case Declarator::DK_Operator:
1191 assert(D.getIdentifier() == 0 && "operator names have no identifier");
1192 return Context.DeclarationNames.getCXXOperatorName(
1193 D.getOverloadedOperator());
Douglas Gregor92751d42008-11-17 22:58:34 +00001194 }
1195
1196 assert(false && "Unknown name kind");
1197 return DeclarationName();
1198}
1199
Douglas Gregor8af63e42009-02-06 17:46:57 +00001200/// isNearlyMatchingFunction - Determine whether the C++ functions
1201/// Declaration and Definition are "nearly" matching. This heuristic
1202/// is used to improve diagnostics in the case where an out-of-line
1203/// function definition doesn't match any declaration within
1204/// the class or namespace.
1205static bool isNearlyMatchingFunction(ASTContext &Context,
1206 FunctionDecl *Declaration,
1207 FunctionDecl *Definition) {
Douglas Gregorad590502008-12-15 23:53:10 +00001208 if (Declaration->param_size() != Definition->param_size())
1209 return false;
1210 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1211 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1212 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1213
1214 DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType());
1215 DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType());
1216 if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType())
1217 return false;
1218 }
1219
1220 return true;
1221}
1222
Fariborz Jahanian56ff1462007-11-08 23:49:49 +00001223Sema::DeclTy *
Douglas Gregorad590502008-12-15 23:53:10 +00001224Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1225 bool IsFunctionDefinition) {
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001226 NamedDecl *LastDeclarator = dyn_cast_or_null<NamedDecl>((Decl *)lastDecl);
Douglas Gregor92751d42008-11-17 22:58:34 +00001227 DeclarationName Name = GetNameForDeclarator(D);
1228
Chris Lattner02c04392007-07-25 00:24:17 +00001229 // All of these full declarators require an identifier. If it doesn't have
1230 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor92751d42008-11-17 22:58:34 +00001231 if (!Name) {
Chris Lattner8c5dd732008-11-11 06:13:16 +00001232 if (!D.getInvalidType()) // Reject this if we think it is valid.
1233 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +00001234 diag::err_declarator_need_ident)
1235 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattner02c04392007-07-25 00:24:17 +00001236 return 0;
1237 }
1238
Chris Lattner1a76a3c2007-08-26 06:24:45 +00001239 // The scope passed in may not be a decl scope. Zip up the scope tree until
1240 // we find one that is.
Douglas Gregor91f84212008-12-11 16:49:14 +00001241 while ((S->getFlags() & Scope::DeclScope) == 0 ||
Douglas Gregorded2d7b2009-02-04 19:02:06 +00001242 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattner1a76a3c2007-08-26 06:24:45 +00001243 S = S->getParent();
1244
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001245 DeclContext *DC;
Douglas Gregor2ada0482009-02-04 17:27:36 +00001246 NamedDecl *PrevDecl;
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001247 NamedDecl *New;
Steve Narofff93b6722007-08-28 20:14:24 +00001248 bool InvalidDecl = false;
Douglas Gregor83a586e2008-04-13 21:07:44 +00001249
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001250 // See if this is a redefinition of a variable in the same scope.
Douglas Gregored8f2882009-01-30 01:04:22 +00001251 if (!D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid()) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001252 DC = CurContext;
Douglas Gregorb9063fc2009-02-13 23:20:09 +00001253 PrevDecl = LookupName(S, Name, LookupOrdinaryName, true, true,
1254 D.getIdentifierLoc());
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001255 } else { // Something like "int foo::x;"
1256 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregorb9063fc2009-02-13 23:20:09 +00001257 PrevDecl = LookupQualifiedName(DC, Name, LookupOrdinaryName, true);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001258
1259 // C++ 7.3.1.2p2:
1260 // Members (including explicit specializations of templates) of a named
1261 // namespace can also be defined outside that namespace by explicit
1262 // qualification of the name being defined, provided that the entity being
1263 // defined was already declared in the namespace and the definition appears
1264 // after the point of declaration in a namespace that encloses the
1265 // declarations namespace.
1266 //
Douglas Gregorad590502008-12-15 23:53:10 +00001267 // Note that we only check the context at this point. We don't yet
1268 // have enough information to make sure that PrevDecl is actually
1269 // the declaration we want to match. For example, given:
1270 //
Douglas Gregor4287b372008-12-12 08:25:50 +00001271 // class X {
1272 // void f();
Douglas Gregorad590502008-12-15 23:53:10 +00001273 // void f(float);
Douglas Gregor4287b372008-12-12 08:25:50 +00001274 // };
1275 //
Douglas Gregorad590502008-12-15 23:53:10 +00001276 // void X::f(int) { } // ill-formed
1277 //
1278 // In this case, PrevDecl will point to the overload set
1279 // containing the two f's declared in X, but neither of them
1280 // matches.
Douglas Gregor8af63e42009-02-06 17:46:57 +00001281
1282 // First check whether we named the global scope.
1283 if (isa<TranslationUnitDecl>(DC)) {
1284 Diag(D.getIdentifierLoc(), diag::err_invalid_declarator_global_scope)
1285 << Name << D.getCXXScopeSpec().getRange();
1286 } else if (!CurContext->Encloses(DC)) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001287 // The qualifying scope doesn't enclose the original declaration.
1288 // Emit diagnostic based on current scope.
1289 SourceLocation L = D.getIdentifierLoc();
1290 SourceRange R = D.getCXXScopeSpec().getRange();
Douglas Gregor8af63e42009-02-06 17:46:57 +00001291 if (isa<FunctionDecl>(CurContext))
Chris Lattnerf7e69d52008-11-23 20:28:15 +00001292 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Douglas Gregor8af63e42009-02-06 17:46:57 +00001293 else
Chris Lattnerf7e69d52008-11-23 20:28:15 +00001294 Diag(L, diag::err_invalid_declarator_scope)
Douglas Gregor8af63e42009-02-06 17:46:57 +00001295 << Name << cast<NamedDecl>(DC) << R;
Douglas Gregor91f84212008-12-11 16:49:14 +00001296 InvalidDecl = true;
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001297 }
1298 }
1299
Douglas Gregor5daeee22008-12-08 18:40:42 +00001300 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor5101c242008-12-05 18:15:24 +00001301 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor4619e432008-12-05 23:32:09 +00001302 InvalidDecl = InvalidDecl
1303 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregor5101c242008-12-05 18:15:24 +00001304 // Just pretend that we didn't see the previous declaration.
1305 PrevDecl = 0;
1306 }
1307
Douglas Gregor83a586e2008-04-13 21:07:44 +00001308 // In C++, the previous declaration we find might be a tag type
1309 // (class or enum). In this case, the new declaration will hide the
Douglas Gregorfb034662009-01-28 17:15:10 +00001310 // tag type. Note that this does does not apply if we're declaring a
1311 // typedef (C++ [dcl.typedef]p4).
1312 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag &&
1313 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
Douglas Gregor83a586e2008-04-13 21:07:44 +00001314 PrevDecl = 0;
1315
Chris Lattner07b201d2007-11-14 06:34:38 +00001316 QualType R = GetTypeForDeclarator(D, S);
1317 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
1318
Chris Lattner01a7c532007-01-25 23:09:03 +00001319 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Zhongxing Xuac8ef9e2009-01-16 03:34:13 +00001320 New = ActOnTypedefDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1321 InvalidDecl);
Chris Lattner07b201d2007-11-14 06:34:38 +00001322 } else if (R.getTypePtr()->isFunctionType()) {
Zhongxing Xubece5d62009-01-16 01:13:29 +00001323 New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1324 IsFunctionDefinition, InvalidDecl);
Chris Lattner01a7c532007-01-25 23:09:03 +00001325 } else {
Zhongxing Xu9b7714d2009-01-16 02:36:34 +00001326 New = ActOnVariableDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1327 InvalidDecl);
Chris Lattner01a7c532007-01-25 23:09:03 +00001328 }
Zhongxing Xubece5d62009-01-16 01:13:29 +00001329
1330 if (New == 0)
1331 return 0;
Chris Lattner302b4be2006-11-19 02:31:38 +00001332
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +00001333 // Set the lexical context. If the declarator has a C++ scope specifier, the
1334 // lexical context will be different from the semantic context.
1335 New->setLexicalDeclContext(CurContext);
1336
Chris Lattnere168f762006-11-10 05:29:30 +00001337 // If this has an identifier, add it to the scope stack.
Douglas Gregor92751d42008-11-17 22:58:34 +00001338 if (Name)
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00001339 PushOnScopeChains(New, S);
Steve Narofff93b6722007-08-28 20:14:24 +00001340 // If any semantic error occurred, mark the decl as invalid.
1341 if (D.getInvalidType() || InvalidDecl)
1342 New->setInvalidDecl();
Chris Lattnere168f762006-11-10 05:29:30 +00001343
1344 return New;
1345}
1346
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001347NamedDecl*
Zhongxing Xuac8ef9e2009-01-16 03:34:13 +00001348Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001349 QualType R, Decl* LastDeclarator,
Zhongxing Xuac8ef9e2009-01-16 03:34:13 +00001350 Decl* PrevDecl, bool& InvalidDecl) {
1351 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1352 if (D.getCXXScopeSpec().isSet()) {
1353 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1354 << D.getCXXScopeSpec().getRange();
1355 InvalidDecl = true;
1356 // Pretend we didn't see the scope specifier.
1357 DC = 0;
1358 }
1359
1360 // Check that there are no default arguments (C++ only).
1361 if (getLangOptions().CPlusPlus)
1362 CheckExtraCXXDefaultArguments(D);
1363
1364 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
1365 if (!NewTD) return 0;
1366
1367 // Handle attributes prior to checking for duplicates in MergeVarDecl
1368 ProcessDeclAttributes(NewTD, D);
1369 // Merge the decl with the existing one if appropriate. If the decl is
1370 // in an outer scope, it isn't the same thing.
1371 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1372 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
1373 if (NewTD == 0) return 0;
1374 }
1375
1376 if (S->getFnParent() == 0) {
1377 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1378 // then it shall have block scope.
1379 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
1380 if (NewTD->getUnderlyingType()->isVariableArrayType())
1381 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1382 else
1383 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1384
1385 InvalidDecl = true;
1386 }
1387 }
1388 return NewTD;
1389}
1390
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001391NamedDecl*
Zhongxing Xu9b7714d2009-01-16 02:36:34 +00001392Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001393 QualType R, Decl* LastDeclarator,
Zhongxing Xu9b7714d2009-01-16 02:36:34 +00001394 Decl* PrevDecl, bool& InvalidDecl) {
1395 DeclarationName Name = GetNameForDeclarator(D);
1396
1397 // Check that there are no default arguments (C++ only).
1398 if (getLangOptions().CPlusPlus)
1399 CheckExtraCXXDefaultArguments(D);
1400
1401 if (R.getTypePtr()->isObjCInterfaceType()) {
1402 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object)
1403 << D.getIdentifier();
1404 InvalidDecl = true;
1405 }
1406
1407 VarDecl *NewVD;
1408 VarDecl::StorageClass SC;
1409 switch (D.getDeclSpec().getStorageClassSpec()) {
1410 default: assert(0 && "Unknown storage class!");
1411 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1412 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1413 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1414 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1415 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1416 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1417 case DeclSpec::SCS_mutable:
1418 // mutable can only appear on non-static class members, so it's always
1419 // an error here
1420 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1421 InvalidDecl = true;
1422 SC = VarDecl::None;
1423 break;
1424 }
1425
1426 IdentifierInfo *II = Name.getAsIdentifierInfo();
1427 if (!II) {
1428 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1429 << Name.getAsString();
1430 return 0;
1431 }
1432
1433 if (DC->isRecord()) {
1434 // This is a static data member for a C++ class.
1435 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
1436 D.getIdentifierLoc(), II,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001437 R);
Zhongxing Xu9b7714d2009-01-16 02:36:34 +00001438 } else {
1439 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
1440 if (S->getFnParent() == 0) {
1441 // C99 6.9p2: The storage-class specifiers auto and register shall not
1442 // appear in the declaration specifiers in an external declaration.
1443 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1444 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
1445 InvalidDecl = true;
1446 }
1447 }
1448 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001449 II, R, SC,
Zhongxing Xu9b7714d2009-01-16 02:36:34 +00001450 // FIXME: Move to DeclGroup...
1451 D.getDeclSpec().getSourceRange().getBegin());
1452 NewVD->setThreadSpecified(ThreadSpecified);
1453 }
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001454 NewVD->setNextDeclarator(LastDeclarator);
1455
Zhongxing Xu9b7714d2009-01-16 02:36:34 +00001456 // Handle attributes prior to checking for duplicates in MergeVarDecl
1457 ProcessDeclAttributes(NewVD, D);
1458
1459 // Handle GNU asm-label extension (encoded as an attribute).
1460 if (Expr *E = (Expr*) D.getAsmLabel()) {
1461 // The parser guarantees this is a string.
1462 StringLiteral *SE = cast<StringLiteral>(E);
1463 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1464 SE->getByteLength())));
1465 }
1466
1467 // Emit an error if an address space was applied to decl with local storage.
1468 // This includes arrays of objects with address space qualifiers, but not
1469 // automatic variables that point to other address spaces.
1470 // ISO/IEC TR 18037 S5.1.2
1471 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1472 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1473 InvalidDecl = true;
1474 }
1475 // Merge the decl with the existing one if appropriate. If the decl is
1476 // in an outer scope, it isn't the same thing.
1477 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1478 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1479 // The user tried to define a non-static data member
1480 // out-of-line (C++ [dcl.meaning]p1).
1481 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1482 << D.getCXXScopeSpec().getRange();
1483 NewVD->Destroy(Context);
1484 return 0;
1485 }
1486
1487 NewVD = MergeVarDecl(NewVD, PrevDecl);
1488 if (NewVD == 0) return 0;
1489
1490 if (D.getCXXScopeSpec().isSet()) {
1491 // No previous declaration in the qualifying scope.
1492 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1493 << Name << D.getCXXScopeSpec().getRange();
1494 InvalidDecl = true;
1495 }
1496 }
1497 return NewVD;
1498}
1499
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001500NamedDecl*
Zhongxing Xubece5d62009-01-16 01:13:29 +00001501Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001502 QualType R, Decl *LastDeclarator,
Zhongxing Xubece5d62009-01-16 01:13:29 +00001503 Decl* PrevDecl, bool IsFunctionDefinition,
1504 bool& InvalidDecl) {
1505 assert(R.getTypePtr()->isFunctionType());
1506
1507 DeclarationName Name = GetNameForDeclarator(D);
1508 FunctionDecl::StorageClass SC = FunctionDecl::None;
1509 switch (D.getDeclSpec().getStorageClassSpec()) {
1510 default: assert(0 && "Unknown storage class!");
1511 case DeclSpec::SCS_auto:
1512 case DeclSpec::SCS_register:
1513 case DeclSpec::SCS_mutable:
1514 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func);
1515 InvalidDecl = true;
1516 break;
1517 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1518 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
1519 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
1520 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
1521 }
1522
1523 bool isInline = D.getDeclSpec().isInlineSpecified();
1524 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1525 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1526
1527 FunctionDecl *NewFD;
1528 if (D.getKind() == Declarator::DK_Constructor) {
1529 // This is a C++ constructor declaration.
1530 assert(DC->isRecord() &&
1531 "Constructors can only be declared in a member context");
1532
1533 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
1534
1535 // Create the new declaration
1536 NewFD = CXXConstructorDecl::Create(Context,
1537 cast<CXXRecordDecl>(DC),
1538 D.getIdentifierLoc(), Name, R,
1539 isExplicit, isInline,
1540 /*isImplicitlyDeclared=*/false);
1541
1542 if (InvalidDecl)
1543 NewFD->setInvalidDecl();
1544 } else if (D.getKind() == Declarator::DK_Destructor) {
1545 // This is a C++ destructor declaration.
1546 if (DC->isRecord()) {
1547 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
1548
1549 NewFD = CXXDestructorDecl::Create(Context,
1550 cast<CXXRecordDecl>(DC),
1551 D.getIdentifierLoc(), Name, R,
1552 isInline,
1553 /*isImplicitlyDeclared=*/false);
1554
1555 if (InvalidDecl)
1556 NewFD->setInvalidDecl();
1557 } else {
1558 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
1559
1560 // Create a FunctionDecl to satisfy the function definition parsing
1561 // code path.
1562 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001563 Name, R, SC, isInline,
Zhongxing Xubece5d62009-01-16 01:13:29 +00001564 // FIXME: Move to DeclGroup...
1565 D.getDeclSpec().getSourceRange().getBegin());
1566 InvalidDecl = true;
1567 NewFD->setInvalidDecl();
1568 }
1569 } else if (D.getKind() == Declarator::DK_Conversion) {
1570 if (!DC->isRecord()) {
1571 Diag(D.getIdentifierLoc(),
1572 diag::err_conv_function_not_member);
1573 return 0;
1574 } else {
1575 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
1576
1577 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
1578 D.getIdentifierLoc(), Name, R,
1579 isInline, isExplicit);
1580
1581 if (InvalidDecl)
1582 NewFD->setInvalidDecl();
1583 }
1584 } else if (DC->isRecord()) {
1585 // This is a C++ method declaration.
1586 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
1587 D.getIdentifierLoc(), Name, R,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001588 (SC == FunctionDecl::Static), isInline);
Zhongxing Xubece5d62009-01-16 01:13:29 +00001589 } else {
1590 NewFD = FunctionDecl::Create(Context, DC,
1591 D.getIdentifierLoc(),
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001592 Name, R, SC, isInline,
Zhongxing Xubece5d62009-01-16 01:13:29 +00001593 // FIXME: Move to DeclGroup...
1594 D.getDeclSpec().getSourceRange().getBegin());
1595 }
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001596 NewFD->setNextDeclarator(LastDeclarator);
Zhongxing Xubece5d62009-01-16 01:13:29 +00001597
1598 // Set the lexical context. If the declarator has a C++
1599 // scope specifier, the lexical context will be different
1600 // from the semantic context.
1601 NewFD->setLexicalDeclContext(CurContext);
1602
1603 // Handle GNU asm-label extension (encoded as an attribute).
1604 if (Expr *E = (Expr*) D.getAsmLabel()) {
1605 // The parser guarantees this is a string.
1606 StringLiteral *SE = cast<StringLiteral>(E);
1607 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1608 SE->getByteLength())));
1609 }
1610
1611 // Copy the parameter declarations from the declarator D to
1612 // the function declaration NewFD, if they are available.
1613 if (D.getNumTypeObjects() > 0) {
1614 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1615
1616 // Create Decl objects for each parameter, adding them to the
1617 // FunctionDecl.
1618 llvm::SmallVector<ParmVarDecl*, 16> Params;
1619
1620 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1621 // function that takes no arguments, not a function that takes a
1622 // single void argument.
1623 // We let through "const void" here because Sema::GetTypeForDeclarator
1624 // already checks for that case.
1625 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1626 FTI.ArgInfo[0].Param &&
1627 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1628 // empty arg list, don't push any params.
1629 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1630
1631 // In C++, the empty parameter-type-list must be spelled "void"; a
1632 // typedef of void is not permitted.
1633 if (getLangOptions().CPlusPlus &&
1634 Param->getType().getUnqualifiedType() != Context.VoidTy) {
1635 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1636 }
1637 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1638 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1639 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1640 }
1641
1642 NewFD->setParams(Context, &Params[0], Params.size());
1643 } else if (R->getAsTypedefType()) {
1644 // When we're declaring a function with a typedef, as in the
1645 // following example, we'll need to synthesize (unnamed)
1646 // parameters for use in the declaration.
1647 //
1648 // @code
1649 // typedef void fn(int);
1650 // fn f;
1651 // @endcode
1652 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1653 if (!FT) {
1654 // This is a typedef of a function with no prototype, so we
1655 // don't need to do anything.
1656 } else if ((FT->getNumArgs() == 0) ||
1657 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1658 FT->getArgType(0)->isVoidType())) {
1659 // This is a zero-argument function. We don't need to do anything.
1660 } else {
1661 // Synthesize a parameter for each argument type.
1662 llvm::SmallVector<ParmVarDecl*, 16> Params;
1663 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1664 ArgType != FT->arg_type_end(); ++ArgType) {
1665 Params.push_back(ParmVarDecl::Create(Context, DC,
1666 SourceLocation(), 0,
1667 *ArgType, VarDecl::None,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00001668 0));
Zhongxing Xubece5d62009-01-16 01:13:29 +00001669 }
1670
1671 NewFD->setParams(Context, &Params[0], Params.size());
1672 }
1673 }
1674
1675 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1676 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
1677 else if (isa<CXXDestructorDecl>(NewFD)) {
1678 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1679 Record->setUserDeclaredDestructor(true);
1680 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1681 // user-defined destructor.
1682 Record->setPOD(false);
1683 } else if (CXXConversionDecl *Conversion =
1684 dyn_cast<CXXConversionDecl>(NewFD))
1685 ActOnConversionDeclarator(Conversion);
1686
1687 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1688 if (NewFD->isOverloadedOperator() &&
1689 CheckOverloadedOperatorDeclaration(NewFD))
1690 NewFD->setInvalidDecl();
1691
1692 // Merge the decl with the existing one if appropriate. Since C functions
1693 // are in a flat namespace, make sure we consider decls in outer scopes.
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001694 bool OverloadableAttrRequired = false;
Douglas Gregor8af63e42009-02-06 17:46:57 +00001695 bool Redeclaration = false;
Zhongxing Xubece5d62009-01-16 01:13:29 +00001696 if (PrevDecl &&
1697 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001698 // Determine whether NewFD is an overload of PrevDecl or
Zhongxing Xubece5d62009-01-16 01:13:29 +00001699 // a declaration that requires merging. If it's an overload,
1700 // there's no more work to do here; we'll just add the new
1701 // function to the scope.
1702 OverloadedFunctionDecl::function_iterator MatchedDecl;
Douglas Gregor633b7372009-02-13 00:26:38 +00001703
1704 if (!getLangOptions().CPlusPlus &&
1705 AllowOverloadingOfFunction(PrevDecl, Context))
1706 OverloadableAttrRequired = true;
1707
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001708 if (!AllowOverloadingOfFunction(PrevDecl, Context) ||
Zhongxing Xubece5d62009-01-16 01:13:29 +00001709 !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
1710 Decl *OldDecl = PrevDecl;
1711
1712 // If PrevDecl was an overloaded function, extract the
1713 // FunctionDecl that matched.
1714 if (isa<OverloadedFunctionDecl>(PrevDecl))
1715 OldDecl = *MatchedDecl;
1716
1717 // NewFD and PrevDecl represent declarations that need to be
1718 // merged.
1719 NewFD = MergeFunctionDecl(NewFD, OldDecl, Redeclaration);
1720
1721 if (NewFD == 0) return 0;
1722 if (Redeclaration) {
1723 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1724
1725 // An out-of-line member function declaration must also be a
1726 // definition (C++ [dcl.meaning]p1).
1727 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1728 !InvalidDecl) {
1729 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1730 << D.getCXXScopeSpec().getRange();
1731 NewFD->setInvalidDecl();
1732 }
1733 }
1734 }
Douglas Gregor8af63e42009-02-06 17:46:57 +00001735 }
Zhongxing Xubece5d62009-01-16 01:13:29 +00001736
Douglas Gregor8af63e42009-02-06 17:46:57 +00001737 if (D.getCXXScopeSpec().isSet() &&
1738 (!PrevDecl || !Redeclaration)) {
1739 // The user tried to provide an out-of-line definition for a
1740 // function that is a member of a class or namespace, but there
1741 // was no such member function declared (C++ [class.mfct]p2,
1742 // C++ [namespace.memdef]p2). For example:
1743 //
1744 // class X {
1745 // void f() const;
1746 // };
1747 //
1748 // void X::f() { } // ill-formed
1749 //
1750 // Complain about this problem, and attempt to suggest close
1751 // matches (e.g., those that differ only in cv-qualifiers and
1752 // whether the parameter types are references).
Douglas Gregor8af63e42009-02-06 17:46:57 +00001753 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
Douglas Gregor706a6a92009-02-06 22:58:38 +00001754 << cast<NamedDecl>(DC) << D.getCXXScopeSpec().getRange();
Douglas Gregor8af63e42009-02-06 17:46:57 +00001755 InvalidDecl = true;
1756
1757 LookupResult Prev = LookupQualifiedName(DC, Name, LookupOrdinaryName,
1758 true);
1759 assert(!Prev.isAmbiguous() &&
1760 "Cannot have an ambiguity in previous-declaration lookup");
1761 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
1762 Func != FuncEnd; ++Func) {
1763 if (isa<FunctionDecl>(*Func) &&
1764 isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD))
1765 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
Zhongxing Xubece5d62009-01-16 01:13:29 +00001766 }
Douglas Gregor8af63e42009-02-06 17:46:57 +00001767
1768 PrevDecl = 0;
Zhongxing Xubece5d62009-01-16 01:13:29 +00001769 }
Douglas Gregor0e8fc3c2009-02-02 21:35:47 +00001770
Zhongxing Xubece5d62009-01-16 01:13:29 +00001771 // Handle attributes. We need to have merged decls when handling attributes
1772 // (for example to check for conflicts, etc).
1773 ProcessDeclAttributes(NewFD, D);
Douglas Gregore711f702009-02-14 18:57:46 +00001774 AddKnownFunctionAttributes(NewFD);
Zhongxing Xubece5d62009-01-16 01:13:29 +00001775
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001776 if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) {
1777 // If a function name is overloadable in C, then every function
1778 // with that name must be marked "overloadable".
1779 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
Douglas Gregor633b7372009-02-13 00:26:38 +00001780 << Redeclaration << NewFD;
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001781 if (PrevDecl)
1782 Diag(PrevDecl->getLocation(),
1783 diag::note_attribute_overloadable_prev_overload);
1784 NewFD->addAttr(new OverloadableAttr);
1785 }
1786
Zhongxing Xubece5d62009-01-16 01:13:29 +00001787 if (getLangOptions().CPlusPlus) {
Sebastian Redldf0913b2009-02-08 14:56:26 +00001788 // In C++, check default arguments now that we have merged decls. Unless
1789 // the lexical context is the class, because in this case this is done
1790 // during delayed parsing anyway.
1791 if (!CurContext->isRecord())
1792 CheckCXXDefaultArguments(NewFD);
Zhongxing Xubece5d62009-01-16 01:13:29 +00001793
1794 // An out-of-line member function declaration must also be a
1795 // definition (C++ [dcl.meaning]p1).
1796 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
1797 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1798 << D.getCXXScopeSpec().getRange();
1799 InvalidDecl = true;
1800 }
1801 }
1802 return NewFD;
1803}
1804
Steve Naroffc6db58a2008-10-27 11:34:16 +00001805void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattnerf490e152008-11-19 05:27:50 +00001806 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1807 << Init->getSourceRange();
Steve Naroffc6db58a2008-10-27 11:34:16 +00001808}
1809
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001810bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1811 switch (Init->getStmtClass()) {
1812 default:
Steve Naroffc6db58a2008-10-27 11:34:16 +00001813 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001814 return true;
1815 case Expr::ParenExprClass: {
1816 const ParenExpr* PE = cast<ParenExpr>(Init);
1817 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1818 }
1819 case Expr::CompoundLiteralExprClass:
1820 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregorc7acfdf2009-01-06 05:10:23 +00001821 case Expr::DeclRefExprClass:
1822 case Expr::QualifiedDeclRefExprClass: {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001823 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman86346ed2008-05-21 03:39:11 +00001824 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1825 if (VD->hasGlobalStorage())
1826 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00001827 InitializerElementNotConstant(Init);
Eli Friedman86346ed2008-05-21 03:39:11 +00001828 return true;
1829 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001830 if (isa<FunctionDecl>(D))
1831 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00001832 InitializerElementNotConstant(Init);
Steve Naroff98f72032008-01-10 22:15:12 +00001833 return true;
1834 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001835 case Expr::MemberExprClass: {
1836 const MemberExpr *M = cast<MemberExpr>(Init);
1837 if (M->isArrow())
1838 return CheckAddressConstantExpression(M->getBase());
1839 return CheckAddressConstantExpressionLValue(M->getBase());
1840 }
1841 case Expr::ArraySubscriptExprClass: {
1842 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1843 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1844 return CheckAddressConstantExpression(ASE->getBase()) ||
1845 CheckArithmeticConstantExpression(ASE->getIdx());
1846 }
1847 case Expr::StringLiteralClass:
Chris Lattner6307f192008-08-10 01:53:14 +00001848 case Expr::PredefinedExprClass:
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001849 return false;
1850 case Expr::UnaryOperatorClass: {
1851 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1852
1853 // C99 6.6p9
1854 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman86346ed2008-05-21 03:39:11 +00001855 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001856
Steve Naroffc6db58a2008-10-27 11:34:16 +00001857 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001858 return true;
1859 }
1860 }
1861}
1862
1863bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1864 switch (Init->getStmtClass()) {
1865 default:
Steve Naroffc6db58a2008-10-27 11:34:16 +00001866 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001867 return true;
Chris Lattnera97132a2008-10-06 07:26:43 +00001868 case Expr::ParenExprClass:
1869 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001870 case Expr::StringLiteralClass:
1871 case Expr::ObjCStringLiteralClass:
1872 return false;
Chris Lattnera97132a2008-10-06 07:26:43 +00001873 case Expr::CallExprClass:
Douglas Gregor993603d2008-11-14 16:09:21 +00001874 case Expr::CXXOperatorCallExprClass:
Chris Lattnera97132a2008-10-06 07:26:43 +00001875 // __builtin___CFStringMakeConstantString is a valid constant l-value.
Douglas Gregore711f702009-02-14 18:57:46 +00001876 if (cast<CallExpr>(Init)->isBuiltinCall(Context) ==
Chris Lattnera97132a2008-10-06 07:26:43 +00001877 Builtin::BI__builtin___CFStringMakeConstantString)
1878 return false;
1879
Steve Naroffc6db58a2008-10-27 11:34:16 +00001880 InitializerElementNotConstant(Init);
Chris Lattnera97132a2008-10-06 07:26:43 +00001881 return true;
1882
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001883 case Expr::UnaryOperatorClass: {
1884 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1885
1886 // C99 6.6p9
1887 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1888 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1889
1890 if (Exp->getOpcode() == UnaryOperator::Extension)
1891 return CheckAddressConstantExpression(Exp->getSubExpr());
1892
Steve Naroffc6db58a2008-10-27 11:34:16 +00001893 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001894 return true;
1895 }
1896 case Expr::BinaryOperatorClass: {
1897 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1898 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1899
1900 Expr *PExp = Exp->getLHS();
1901 Expr *IExp = Exp->getRHS();
1902 if (IExp->getType()->isPointerType())
1903 std::swap(PExp, IExp);
1904
1905 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1906 return CheckAddressConstantExpression(PExp) ||
1907 CheckArithmeticConstantExpression(IExp);
1908 }
Eli Friedman0a2ba3f2008-08-25 20:46:57 +00001909 case Expr::ImplicitCastExprClass:
Douglas Gregorf19b2312008-10-28 15:36:24 +00001910 case Expr::CStyleCastExprClass: {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001911 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman0a2ba3f2008-08-25 20:46:57 +00001912 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1913 // Check for implicit promotion
1914 if (SubExpr->getType()->isFunctionType() ||
1915 SubExpr->getType()->isArrayType())
1916 return CheckAddressConstantExpressionLValue(SubExpr);
1917 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001918
1919 // Check for pointer->pointer cast
1920 if (SubExpr->getType()->isPointerType())
1921 return CheckAddressConstantExpression(SubExpr);
1922
Eli Friedman0a2ba3f2008-08-25 20:46:57 +00001923 if (SubExpr->getType()->isIntegralType()) {
1924 // Check for the special-case of a pointer->int->pointer cast;
1925 // this isn't standard, but some code requires it. See
1926 // PR2720 for an example.
1927 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1928 if (SubCast->getSubExpr()->getType()->isPointerType()) {
1929 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1930 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1931 if (IntWidth >= PointerWidth) {
1932 return CheckAddressConstantExpression(SubCast->getSubExpr());
1933 }
1934 }
1935 }
1936 }
1937 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001938 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedman0a2ba3f2008-08-25 20:46:57 +00001939 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001940
Steve Naroffc6db58a2008-10-27 11:34:16 +00001941 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001942 return true;
1943 }
1944 case Expr::ConditionalOperatorClass: {
1945 // FIXME: Should we pedwarn here?
1946 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1947 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Naroffc6db58a2008-10-27 11:34:16 +00001948 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001949 return true;
1950 }
1951 if (CheckArithmeticConstantExpression(Exp->getCond()))
1952 return true;
1953 if (Exp->getLHS() &&
1954 CheckAddressConstantExpression(Exp->getLHS()))
1955 return true;
1956 return CheckAddressConstantExpression(Exp->getRHS());
1957 }
1958 case Expr::AddrLabelExprClass:
1959 return false;
1960 }
1961}
1962
Eli Friedmane6e0f232008-06-09 05:05:07 +00001963static const Expr* FindExpressionBaseAddress(const Expr* E);
1964
1965static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
1966 switch (E->getStmtClass()) {
1967 default:
1968 return E;
1969 case Expr::ParenExprClass: {
1970 const ParenExpr* PE = cast<ParenExpr>(E);
1971 return FindExpressionBaseAddressLValue(PE->getSubExpr());
1972 }
1973 case Expr::MemberExprClass: {
1974 const MemberExpr *M = cast<MemberExpr>(E);
1975 if (M->isArrow())
1976 return FindExpressionBaseAddress(M->getBase());
1977 return FindExpressionBaseAddressLValue(M->getBase());
1978 }
1979 case Expr::ArraySubscriptExprClass: {
1980 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1981 return FindExpressionBaseAddress(ASE->getBase());
1982 }
1983 case Expr::UnaryOperatorClass: {
1984 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1985
1986 if (Exp->getOpcode() == UnaryOperator::Deref)
1987 return FindExpressionBaseAddress(Exp->getSubExpr());
1988
1989 return E;
1990 }
1991 }
1992}
1993
1994static const Expr* FindExpressionBaseAddress(const Expr* E) {
1995 switch (E->getStmtClass()) {
1996 default:
1997 return E;
1998 case Expr::ParenExprClass: {
1999 const ParenExpr* PE = cast<ParenExpr>(E);
2000 return FindExpressionBaseAddress(PE->getSubExpr());
2001 }
2002 case Expr::UnaryOperatorClass: {
2003 const UnaryOperator *Exp = cast<UnaryOperator>(E);
2004
2005 // C99 6.6p9
2006 if (Exp->getOpcode() == UnaryOperator::AddrOf)
2007 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
2008
2009 if (Exp->getOpcode() == UnaryOperator::Extension)
2010 return FindExpressionBaseAddress(Exp->getSubExpr());
2011
2012 return E;
2013 }
2014 case Expr::BinaryOperatorClass: {
2015 const BinaryOperator *Exp = cast<BinaryOperator>(E);
2016
2017 Expr *PExp = Exp->getLHS();
2018 Expr *IExp = Exp->getRHS();
2019 if (IExp->getType()->isPointerType())
2020 std::swap(PExp, IExp);
2021
2022 return FindExpressionBaseAddress(PExp);
2023 }
2024 case Expr::ImplicitCastExprClass: {
2025 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
2026
2027 // Check for implicit promotion
2028 if (SubExpr->getType()->isFunctionType() ||
2029 SubExpr->getType()->isArrayType())
2030 return FindExpressionBaseAddressLValue(SubExpr);
2031
2032 // Check for pointer->pointer cast
2033 if (SubExpr->getType()->isPointerType())
2034 return FindExpressionBaseAddress(SubExpr);
2035
2036 // We assume that we have an arithmetic expression here;
2037 // if we don't, we'll figure it out later
2038 return 0;
2039 }
Douglas Gregorf19b2312008-10-28 15:36:24 +00002040 case Expr::CStyleCastExprClass: {
Eli Friedmane6e0f232008-06-09 05:05:07 +00002041 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
2042
2043 // Check for pointer->pointer cast
2044 if (SubExpr->getType()->isPointerType())
2045 return FindExpressionBaseAddress(SubExpr);
2046
2047 // We assume that we have an arithmetic expression here;
2048 // if we don't, we'll figure it out later
2049 return 0;
2050 }
2051 }
2052}
2053
Anders Carlsson59689ed2008-11-22 21:04:56 +00002054bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002055 switch (Init->getStmtClass()) {
2056 default:
Steve Naroffc6db58a2008-10-27 11:34:16 +00002057 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002058 return true;
2059 case Expr::ParenExprClass: {
2060 const ParenExpr* PE = cast<ParenExpr>(Init);
2061 return CheckArithmeticConstantExpression(PE->getSubExpr());
2062 }
2063 case Expr::FloatingLiteralClass:
2064 case Expr::IntegerLiteralClass:
2065 case Expr::CharacterLiteralClass:
2066 case Expr::ImaginaryLiteralClass:
2067 case Expr::TypesCompatibleExprClass:
2068 case Expr::CXXBoolLiteralExprClass:
2069 return false;
Douglas Gregor993603d2008-11-14 16:09:21 +00002070 case Expr::CallExprClass:
2071 case Expr::CXXOperatorCallExprClass: {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002072 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattnercb136912008-10-06 06:49:02 +00002073
2074 // Allow any constant foldable calls to builtins.
Douglas Gregore711f702009-02-14 18:57:46 +00002075 if (CE->isBuiltinCall(Context) && CE->isEvaluatable(Context))
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002076 return false;
Chris Lattnercb136912008-10-06 06:49:02 +00002077
Steve Naroffc6db58a2008-10-27 11:34:16 +00002078 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002079 return true;
2080 }
Douglas Gregorc7acfdf2009-01-06 05:10:23 +00002081 case Expr::DeclRefExprClass:
2082 case Expr::QualifiedDeclRefExprClass: {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002083 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2084 if (isa<EnumConstantDecl>(D))
2085 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00002086 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002087 return true;
2088 }
2089 case Expr::CompoundLiteralExprClass:
2090 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2091 // but vectors are allowed to be magic.
2092 if (Init->getType()->isVectorType())
2093 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00002094 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002095 return true;
2096 case Expr::UnaryOperatorClass: {
2097 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2098
2099 switch (Exp->getOpcode()) {
2100 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2101 // See C99 6.6p3.
2102 default:
Steve Naroffc6db58a2008-10-27 11:34:16 +00002103 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002104 return true;
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002105 case UnaryOperator::OffsetOf:
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002106 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2107 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00002108 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002109 return true;
2110 case UnaryOperator::Extension:
2111 case UnaryOperator::LNot:
2112 case UnaryOperator::Plus:
2113 case UnaryOperator::Minus:
2114 case UnaryOperator::Not:
2115 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2116 }
2117 }
Sebastian Redl6f282892008-11-11 17:56:53 +00002118 case Expr::SizeOfAlignOfExprClass: {
2119 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002120 // Special check for void types, which are allowed as an extension
Sebastian Redl6f282892008-11-11 17:56:53 +00002121 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002122 return false;
2123 // alignof always evaluates to a constant.
2124 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl6f282892008-11-11 17:56:53 +00002125 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Naroffc6db58a2008-10-27 11:34:16 +00002126 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002127 return true;
2128 }
2129 return false;
2130 }
2131 case Expr::BinaryOperatorClass: {
2132 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2133
2134 if (Exp->getLHS()->getType()->isArithmeticType() &&
2135 Exp->getRHS()->getType()->isArithmeticType()) {
2136 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2137 CheckArithmeticConstantExpression(Exp->getRHS());
2138 }
2139
Eli Friedmane6e0f232008-06-09 05:05:07 +00002140 if (Exp->getLHS()->getType()->isPointerType() &&
2141 Exp->getRHS()->getType()->isPointerType()) {
2142 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2143 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2144
2145 // Only allow a null (constant integer) base; we could
2146 // allow some additional cases if necessary, but this
2147 // is sufficient to cover offsetof-like constructs.
2148 if (!LHSBase && !RHSBase) {
2149 return CheckAddressConstantExpression(Exp->getLHS()) ||
2150 CheckAddressConstantExpression(Exp->getRHS());
2151 }
2152 }
2153
Steve Naroffc6db58a2008-10-27 11:34:16 +00002154 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002155 return true;
2156 }
2157 case Expr::ImplicitCastExprClass:
Douglas Gregorf19b2312008-10-28 15:36:24 +00002158 case Expr::CStyleCastExprClass: {
Nuno Lopes7cffb632009-02-02 22:57:15 +00002159 const CastExpr *CE = cast<CastExpr>(Init);
2160 const Expr *SubExpr = CE->getSubExpr();
2161
Eli Friedman4c55e2c2008-09-01 22:08:17 +00002162 if (SubExpr->getType()->isArithmeticType())
2163 return CheckArithmeticConstantExpression(SubExpr);
2164
Eli Friedmande09ce02008-09-02 09:37:00 +00002165 if (SubExpr->getType()->isPointerType()) {
2166 const Expr* Base = FindExpressionBaseAddress(SubExpr);
Nuno Lopes7cffb632009-02-02 22:57:15 +00002167 if (Base) {
2168 // the cast is only valid if done to a wide enough type
2169 if (Context.getTypeSize(CE->getType()) >=
2170 Context.getTypeSize(SubExpr->getType()))
2171 return false;
2172 } else {
2173 // If the pointer has a null base, this is an offsetof-like construct
2174 return CheckAddressConstantExpression(SubExpr);
2175 }
Eli Friedmande09ce02008-09-02 09:37:00 +00002176 }
2177
Steve Naroffc6db58a2008-10-27 11:34:16 +00002178 InitializerElementNotConstant(Init);
Eli Friedman4c55e2c2008-09-01 22:08:17 +00002179 return true;
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002180 }
2181 case Expr::ConditionalOperatorClass: {
2182 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattnerc4346752008-10-06 05:42:39 +00002183
2184 // If GNU extensions are disabled, we require all operands to be arithmetic
2185 // constant expressions.
2186 if (getLangOptions().NoExtensions) {
2187 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2188 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2189 CheckArithmeticConstantExpression(Exp->getRHS());
2190 }
2191
2192 // Otherwise, we have to emulate some of the behavior of fold here.
2193 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2194 // because it can constant fold things away. To retain compatibility with
2195 // GCC code, we see if we can fold the condition to a constant (which we
2196 // should always be able to do in theory). If so, we only require the
2197 // specified arm of the conditional to be a constant. This is a horrible
2198 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson6736d1a22008-12-19 20:58:05 +00002199 Expr::EvalResult EvalResult;
2200 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2201 EvalResult.HasSideEffects) {
Chris Lattner67d7b922008-11-16 21:24:15 +00002202 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattnerc4346752008-10-06 05:42:39 +00002203 // won't be able to either. Use it to emit the diagnostic though.
2204 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattner67d7b922008-11-16 21:24:15 +00002205 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattnerc4346752008-10-06 05:42:39 +00002206 return Res;
2207 }
2208
2209 // Verify that the side following the condition is also a constant.
2210 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson6736d1a22008-12-19 20:58:05 +00002211 if (EvalResult.Val.getInt() == 0)
Chris Lattnerc4346752008-10-06 05:42:39 +00002212 std::swap(TrueSide, FalseSide);
2213
2214 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002215 return true;
Chris Lattnerc4346752008-10-06 05:42:39 +00002216
2217 // Okay, the evaluated side evaluates to a constant, so we accept this.
2218 // Check to see if the other side is obviously not a constant. If so,
2219 // emit a warning that this is a GNU extension.
Chris Lattnercb136912008-10-06 06:49:02 +00002220 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattnerc4346752008-10-06 05:42:39 +00002221 Diag(Init->getExprLoc(),
Chris Lattnerf490e152008-11-19 05:27:50 +00002222 diag::ext_typecheck_expression_not_constant_but_accepted)
2223 << FalseSide->getSourceRange();
Chris Lattnerc4346752008-10-06 05:42:39 +00002224 return false;
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002225 }
2226 }
2227}
2228
2229bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002230 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init))
2231 Init = DIE->getInit();
2232
Nuno Lopes7bfa1802008-07-07 16:46:50 +00002233 Init = Init->IgnoreParens();
2234
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00002235 if (Init->isEvaluatable(Context))
Anders Carlsson1e495d92008-12-05 05:09:56 +00002236 return false;
2237
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002238 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2239 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2240 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2241
Nuno Lopes7bfa1802008-07-07 16:46:50 +00002242 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2243 return CheckForConstantInitializer(e->getInitializer(), DclT);
2244
Douglas Gregor0202cb42009-01-29 17:44:32 +00002245 if (isa<ImplicitValueInitExpr>(Init)) {
2246 // FIXME: In C++, check for non-POD types.
2247 return false;
2248 }
2249
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002250 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2251 unsigned numInits = Exp->getNumInits();
2252 for (unsigned i = 0; i < numInits; i++) {
2253 // FIXME: Need to get the type of the declaration for C++,
2254 // because it could be a reference?
Douglas Gregor347f7ea2009-01-28 21:54:33 +00002255
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002256 if (CheckForConstantInitializer(Exp->getInit(i),
2257 Exp->getInit(i)->getType()))
2258 return true;
2259 }
2260 return false;
2261 }
2262
Anders Carlsson1e495d92008-12-05 05:09:56 +00002263 // FIXME: We can probably remove some of this code below, now that
2264 // Expr::Evaluate is doing the heavy lifting for scalars.
2265
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002266 if (Init->isNullPointerConstant(Context))
2267 return false;
2268 if (Init->getType()->isArithmeticType()) {
Chris Lattner574dee62008-07-26 22:17:49 +00002269 QualType InitTy = Context.getCanonicalType(Init->getType())
2270 .getUnqualifiedType();
Eli Friedman66572af2008-05-30 18:14:48 +00002271 if (InitTy == Context.BoolTy) {
2272 // Special handling for pointers implicitly cast to bool;
2273 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2274 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2275 Expr* SubE = ICE->getSubExpr();
2276 if (SubE->getType()->isPointerType() ||
2277 SubE->getType()->isArrayType() ||
2278 SubE->getType()->isFunctionType()) {
2279 return CheckAddressConstantExpression(Init);
2280 }
2281 }
2282 } else if (InitTy->isIntegralType()) {
2283 Expr* SubE = 0;
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00002284 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedman66572af2008-05-30 18:14:48 +00002285 SubE = CE->getSubExpr();
2286 // Special check for pointer cast to int; we allow as an extension
2287 // an address constant cast to an integer if the integer
2288 // is of an appropriate width (this sort of code is apparently used
2289 // in some places).
2290 // FIXME: Add pedwarn?
2291 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2292 if (SubE && (SubE->getType()->isPointerType() ||
2293 SubE->getType()->isArrayType() ||
2294 SubE->getType()->isFunctionType())) {
2295 unsigned IntWidth = Context.getTypeSize(Init->getType());
2296 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2297 if (IntWidth >= PointerWidth)
2298 return CheckAddressConstantExpression(Init);
2299 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002300 }
2301
2302 return CheckArithmeticConstantExpression(Init);
2303 }
2304
2305 if (Init->getType()->isPointerType())
2306 return CheckAddressConstantExpression(Init);
2307
Eli Friedman66572af2008-05-30 18:14:48 +00002308 // An array type at the top level that isn't an init-list must
2309 // be a string literal
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002310 if (Init->getType()->isArrayType())
2311 return false;
2312
Nuno Lopes2c5208c2008-09-01 18:42:41 +00002313 if (Init->getType()->isFunctionType())
2314 return false;
2315
Steve Naroffd40a3962008-10-02 17:12:56 +00002316 // Allow block exprs at top level.
2317 if (Init->getType()->isBlockPointerType())
2318 return false;
Nuno Lopes6be29392009-01-15 16:44:45 +00002319
2320 // GCC cast to union extension
2321 // note: the validity of the cast expr is checked by CheckCastTypes()
2322 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2323 QualType T = C->getType();
2324 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2325 }
2326
Steve Naroffc6db58a2008-10-27 11:34:16 +00002327 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00002328 return true;
Steve Naroff98f72032008-01-10 22:15:12 +00002329}
2330
Sebastian Redlc675bab2008-12-13 16:23:55 +00002331void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor5fb53972009-01-14 15:45:31 +00002332 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2333}
2334
2335/// AddInitializerToDecl - Adds the initializer Init to the
2336/// declaration dcl. If DirectInit is true, this is C++ direct
2337/// initialization rather than copy initialization.
2338void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff437b4d82007-09-12 20:13:48 +00002339 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redlc675bab2008-12-13 16:23:55 +00002340 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattner8beb9de2007-10-19 20:10:30 +00002341 assert(Init && "missing initializer");
Steve Naroff61091402007-09-12 14:07:44 +00002342
Chris Lattner8beb9de2007-10-19 20:10:30 +00002343 // If there is no declaration, there was an error parsing it. Just ignore
2344 // the initializer.
2345 if (RealDecl == 0) {
Ted Kremenek5a201952009-02-07 01:47:29 +00002346 Init->Destroy(Context);
Chris Lattner8beb9de2007-10-19 20:10:30 +00002347 return;
2348 }
Steve Naroff61091402007-09-12 14:07:44 +00002349
Steve Naroff437b4d82007-09-12 20:13:48 +00002350 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2351 if (!VDecl) {
Douglas Gregor6e6ad602009-01-20 01:17:11 +00002352 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
Steve Naroff437b4d82007-09-12 20:13:48 +00002353 RealDecl->setInvalidDecl();
2354 return;
2355 }
Steve Naroff61091402007-09-12 14:07:44 +00002356 // Get the decls type and save a reference for later, since
Steve Naroff98f72032008-01-10 22:15:12 +00002357 // CheckInitializerTypes may change it.
Steve Naroff437b4d82007-09-12 20:13:48 +00002358 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff08899ff2008-04-15 22:42:06 +00002359 if (VDecl->isBlockVarDecl()) {
2360 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroff61091402007-09-12 14:07:44 +00002361 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff437b4d82007-09-12 20:13:48 +00002362 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff08899ff2008-04-15 22:42:06 +00002363 VDecl->setInvalidDecl();
2364 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregor6f543152008-11-05 15:29:30 +00002365 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00002366 VDecl->getDeclName(), DirectInit))
Steve Naroff08899ff2008-04-15 22:42:06 +00002367 VDecl->setInvalidDecl();
Anders Carlsson41e08812008-08-22 05:00:02 +00002368
2369 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2370 if (!getLangOptions().CPlusPlus) {
2371 if (SC == VarDecl::Static) // C99 6.7.8p4.
2372 CheckForConstantInitializer(Init, DclT);
2373 }
Steve Naroff61091402007-09-12 14:07:44 +00002374 }
Steve Naroff08899ff2008-04-15 22:42:06 +00002375 } else if (VDecl->isFileVarDecl()) {
2376 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff437b4d82007-09-12 20:13:48 +00002377 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff08899ff2008-04-15 22:42:06 +00002378 if (!VDecl->isInvalidDecl())
Douglas Gregor6f543152008-11-05 15:29:30 +00002379 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00002380 VDecl->getDeclName(), DirectInit))
Steve Naroff08899ff2008-04-15 22:42:06 +00002381 VDecl->setInvalidDecl();
Steve Naroff98f72032008-01-10 22:15:12 +00002382
Anders Carlsson41e08812008-08-22 05:00:02 +00002383 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2384 if (!getLangOptions().CPlusPlus) {
2385 // C99 6.7.8p4. All file scoped initializers need to be constant.
2386 CheckForConstantInitializer(Init, DclT);
2387 }
Steve Naroff61091402007-09-12 14:07:44 +00002388 }
2389 // If the type changed, it means we had an incomplete type that was
2390 // completed by the initializer. For example:
2391 // int ary[] = { 1, 3, 5 };
2392 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb2ed9afd2007-11-29 19:09:19 +00002393 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff437b4d82007-09-12 20:13:48 +00002394 VDecl->setType(DclT);
Christopher Lamb2ed9afd2007-11-29 19:09:19 +00002395 Init->setType(DclT);
2396 }
Steve Naroff61091402007-09-12 14:07:44 +00002397
2398 // Attach the initializer to the decl.
Steve Naroff437b4d82007-09-12 20:13:48 +00002399 VDecl->setInit(Init);
Steve Naroff61091402007-09-12 14:07:44 +00002400 return;
2401}
2402
Douglas Gregor8e1cf602008-10-29 00:13:59 +00002403void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2404 Decl *RealDecl = static_cast<Decl *>(dcl);
2405
Argyrios Kyrtzidis6709e7d2008-11-07 13:01:22 +00002406 // If there is no declaration, there was an error parsing it. Just ignore it.
2407 if (RealDecl == 0)
2408 return;
2409
Douglas Gregor8e1cf602008-10-29 00:13:59 +00002410 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2411 QualType Type = Var->getType();
2412 // C++ [dcl.init.ref]p3:
2413 // The initializer can be omitted for a reference only in a
2414 // parameter declaration (8.3.5), in the declaration of a
2415 // function return type, in the declaration of a class member
2416 // within its class declaration (9.2), and where the extern
2417 // specifier is explicitly used.
Douglas Gregor1349b452008-12-15 21:24:18 +00002418 if (Type->isReferenceType() &&
2419 Var->getStorageClass() != VarDecl::Extern &&
2420 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner29e812b2008-11-20 06:06:08 +00002421 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00002422 << Var->getDeclName()
2423 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregorc28b57d2008-11-03 20:45:27 +00002424 Var->setInvalidDecl();
2425 return;
2426 }
2427
2428 // C++ [dcl.init]p9:
2429 //
2430 // If no initializer is specified for an object, and the object
2431 // is of (possibly cv-qualified) non-POD class type (or array
2432 // thereof), the object shall be default-initialized; if the
2433 // object is of const-qualified type, the underlying class type
2434 // shall have a user-declared default constructor.
2435 if (getLangOptions().CPlusPlus) {
2436 QualType InitType = Type;
2437 if (const ArrayType *Array = Context.getAsArrayType(Type))
2438 InitType = Array->getElementType();
Douglas Gregor1349b452008-12-15 21:24:18 +00002439 if (Var->getStorageClass() != VarDecl::Extern &&
2440 Var->getStorageClass() != VarDecl::PrivateExtern &&
2441 InitType->isRecordType()) {
Douglas Gregor6f543152008-11-05 15:29:30 +00002442 const CXXConstructorDecl *Constructor
2443 = PerformInitializationByConstructor(InitType, 0, 0,
2444 Var->getLocation(),
2445 SourceRange(Var->getLocation(),
2446 Var->getLocation()),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00002447 Var->getDeclName(),
Douglas Gregor6f543152008-11-05 15:29:30 +00002448 IK_Default);
Douglas Gregorc28b57d2008-11-03 20:45:27 +00002449 if (!Constructor)
2450 Var->setInvalidDecl();
2451 }
2452 }
Douglas Gregor8e1cf602008-10-29 00:13:59 +00002453
Douglas Gregor9774aa12008-10-29 13:50:18 +00002454#if 0
2455 // FIXME: Temporarily disabled because we are not properly parsing
2456 // linkage specifications on declarations, e.g.,
2457 //
2458 // extern "C" const CGPoint CGPointerZero;
2459 //
Douglas Gregor8e1cf602008-10-29 00:13:59 +00002460 // C++ [dcl.init]p9:
2461 //
2462 // If no initializer is specified for an object, and the
2463 // object is of (possibly cv-qualified) non-POD class type (or
2464 // array thereof), the object shall be default-initialized; if
2465 // the object is of const-qualified type, the underlying class
2466 // type shall have a user-declared default
2467 // constructor. Otherwise, if no initializer is specified for
2468 // an object, the object and its subobjects, if any, have an
2469 // indeterminate initial value; if the object or any of its
2470 // subobjects are of const-qualified type, the program is
2471 // ill-formed.
2472 //
2473 // This isn't technically an error in C, so we don't diagnose it.
2474 //
2475 // FIXME: Actually perform the POD/user-defined default
2476 // constructor check.
2477 if (getLangOptions().CPlusPlus &&
Douglas Gregor9774aa12008-10-29 13:50:18 +00002478 Context.getCanonicalType(Type).isConstQualified() &&
2479 Var->getStorageClass() != VarDecl::Extern)
Chris Lattner651d42d2008-11-20 06:38:18 +00002480 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2481 << Var->getName()
2482 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor9774aa12008-10-29 13:50:18 +00002483#endif
Douglas Gregor8e1cf602008-10-29 00:13:59 +00002484 }
2485}
2486
Chris Lattner776fac82007-06-09 00:53:06 +00002487/// The declarators are chained together backwards, reverse the list.
2488Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2489 // Often we have single declarators, handle them quickly.
Steve Naroffa23cc792007-09-13 23:52:58 +00002490 Decl *GroupDecl = static_cast<Decl*>(group);
2491 if (GroupDecl == 0)
Steve Naroff61091402007-09-12 14:07:44 +00002492 return 0;
Steve Naroffa23cc792007-09-13 23:52:58 +00002493
Douglas Gregor6e6ad602009-01-20 01:17:11 +00002494 Decl *Group = dyn_cast<Decl>(GroupDecl);
2495 Decl *NewGroup = 0;
Steve Naroff61091402007-09-12 14:07:44 +00002496 if (Group->getNextDeclarator() == 0)
Chris Lattner776fac82007-06-09 00:53:06 +00002497 NewGroup = Group;
Steve Naroff61091402007-09-12 14:07:44 +00002498 else { // reverse the list.
2499 while (Group) {
Douglas Gregor6e6ad602009-01-20 01:17:11 +00002500 Decl *Next = Group->getNextDeclarator();
Steve Naroff61091402007-09-12 14:07:44 +00002501 Group->setNextDeclarator(NewGroup);
2502 NewGroup = Group;
2503 Group = Next;
2504 }
2505 }
2506 // Perform semantic analysis that depends on having fully processed both
2507 // the declarator and initializer.
Douglas Gregor6e6ad602009-01-20 01:17:11 +00002508 for (Decl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroff61091402007-09-12 14:07:44 +00002509 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2510 if (!IDecl)
2511 continue;
Steve Naroff61091402007-09-12 14:07:44 +00002512 QualType T = IDecl->getType();
2513
Anders Carlsson0d8f0ba2008-12-07 00:20:55 +00002514 if (T->isVariableArrayType()) {
Anders Carlsson5d985f52008-12-20 21:51:53 +00002515 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlssona1a9c282008-12-07 00:49:48 +00002516
2517 // FIXME: This won't give the correct result for
2518 // int a[10][n];
2519 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson0d8f0ba2008-12-07 00:20:55 +00002520 if (IDecl->isFileVarDecl()) {
Anders Carlssona1a9c282008-12-07 00:49:48 +00002521 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2522 SizeRange;
2523
Eli Friedmanbd258282008-02-15 18:16:39 +00002524 IDecl->setInvalidDecl();
Anders Carlsson0d8f0ba2008-12-07 00:20:55 +00002525 } else {
2526 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2527 // static storage duration, it shall not have a variable length array.
2528 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlssona1a9c282008-12-07 00:49:48 +00002529 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2530 << SizeRange;
Anders Carlsson0d8f0ba2008-12-07 00:20:55 +00002531 IDecl->setInvalidDecl();
2532 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlssona1a9c282008-12-07 00:49:48 +00002533 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2534 << SizeRange;
Anders Carlsson0d8f0ba2008-12-07 00:20:55 +00002535 IDecl->setInvalidDecl();
2536 }
2537 }
2538 } else if (T->isVariablyModifiedType()) {
2539 if (IDecl->isFileVarDecl()) {
2540 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2541 IDecl->setInvalidDecl();
2542 } else {
2543 if (IDecl->getStorageClass() == VarDecl::Extern) {
2544 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2545 IDecl->setInvalidDecl();
2546 }
Steve Naroff61091402007-09-12 14:07:44 +00002547 }
2548 }
Anders Carlsson0d8f0ba2008-12-07 00:20:55 +00002549
Steve Naroff61091402007-09-12 14:07:44 +00002550 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2551 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff08899ff2008-04-15 22:42:06 +00002552 if (IDecl->isBlockVarDecl() &&
2553 IDecl->getStorageClass() != VarDecl::Extern) {
Douglas Gregordd430f72009-01-19 19:26:10 +00002554 if (!IDecl->isInvalidDecl() &&
2555 DiagnoseIncompleteType(IDecl->getLocation(), T,
2556 diag::err_typecheck_decl_incomplete_type))
Steve Naroff61091402007-09-12 14:07:44 +00002557 IDecl->setInvalidDecl();
Steve Naroff61091402007-09-12 14:07:44 +00002558 }
2559 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2560 // object that has file scope without an initializer, and without a
2561 // storage-class specifier or with the storage-class specifier "static",
2562 // constitutes a tentative definition. Note: A tentative definition with
2563 // external linkage is valid (C99 6.2.2p5).
Steve Naroff5bb8f222008-08-08 17:50:35 +00002564 if (isTentativeDefinition(IDecl)) {
Eli Friedman9e805b22008-02-15 12:53:51 +00002565 if (T->isIncompleteArrayType()) {
Steve Naroffacb6fa62008-01-18 20:40:52 +00002566 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2567 // array to be completed. Don't issue a diagnostic.
Douglas Gregordd430f72009-01-19 19:26:10 +00002568 } else if (!IDecl->isInvalidDecl() &&
2569 DiagnoseIncompleteType(IDecl->getLocation(), T,
2570 diag::err_typecheck_decl_incomplete_type))
Steve Naroffacb6fa62008-01-18 20:40:52 +00002571 // C99 6.9.2p3: If the declaration of an identifier for an object is
2572 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2573 // declared type shall not be an incomplete type.
Steve Naroff61091402007-09-12 14:07:44 +00002574 IDecl->setInvalidDecl();
Steve Naroff61091402007-09-12 14:07:44 +00002575 }
Steve Naroff5bb8f222008-08-08 17:50:35 +00002576 if (IDecl->isFileVarDecl())
2577 CheckForFileScopedRedefinitions(S, IDecl);
Chris Lattner776fac82007-06-09 00:53:06 +00002578 }
2579 return NewGroup;
2580}
Steve Naroff7e6f7c22007-08-28 03:03:08 +00002581
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002582/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2583/// to introduce parameters into function prototype scope.
2584Sema::DeclTy *
2585Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattnercf31de32008-06-26 06:49:43 +00002586 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregorad590502008-12-15 23:53:10 +00002587
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002588 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbar0ff41922008-09-03 21:54:21 +00002589 VarDecl::StorageClass StorageClass = VarDecl::None;
2590 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2591 StorageClass = VarDecl::Register;
2592 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002593 Diag(DS.getStorageClassSpecLoc(),
2594 diag::err_invalid_storage_class_in_func_decl);
Chris Lattnercf31de32008-06-26 06:49:43 +00002595 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002596 }
2597 if (DS.isThreadSpecified()) {
2598 Diag(DS.getThreadSpecLoc(),
2599 diag::err_invalid_storage_class_in_func_decl);
Chris Lattnercf31de32008-06-26 06:49:43 +00002600 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002601 }
2602
Douglas Gregorcaa8ace2008-05-07 04:49:29 +00002603 // Check that there are no default arguments inside the type of this
2604 // parameter (C++ only).
2605 if (getLangOptions().CPlusPlus)
2606 CheckExtraCXXDefaultArguments(D);
2607
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002608 // In this context, we *do not* check D.getInvalidType(). If the declarator
2609 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2610 // though it will not reflect the user specified type.
2611 QualType parmDeclType = GetTypeForDeclarator(D, S);
2612
2613 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2614
Chris Lattnerc284e9b2007-01-23 05:14:32 +00002615 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2616 // Can this happen for params? We already checked that they don't conflict
2617 // among each other. Here they can only shadow globals, which is ok.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002618 IdentifierInfo *II = D.getIdentifier();
Chris Lattnerd9773512009-01-21 02:38:50 +00002619 if (II) {
Douglas Gregor2ada0482009-02-04 17:27:36 +00002620 if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) {
Chris Lattnerd9773512009-01-21 02:38:50 +00002621 if (PrevDecl->isTemplateParameter()) {
2622 // Maybe we will complain about the shadowed template parameter.
2623 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2624 // Just pretend that we didn't see the previous declaration.
2625 PrevDecl = 0;
2626 } else if (S->isDeclScope(PrevDecl)) {
2627 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002628
Chris Lattnerd9773512009-01-21 02:38:50 +00002629 // Recover by removing the name
2630 II = 0;
2631 D.SetIdentifier(0, D.getIdentifierLoc());
2632 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002633 }
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00002634 }
Steve Naroff773df5c2007-08-07 22:44:21 +00002635
2636 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2637 // Doing the promotion here has a win and a loss. The win is the type for
2638 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2639 // code generator). The loss is the orginal type isn't preserved. For example:
2640 //
2641 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2642 // int blockvardecl[5];
2643 // sizeof(parmvardecl); // size == 4
2644 // sizeof(blockvardecl); // size == 20
2645 // }
2646 //
2647 // For expressions, all implicit conversions are captured using the
2648 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2649 //
2650 // FIXME: If a source translation tool needs to see the original type, then
2651 // we need to consider storing both types (in ParmVarDecl)...
2652 //
Chris Lattnera21ad802008-04-02 05:18:44 +00002653 if (parmDeclType->isArrayType()) {
Chris Lattner4f203512008-01-02 22:50:48 +00002654 // int x[restrict 4] -> int *restrict
Chris Lattnera21ad802008-04-02 05:18:44 +00002655 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattner4f203512008-01-02 22:50:48 +00002656 } else if (parmDeclType->isFunctionType())
Steve Naroff773df5c2007-08-07 22:44:21 +00002657 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor91f84212008-12-11 16:49:14 +00002658
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002659 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2660 D.getIdentifierLoc(), II,
Daniel Dunbar0ff41922008-09-03 21:54:21 +00002661 parmDeclType, StorageClass,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00002662 0);
Anders Carlsson1a841062008-02-15 07:04:12 +00002663
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002664 if (D.getInvalidType())
Steve Naroffcf871f52007-08-28 18:45:29 +00002665 New->setInvalidDecl();
Douglas Gregor91f84212008-12-11 16:49:14 +00002666
Douglas Gregorad590502008-12-15 23:53:10 +00002667 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2668 if (D.getCXXScopeSpec().isSet()) {
2669 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2670 << D.getCXXScopeSpec().getRange();
2671 New->setInvalidDecl();
2672 }
2673
Douglas Gregor91f84212008-12-11 16:49:14 +00002674 // Add the parameter declaration into this scope.
2675 S->AddDecl(New);
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00002676 if (II)
Douglas Gregor91f84212008-12-11 16:49:14 +00002677 IdResolver.AddDecl(New);
Nate Begemand8c41562008-02-17 21:20:31 +00002678
Chris Lattner2727d1b2008-06-29 00:02:00 +00002679 ProcessDeclAttributes(New, D);
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00002680 return New;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002681
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00002682}
Fariborz Jahanian56ff1462007-11-08 23:49:49 +00002683
Douglas Gregor9aa89042009-01-23 16:23:13 +00002684void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D) {
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002685 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2686 "Not a function declarator!");
2687 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002688
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002689 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2690 // for a K&R function.
2691 if (!FTI.hasPrototype) {
2692 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002693 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002694 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2695 << FTI.ArgInfo[i].Ident;
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002696 // Implicitly declare the argument as type 'int' for lack of a better
2697 // type.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002698 DeclSpec DS;
2699 const char* PrevSpec; // unused
2700 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2701 PrevSpec);
2702 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2703 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
Douglas Gregor9aa89042009-01-23 16:23:13 +00002704 FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002705 }
2706 }
Douglas Gregor9aa89042009-01-23 16:23:13 +00002707 }
2708}
2709
2710Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
2711 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
2712 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2713 "Not a function declarator!");
2714 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2715
2716 if (FTI.hasPrototype) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002717 // FIXME: Diagnose arguments without names in C.
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002718 }
2719
Douglas Gregorad590502008-12-15 23:53:10 +00002720 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroff012484d2008-01-14 20:51:29 +00002721
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002722 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregorad590502008-12-15 23:53:10 +00002723 ActOnDeclarator(ParentScope, D, 0,
2724 /*IsFunctionDefinition=*/true));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002725}
2726
2727Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2728 Decl *decl = static_cast<Decl*>(D);
Chris Lattner27055192008-02-16 01:20:36 +00002729 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregorcad304ba2008-10-29 15:10:40 +00002730
2731 // See if this is a redefinition.
2732 const FunctionDecl *Definition;
2733 if (FD->getBody(Definition)) {
Chris Lattnere3d20d92008-11-23 21:45:46 +00002734 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner0369c572008-11-23 23:12:31 +00002735 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregorcad304ba2008-10-29 15:10:40 +00002736 }
2737
Douglas Gregor91f84212008-12-11 16:49:14 +00002738 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikovd72f47a2008-12-26 00:52:02 +00002739
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002740 // Check the validity of our function parameters
2741 CheckParmsForFunctionDef(FD);
2742
2743 // Introduce our parameters into the function scope
2744 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2745 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregorc72e6452009-01-09 18:51:29 +00002746 Param->setOwningFunction(FD);
2747
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002748 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00002749 if (Param->getIdentifier())
2750 PushOnScopeChains(Param, FnBodyScope);
Chris Lattnerf61c8a82007-01-21 19:04:43 +00002751 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002752
Anton Korobeynikovd72f47a2008-12-26 00:52:02 +00002753 // Checking attributes of current function definition
2754 // dllimport attribute.
2755 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2756 // dllimport attribute cannot be applied to definition.
2757 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2758 Diag(FD->getLocation(),
2759 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2760 << "dllimport";
2761 FD->setInvalidDecl();
2762 return FD;
2763 } else {
2764 // If a symbol previously declared dllimport is later defined, the
2765 // attribute is ignored in subsequent references, and a warning is
2766 // emitted.
2767 Diag(FD->getLocation(),
2768 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2769 << FD->getNameAsCString() << "dllimport";
2770 }
2771 }
Chris Lattnere168f762006-11-10 05:29:30 +00002772 return FD;
2773}
2774
Sebastian Redlc675bab2008-12-13 16:23:55 +00002775Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroffb313fc32007-11-11 23:20:51 +00002776 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redlc675bab2008-12-13 16:23:55 +00002777 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff542cd5d2008-07-25 17:57:26 +00002778 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redlc675bab2008-12-13 16:23:55 +00002779 FD->setBody(Body);
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +00002780 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff542cd5d2008-07-25 17:57:26 +00002781 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Steve Naroffb313fc32007-11-11 23:20:51 +00002782 MD->setBody((Stmt*)Body);
Ted Kremenek5a201952009-02-07 01:47:29 +00002783 } else {
2784 Body->Destroy(Context);
Steve Naroff542cd5d2008-07-25 17:57:26 +00002785 return 0;
Ted Kremenek5a201952009-02-07 01:47:29 +00002786 }
Chris Lattner0a5ff0d2008-04-06 04:47:34 +00002787 PopDeclContext();
Chris Lattnere2473062007-05-28 06:28:18 +00002788 // Verify and clean out per-function state.
2789
2790 // Check goto/label use.
Chris Lattner23b7eb62007-06-15 23:05:46 +00002791 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2792 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
Chris Lattnere2473062007-05-28 06:28:18 +00002793 // Verify that we have no forward references left. If so, there was a goto
2794 // or address of a label taken, but no definition of it. Label fwd
2795 // definitions are indicated with a null substmt.
2796 if (I->second->getSubStmt() == 0) {
2797 LabelStmt *L = I->second;
2798 // Emit error.
Chris Lattner651d42d2008-11-20 06:38:18 +00002799 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Chris Lattnere2473062007-05-28 06:28:18 +00002800
2801 // At this point, we have gotos that use the bogus label. Stitch it into
2802 // the function body so that they aren't leaked and that the AST is well
2803 // formed.
Chris Lattner3efff542008-01-25 00:01:10 +00002804 if (Body) {
Ted Kremenek5a201952009-02-07 01:47:29 +00002805#if 0
2806 // FIXME: Why do this? Having a 'push_back' in CompoundStmt is ugly,
2807 // and the AST is malformed anyway. We should just blow away 'L'.
2808 L->setSubStmt(new (Context) NullStmt(L->getIdentLoc()));
2809 cast<CompoundStmt>(Body)->push_back(L);
2810#else
2811 L->Destroy(Context);
2812#endif
Chris Lattner3efff542008-01-25 00:01:10 +00002813 } else {
2814 // The whole function wasn't parsed correctly, just delete this.
Ted Kremenek5a201952009-02-07 01:47:29 +00002815 L->Destroy(Context);
Chris Lattner3efff542008-01-25 00:01:10 +00002816 }
Chris Lattnere2473062007-05-28 06:28:18 +00002817 }
2818 }
2819 LabelMap.clear();
2820
Steve Naroffb313fc32007-11-11 23:20:51 +00002821 return D;
Fariborz Jahanian85e1d0d2007-11-10 16:31:34 +00002822}
2823
Chris Lattnerac18be92006-11-20 06:49:47 +00002824/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2825/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Douglas Gregor6e6ad602009-01-20 01:17:11 +00002826NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2827 IdentifierInfo &II, Scope *S) {
Chris Lattner00e26072008-05-05 21:18:06 +00002828 // Extension in C99. Legal in C90, but warn about it.
2829 if (getLangOptions().C99)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002830 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattner00e26072008-05-05 21:18:06 +00002831 else
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002832 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Chris Lattnerac18be92006-11-20 06:49:47 +00002833
2834 // FIXME: handle stuff like:
2835 // void foo() { extern float X(); }
2836 // void bar() { X(); } <-- implicit decl for X in another scope.
2837
2838 // Set a Declarator for the implicit definition: int foo();
Chris Lattner353f5742006-11-28 04:50:12 +00002839 const char *Dummy;
Chris Lattnerac18be92006-11-20 06:49:47 +00002840 DeclSpec DS;
Chris Lattnerb20e8942006-11-28 05:30:29 +00002841 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
Chris Lattnerb055f2d2007-02-11 08:19:57 +00002842 Error = Error; // Silence warning.
Chris Lattner353f5742006-11-28 04:50:12 +00002843 assert(!Error && "Error setting up implicit decl!");
Chris Lattnerac18be92006-11-20 06:49:47 +00002844 Declarator D(DS, Declarator::BlockContext);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002845 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc, D),
2846 SourceLocation());
Chris Lattnerac18be92006-11-20 06:49:47 +00002847 D.SetIdentifier(&II, Loc);
Sebastian Redlf6591ca2009-02-09 18:23:29 +00002848
Argyrios Kyrtzidis694dda12008-05-01 21:04:16 +00002849 // Insert this function into translation-unit scope.
2850
2851 DeclContext *PrevDC = CurContext;
2852 CurContext = Context.getTranslationUnitDecl();
2853
Steve Naroff3913ea42008-04-04 14:32:09 +00002854 FunctionDecl *FD =
Daniel Dunbar1ff1d1f2008-08-05 16:28:08 +00002855 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroff3913ea42008-04-04 14:32:09 +00002856 FD->setImplicit();
Argyrios Kyrtzidis694dda12008-05-01 21:04:16 +00002857
2858 CurContext = PrevDC;
2859
Douglas Gregore711f702009-02-14 18:57:46 +00002860 AddKnownFunctionAttributes(FD);
2861
Steve Naroff3913ea42008-04-04 14:32:09 +00002862 return FD;
Chris Lattnerac18be92006-11-20 06:49:47 +00002863}
2864
Douglas Gregore711f702009-02-14 18:57:46 +00002865/// \brief Adds any function attributes that we know a priori based on
2866/// the declaration of this function.
2867///
2868/// These attributes can apply both to implicitly-declared builtins
2869/// (like __builtin___printf_chk) or to library-declared functions
2870/// like NSLog or printf.
2871void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
2872 if (FD->isInvalidDecl())
2873 return;
2874
2875 // If this is a built-in function, map its builtin attributes to
2876 // actual attributes.
2877 if (unsigned BuiltinID = FD->getBuiltinID(Context)) {
2878 // Handle printf-formatting attributes.
2879 unsigned FormatIdx;
2880 bool HasVAListArg;
2881 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
2882 if (!FD->getAttr<FormatAttr>())
2883 FD->addAttr(new FormatAttr("printf", FormatIdx + 1, FormatIdx + 2));
2884 }
2885 }
2886
2887 IdentifierInfo *Name = FD->getIdentifier();
2888 if (!Name)
2889 return;
2890 if ((!getLangOptions().CPlusPlus &&
2891 FD->getDeclContext()->isTranslationUnit()) ||
2892 (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
2893 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
2894 LinkageSpecDecl::lang_c)) {
2895 // Okay: this could be a libc/libm/Objective-C function we know
2896 // about.
2897 } else
2898 return;
2899
2900 unsigned KnownID;
2901 for (KnownID = 0; KnownID != id_num_known_functions; ++KnownID)
2902 if (KnownFunctionIDs[KnownID] == Name)
2903 break;
2904
2905 switch (KnownID) {
2906 case id_NSLog:
2907 case id_NSLogv:
2908 if (const FormatAttr *Format = FD->getAttr<FormatAttr>()) {
2909 // FIXME: We known better than our headers.
2910 const_cast<FormatAttr *>(Format)->setType("printf");
2911 } else
2912 FD->addAttr(new FormatAttr("printf", 1, 2));
2913 break;
2914
2915 case id_asprintf:
2916 case id_vasprintf:
2917 if (!FD->getAttr<FormatAttr>())
2918 FD->addAttr(new FormatAttr("printf", 2, 3));
2919 break;
2920
2921 default:
2922 // Unknown function or known function without any attributes to
2923 // add. Do nothing.
2924 break;
2925 }
2926}
Chris Lattner302b4be2006-11-19 02:31:38 +00002927
Chris Lattner07b201d2007-11-14 06:34:38 +00002928TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00002929 Decl *LastDeclarator) {
Chris Lattner776fac82007-06-09 00:53:06 +00002930 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Narofff93b6722007-08-28 20:14:24 +00002931 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Chris Lattner0d8b1a12006-11-20 04:34:45 +00002932
Chris Lattner18b19622007-01-22 07:39:13 +00002933 // Scope manipulation handled by caller.
Chris Lattnerc5ffed42008-04-04 06:12:32 +00002934 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
2935 D.getIdentifierLoc(),
Chris Lattnera7b32872008-03-15 06:12:44 +00002936 D.getIdentifier(),
Douglas Gregor6e6ad602009-01-20 01:17:11 +00002937 T);
2938 NewTD->setNextDeclarator(LastDeclarator);
Steve Narofff93b6722007-08-28 20:14:24 +00002939 if (D.getInvalidType())
2940 NewTD->setInvalidDecl();
2941 return NewTD;
Chris Lattnere168f762006-11-10 05:29:30 +00002942}
2943
Steve Naroff30d242c2007-09-15 18:49:24 +00002944/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Chris Lattner1300fb92007-01-23 23:42:53 +00002945/// former case, Name will be non-null. In the later case, Name will be null.
Douglas Gregordee1be82009-01-17 00:42:38 +00002946/// TagSpec indicates what kind of tag this is. TK indicates whether this is a
Chris Lattner1300fb92007-01-23 23:42:53 +00002947/// reference/declaration/definition of a tag.
Douglas Gregordee1be82009-01-17 00:42:38 +00002948Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagKind TK,
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002949 SourceLocation KWLoc, const CXXScopeSpec &SS,
2950 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregorcd72ba92009-02-06 22:42:48 +00002951 AttributeList *Attr) {
Douglas Gregorc811d8f2008-12-15 16:32:14 +00002952 // If this is not a definition, it must have a name.
Chris Lattner7b9ace62007-01-23 20:11:08 +00002953 assert((Name != 0 || TK == TK_Definition) &&
2954 "Nameless record must be a definition!");
Douglas Gregorded2d7b2009-02-04 19:02:06 +00002955
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002956 TagDecl::TagKind Kind;
Douglas Gregordee1be82009-01-17 00:42:38 +00002957 switch (TagSpec) {
Chris Lattnerf34c4da2007-01-23 04:08:05 +00002958 default: assert(0 && "Unknown tag type!");
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002959 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
2960 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
2961 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
2962 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Chris Lattnerf34c4da2007-01-23 04:08:05 +00002963 }
Chris Lattner7e783a12007-01-23 02:05:42 +00002964
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00002965 DeclContext *SearchDC = CurContext;
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002966 DeclContext *DC = CurContext;
Douglas Gregor2ada0482009-02-04 17:27:36 +00002967 NamedDecl *PrevDecl = 0;
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00002968
Douglas Gregordee1be82009-01-17 00:42:38 +00002969 bool Invalid = false;
2970
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002971 if (Name && SS.isNotEmpty()) {
2972 // We have a nested-name tag ('struct foo::bar').
2973
2974 // Check for invalid 'foo::'.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002975 if (SS.isInvalid()) {
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002976 Name = 0;
2977 goto CreateNewDecl;
2978 }
2979
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002980 DC = static_cast<DeclContext*>(SS.getScopeRep());
Douglas Gregor8761da52009-02-03 00:34:39 +00002981 SearchDC = DC;
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002982 // Look-up name inside 'foo::'.
Steve Naroffdcfe56d2009-01-29 00:07:50 +00002983 PrevDecl = dyn_cast_or_null<TagDecl>(
Douglas Gregor889ceb72009-02-03 19:21:40 +00002984 LookupQualifiedName(DC, Name, LookupTagName, true).getAsDecl());
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002985
2986 // A tag 'foo::bar' must already exist.
2987 if (PrevDecl == 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002988 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002989 Name = 0;
2990 goto CreateNewDecl;
2991 }
Chris Lattnerd9773512009-01-21 02:38:50 +00002992 } else if (Name) {
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002993 // If this is a named struct, check to see if there was a previous forward
2994 // declaration or definition.
Douglas Gregor889ceb72009-02-03 19:21:40 +00002995 // FIXME: We're looking into outer scopes here, even when we
2996 // shouldn't be. Doing so can result in ambiguities that we
2997 // shouldn't be diagnosing.
Douglas Gregor4489e942009-02-03 19:26:08 +00002998 LookupResult R = LookupName(S, Name, LookupTagName,
2999 /*RedeclarationOnly=*/(TK != TK_Reference));
Douglas Gregor889ceb72009-02-03 19:21:40 +00003000 if (R.isAmbiguous()) {
3001 DiagnoseAmbiguousLookup(R, Name, NameLoc);
3002 // FIXME: This is not best way to recover from case like:
3003 //
3004 // struct S s;
3005 //
3006 // causes needless err_ovl_no_viable_function_in_init latter.
3007 Name = 0;
3008 PrevDecl = 0;
3009 Invalid = true;
3010 }
3011 else
Douglas Gregor2ada0482009-02-04 17:27:36 +00003012 PrevDecl = R;
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003013
3014 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
3015 // FIXME: This makes sure that we ignore the contexts associated
3016 // with C structs, unions, and enums when looking for a matching
3017 // tag declaration or definition. See the similar lookup tweak
Douglas Gregored8f2882009-01-30 01:04:22 +00003018 // in Sema::LookupName; is there a better way to deal with this?
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00003019 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
3020 SearchDC = SearchDC->getParent();
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003021 }
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00003022 }
3023
Douglas Gregor5daeee22008-12-08 18:40:42 +00003024 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor5101c242008-12-05 18:15:24 +00003025 // Maybe we will complain about the shadowed template parameter.
3026 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
3027 // Just pretend that we didn't see the previous declaration.
3028 PrevDecl = 0;
3029 }
3030
Ted Kremenekceb3ca92008-09-02 21:26:19 +00003031 if (PrevDecl) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003032 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner9ff58d72008-07-03 03:30:58 +00003033 // If this is a use of a previous tag, or if the tag is already declared
3034 // in the same scope (so that the definition/declaration completes or
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003035 // rementions the tag), reuse the decl.
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00003036 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner9ff58d72008-07-03 03:30:58 +00003037 // Make sure that this wasn't declared as an enum and now used as a
3038 // struct or something similar.
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00003039 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003040 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner0369c572008-11-23 23:12:31 +00003041 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner9ff58d72008-07-03 03:30:58 +00003042 // Recover by making this an anonymous redefinition.
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003043 Name = 0;
Chris Lattner9ff58d72008-07-03 03:30:58 +00003044 PrevDecl = 0;
Douglas Gregordee1be82009-01-17 00:42:38 +00003045 Invalid = true;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003046 } else {
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003047 // If this is a use, just return the declaration we found.
Chris Lattner9ff58d72008-07-03 03:30:58 +00003048
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003049 // FIXME: In the future, return a variant or some other clue
3050 // for the consumer of this Decl to know it doesn't own it.
3051 // For our current ASTs this shouldn't be a problem, but will
3052 // need to be changed with DeclGroups.
3053 if (TK == TK_Reference)
Chris Lattner9ff58d72008-07-03 03:30:58 +00003054 return PrevDecl;
Douglas Gregorded2d7b2009-02-04 19:02:06 +00003055
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003056 // Diagnose attempts to redefine a tag.
3057 if (TK == TK_Definition) {
3058 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
3059 Diag(NameLoc, diag::err_redefinition) << Name;
3060 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregordee1be82009-01-17 00:42:38 +00003061 // If this is a redefinition, recover by making this
3062 // struct be anonymous, which will make any later
3063 // references get the previous definition.
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003064 Name = 0;
3065 PrevDecl = 0;
Douglas Gregordee1be82009-01-17 00:42:38 +00003066 Invalid = true;
3067 } else {
3068 // If the type is currently being defined, complain
3069 // about a nested redefinition.
3070 TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
3071 if (Tag->isBeingDefined()) {
3072 Diag(NameLoc, diag::err_nested_redefinition) << Name;
3073 Diag(PrevTagDecl->getLocation(),
3074 diag::note_previous_definition);
3075 Name = 0;
3076 PrevDecl = 0;
3077 Invalid = true;
3078 }
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003079 }
Douglas Gregordee1be82009-01-17 00:42:38 +00003080
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003081 // Okay, this is definition of a previously declared or referenced
3082 // tag PrevDecl. We're going to create a new Decl for it.
Douglas Gregordee1be82009-01-17 00:42:38 +00003083 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003084 }
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003085 // If we get here we have (another) forward declaration or we
3086 // have a definition. Just create a new decl.
3087 } else {
3088 // If we get here, this is a definition of a new tag type in a nested
3089 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
3090 // new decl/type. We set PrevDecl to NULL so that the entities
3091 // have distinct types.
3092 PrevDecl = 0;
Chris Lattner7b9ace62007-01-23 20:11:08 +00003093 }
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003094 // If we get here, we're going to create a new Decl. If PrevDecl
3095 // is non-NULL, it's a definition of the tag declared by
3096 // PrevDecl. If it's NULL, we have a new definition.
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003097 } else {
Douglas Gregorfb034662009-01-28 17:15:10 +00003098 // PrevDecl is a namespace, template, or anything else
3099 // that lives in the IDNS_Tag identifier namespace.
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00003100 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremenek3060d982008-09-03 18:03:35 +00003101 // The tag name clashes with a namespace name, issue an error and
3102 // recover by making this tag be anonymous.
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003103 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner0369c572008-11-23 23:12:31 +00003104 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argyrios Kyrtzidis7da34d02008-07-16 07:45:46 +00003105 Name = 0;
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003106 PrevDecl = 0;
Douglas Gregordee1be82009-01-17 00:42:38 +00003107 Invalid = true;
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003108 } else {
3109 // The existing declaration isn't relevant to us; we're in a
3110 // new scope, so clear out the previous declaration.
3111 PrevDecl = 0;
Argyrios Kyrtzidis7da34d02008-07-16 07:45:46 +00003112 }
Chris Lattner8799cf22007-01-23 01:57:16 +00003113 }
Douglas Gregor658b9552009-01-09 22:42:13 +00003114 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
3115 (Kind != TagDecl::TK_enum)) {
3116 // C++ [basic.scope.pdecl]p5:
3117 // -- for an elaborated-type-specifier of the form
3118 //
3119 // class-key identifier
3120 //
3121 // if the elaborated-type-specifier is used in the
3122 // decl-specifier-seq or parameter-declaration-clause of a
3123 // function defined in namespace scope, the identifier is
3124 // declared as a class-name in the namespace that contains
3125 // the declaration; otherwise, except as a friend
3126 // declaration, the identifier is declared in the smallest
3127 // non-class, non-function-prototype scope that contains the
3128 // declaration.
3129 //
3130 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
3131 // C structs and unions.
3132
3133 // Find the context where we'll be declaring the tag.
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00003134 // FIXME: We would like to maintain the current DeclContext as the
3135 // lexical context,
Douglas Gregor8761da52009-02-03 00:34:39 +00003136 while (SearchDC->isRecord())
3137 SearchDC = SearchDC->getParent();
Douglas Gregor658b9552009-01-09 22:42:13 +00003138
3139 // Find the scope where we'll be declaring the tag.
3140 while (S->isClassScope() ||
3141 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor45a33ec2009-01-12 18:45:55 +00003142 ((S->getFlags() & Scope::DeclScope) == 0) ||
3143 (S->getEntity() &&
3144 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregor658b9552009-01-09 22:42:13 +00003145 S = S->getParent();
Chris Lattner18b19622007-01-22 07:39:13 +00003146 }
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00003147
Chris Lattner438e5012008-12-17 07:13:27 +00003148CreateNewDecl:
Chris Lattner18b19622007-01-22 07:39:13 +00003149
Chris Lattnerbf0b7982007-01-23 04:27:41 +00003150 // If there is an identifier, use the location of the identifier as the
3151 // location of the decl, otherwise use the location of the struct/union
3152 // keyword.
3153 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
3154
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003155 // Otherwise, create a new declaration. If there is a previous
3156 // declaration of the same entity, the two will be linked via
3157 // PrevDecl.
Chris Lattner7b9ace62007-01-23 20:11:08 +00003158 TagDecl *New;
Douglas Gregor9ac7a072009-01-07 00:43:41 +00003159
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00003160 if (Kind == TagDecl::TK_enum) {
Chris Lattner776fac82007-06-09 00:53:06 +00003161 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3162 // enum X { A, B, C } D; D should chain to X.
Douglas Gregor8761da52009-02-03 00:34:39 +00003163 New = EnumDecl::Create(Context, SearchDC, Loc, Name,
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003164 cast_or_null<EnumDecl>(PrevDecl));
Chris Lattner5f521502007-01-25 06:27:24 +00003165 // If this is an undefined enum, warn.
Chris Lattnerc1915e22007-01-25 07:29:02 +00003166 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00003167 } else {
3168 // struct/union/class
3169
Chris Lattner776fac82007-06-09 00:53:06 +00003170 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3171 // struct X { int A; } D; D should chain to X.
Douglas Gregorcd72ba92009-02-06 22:42:48 +00003172 if (getLangOptions().CPlusPlus)
Ted Kremenek6ddf53e2008-09-05 17:39:33 +00003173 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregor8761da52009-02-03 00:34:39 +00003174 New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003175 cast_or_null<CXXRecordDecl>(PrevDecl));
Douglas Gregorcd72ba92009-02-06 22:42:48 +00003176 else
Douglas Gregor8761da52009-02-03 00:34:39 +00003177 New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003178 cast_or_null<RecordDecl>(PrevDecl));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00003179 }
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003180
3181 if (Kind != TagDecl::TK_enum) {
3182 // Handle #pragma pack: if the #pragma pack stack has non-default
3183 // alignment, make up a packed attribute for this decl. These
3184 // attributes are checked when the ASTContext lays out the
3185 // structure.
3186 //
3187 // It is important for implementing the correct semantics that this
3188 // happen here (in act on tag decl). The #pragma pack stack is
3189 // maintained as a result of parser callbacks which can occur at
3190 // many points during the parsing of a struct declaration (because
3191 // the #pragma tokens are effectively skipped over during the
3192 // parsing of the struct).
3193 if (unsigned Alignment = PackContext.getAlignment())
3194 New->addAttr(new PackedAttr(Alignment * 8));
3195 }
3196
Douglas Gregorfb034662009-01-28 17:15:10 +00003197 if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
3198 // C++ [dcl.typedef]p3:
3199 // [...] Similarly, in a given scope, a class or enumeration
3200 // shall not be declared with the same name as a typedef-name
3201 // that is declared in that scope and refers to a type other
3202 // than the class or enumeration itself.
Douglas Gregored8f2882009-01-30 01:04:22 +00003203 LookupResult Lookup = LookupName(S, Name, LookupOrdinaryName, true);
Douglas Gregorfb034662009-01-28 17:15:10 +00003204 TypedefDecl *PrevTypedef = 0;
3205 if (Lookup.getKind() == LookupResult::Found)
3206 PrevTypedef = dyn_cast<TypedefDecl>(Lookup.getAsDecl());
3207
3208 if (PrevTypedef && isDeclInScope(PrevTypedef, SearchDC, S) &&
3209 Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
3210 Context.getCanonicalType(Context.getTypeDeclType(New))) {
3211 Diag(Loc, diag::err_tag_definition_of_typedef)
3212 << Context.getTypeDeclType(New)
3213 << PrevTypedef->getUnderlyingType();
3214 Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
3215 Invalid = true;
3216 }
3217 }
3218
Douglas Gregordee1be82009-01-17 00:42:38 +00003219 if (Invalid)
3220 New->setInvalidDecl();
3221
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003222 if (Attr)
3223 ProcessDeclAttributeList(New, Attr);
3224
Douglas Gregordee1be82009-01-17 00:42:38 +00003225 // If we're declaring or defining a tag in function prototype scope
3226 // in C, note that this type can only be used within the function.
Douglas Gregor658b9552009-01-09 22:42:13 +00003227 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3228 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3229
Douglas Gregorc811d8f2008-12-15 16:32:14 +00003230 // Set the lexical context. If the tag has a C++ scope specifier, the
3231 // lexical context will be different from the semantic context.
Douglas Gregor8761da52009-02-03 00:34:39 +00003232 New->setLexicalDeclContext(CurContext);
Douglas Gregordee1be82009-01-17 00:42:38 +00003233
3234 if (TK == TK_Definition)
3235 New->startDefinition();
Chris Lattner18b19622007-01-22 07:39:13 +00003236
3237 // If this has an identifier, add it to the scope stack.
3238 if (Name) {
Douglas Gregor45a33ec2009-01-12 18:45:55 +00003239 S = getNonFieldDeclScope(S);
Douglas Gregor8761da52009-02-03 00:34:39 +00003240 PushOnScopeChains(New, S);
Douglas Gregorc6f58fe2009-01-12 22:49:06 +00003241 } else {
Douglas Gregor8761da52009-02-03 00:34:39 +00003242 CurContext->addDecl(New);
Chris Lattner18b19622007-01-22 07:39:13 +00003243 }
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +00003244
Chris Lattner18b19622007-01-22 07:39:13 +00003245 return New;
3246}
Chris Lattner1300fb92007-01-23 23:42:53 +00003247
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003248void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregorded2d7b2009-02-04 19:02:06 +00003249 AdjustDeclIfTemplate(TagD);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003250 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3251
3252 // Enter the tag context.
3253 PushDeclContext(S, Tag);
3254
3255 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3256 FieldCollector->StartClass();
3257
3258 if (Record->getIdentifier()) {
3259 // C++ [class]p2:
3260 // [...] The class-name is also inserted into the scope of the
3261 // class itself; this is known as the injected-class-name. For
3262 // purposes of access checking, the injected-class-name is treated
3263 // as if it were a public member name.
3264 RecordDecl *InjectedClassName
3265 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3266 CurContext, Record->getLocation(),
3267 Record->getIdentifier(), Record);
3268 InjectedClassName->setImplicit();
3269 PushOnScopeChains(InjectedClassName, S);
3270 }
3271 }
3272}
3273
3274void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregorded2d7b2009-02-04 19:02:06 +00003275 AdjustDeclIfTemplate(TagD);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003276 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3277
3278 if (isa<CXXRecordDecl>(Tag))
3279 FieldCollector->FinishClass();
3280
3281 // Exit this scope of this tag's definition.
3282 PopDeclContext();
3283
3284 // Notify the consumer that we've defined a tag.
3285 Consumer.HandleTagDeclDefinition(Tag);
3286}
Chris Lattner535b8302008-06-21 19:39:06 +00003287
Chris Lattnerffb31a22008-11-12 21:17:48 +00003288/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
3289/// types into constant array types in certain situations which would otherwise
3290/// be errors (for GCC compatibility).
3291static QualType TryToFixInvalidVariablyModifiedType(QualType T,
3292 ASTContext &Context) {
Eli Friedman149614b2008-06-03 21:01:11 +00003293 // This method tries to turn a variable array into a constant
3294 // array even when the size isn't an ICE. This is necessary
3295 // for compatibility with code that depends on gcc's buggy
3296 // constant expression folding, like struct {char x[(int)(char*)2];}
Chris Lattnerb5da7a32008-11-12 19:48:13 +00003297 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
3298 if (!VLATy) return QualType();
3299
Anders Carlsson6736d1a22008-12-19 20:58:05 +00003300 Expr::EvalResult EvalResult;
Chris Lattnerb5da7a32008-11-12 19:48:13 +00003301 if (!VLATy->getSizeExpr() ||
Anders Carlsson6736d1a22008-12-19 20:58:05 +00003302 !VLATy->getSizeExpr()->Evaluate(EvalResult, Context))
Chris Lattnerb5da7a32008-11-12 19:48:13 +00003303 return QualType();
3304
Anders Carlsson6736d1a22008-12-19 20:58:05 +00003305 assert(EvalResult.Val.isInt() && "Size expressions must be integers!");
3306 llvm::APSInt &Res = EvalResult.Val.getInt();
Nuno Lopes026bcde2009-02-02 22:32:08 +00003307 if (Res >= llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
3308 return Context.getConstantArrayType(VLATy->getElementType(),
3309 Res, ArrayType::Normal, 0);
3310 return QualType();
Eli Friedman149614b2008-06-03 21:01:11 +00003311}
3312
Anders Carlsson5df391e2008-12-06 20:33:04 +00003313bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattner81ed6802008-12-12 04:56:04 +00003314 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson5df391e2008-12-06 20:33:04 +00003315 // FIXME: 6.7.2.1p4 - verify the field type.
3316
3317 llvm::APSInt Value;
3318 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3319 return true;
3320
Chris Lattner81ed6802008-12-12 04:56:04 +00003321 // Zero-width bitfield is ok for anonymous field.
3322 if (Value == 0 && FieldName)
3323 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3324
3325 if (Value.isNegative())
3326 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson5df391e2008-12-06 20:33:04 +00003327
3328 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3329 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattner81ed6802008-12-12 04:56:04 +00003330 if (TypeSize && Value.getZExtValue() > TypeSize)
3331 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3332 << FieldName << (unsigned)TypeSize;
Anders Carlsson5df391e2008-12-06 20:33:04 +00003333
3334 return false;
3335}
3336
Steve Naroff30d242c2007-09-15 18:49:24 +00003337/// ActOnField - Each field of a struct/union/class is passed into this in order
Chris Lattner1300fb92007-01-23 23:42:53 +00003338/// to create a FieldDecl object for it.
Douglas Gregor91f84212008-12-11 16:49:14 +00003339Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Chris Lattner1300fb92007-01-23 23:42:53 +00003340 SourceLocation DeclStart,
3341 Declarator &D, ExprTy *BitfieldWidth) {
3342 IdentifierInfo *II = D.getIdentifier();
3343 Expr *BitWidth = (Expr*)BitfieldWidth;
Chris Lattner1300fb92007-01-23 23:42:53 +00003344 SourceLocation Loc = DeclStart;
Douglas Gregor91f84212008-12-11 16:49:14 +00003345 RecordDecl *Record = (RecordDecl *)TagD;
Chris Lattner1300fb92007-01-23 23:42:53 +00003346 if (II) Loc = D.getIdentifierLoc();
3347
Chris Lattner62d2e662007-01-28 00:21:37 +00003348 // FIXME: Unnamed fields can be handled in various different ways, for
3349 // example, unnamed unions inject all members into the struct namespace!
Chris Lattner1300fb92007-01-23 23:42:53 +00003350
Steve Naroffe5aa9be2007-04-05 22:36:20 +00003351 QualType T = GetTypeForDeclarator(D, S);
Steve Narofff93b6722007-08-28 20:14:24 +00003352 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3353 bool InvalidDecl = false;
Sebastian Redlbaad4e72009-01-05 20:52:13 +00003354
Steve Naroff8eeeb132007-05-08 21:09:37 +00003355 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3356 // than a variably modified type.
Eli Friedman9e805b22008-02-15 12:53:51 +00003357 if (T->isVariablyModifiedType()) {
Chris Lattnerffb31a22008-11-12 21:17:48 +00003358 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context);
Eli Friedman149614b2008-06-03 21:01:11 +00003359 if (!FixedTy.isNull()) {
Chris Lattnerf3e388d2008-11-13 18:49:38 +00003360 Diag(Loc, diag::warn_illegal_constant_array_size);
Eli Friedman149614b2008-06-03 21:01:11 +00003361 T = FixedTy;
3362 } else {
Chris Lattnerf3e388d2008-11-13 18:49:38 +00003363 Diag(Loc, diag::err_typecheck_field_variable_size);
Chris Lattnere7d1cdb2008-11-12 19:45:49 +00003364 T = Context.IntTy;
Eli Friedman149614b2008-06-03 21:01:11 +00003365 InvalidDecl = true;
3366 }
Steve Naroff8eeeb132007-05-08 21:09:37 +00003367 }
Anders Carlsson5df391e2008-12-06 20:33:04 +00003368
3369 if (BitWidth) {
3370 if (VerifyBitField(Loc, II, T, BitWidth))
3371 InvalidDecl = true;
3372 } else {
3373 // Not a bitfield.
3374
3375 // validate II.
3376
3377 }
3378
Chris Lattner776fac82007-06-09 00:53:06 +00003379 // FIXME: Chain fielddecls together.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00003380 FieldDecl *NewFD;
3381
Douglas Gregor91f84212008-12-11 16:49:14 +00003382 NewFD = FieldDecl::Create(Context, Record,
3383 Loc, II, T, BitWidth,
3384 D.getDeclSpec().getStorageClassSpec() ==
Douglas Gregor6e6ad602009-01-20 01:17:11 +00003385 DeclSpec::SCS_mutable);
Douglas Gregor91f84212008-12-11 16:49:14 +00003386
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003387 if (II) {
Douglas Gregor2ada0482009-02-04 17:27:36 +00003388 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003389 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3390 && !isa<TagDecl>(PrevDecl)) {
3391 Diag(Loc, diag::err_duplicate_member) << II;
3392 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3393 NewFD->setInvalidDecl();
3394 Record->setInvalidDecl();
3395 }
3396 }
3397
Sebastian Redlbaad4e72009-01-05 20:52:13 +00003398 if (getLangOptions().CPlusPlus) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00003399 CheckExtraCXXDefaultArguments(D);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00003400 if (!T->isPODType())
3401 cast<CXXRecordDecl>(Record)->setPOD(false);
3402 }
Douglas Gregor4d87df52008-12-16 21:30:33 +00003403
Chris Lattner2727d1b2008-06-29 00:02:00 +00003404 ProcessDeclAttributes(NewFD, D);
Anders Carlsson28e71082008-02-16 00:29:18 +00003405
Steve Narofff93b6722007-08-28 20:14:24 +00003406 if (D.getInvalidType() || InvalidDecl)
3407 NewFD->setInvalidDecl();
Douglas Gregor91f84212008-12-11 16:49:14 +00003408
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003409 if (II) {
Douglas Gregor91f84212008-12-11 16:49:14 +00003410 PushOnScopeChains(NewFD, S);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003411 } else
Douglas Gregorb3730b52009-01-12 23:27:07 +00003412 Record->addDecl(NewFD);
Douglas Gregor91f84212008-12-11 16:49:14 +00003413
Steve Narofff93b6722007-08-28 20:14:24 +00003414 return NewFD;
Chris Lattner1300fb92007-01-23 23:42:53 +00003415}
3416
Fariborz Jahanianf26702eb2007-10-01 16:53:59 +00003417/// TranslateIvarVisibility - Translate visibility from a token ID to an
3418/// AST enum value.
Ted Kremenek1b0ea822008-01-07 19:49:32 +00003419static ObjCIvarDecl::AccessControl
Fariborz Jahanianf26702eb2007-10-01 16:53:59 +00003420TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Naroff2e688fd2007-09-14 23:09:53 +00003421 switch (ivarVisibility) {
Chris Lattner79ef8432008-10-12 00:28:42 +00003422 default: assert(0 && "Unknown visitibility kind");
3423 case tok::objc_private: return ObjCIvarDecl::Private;
3424 case tok::objc_public: return ObjCIvarDecl::Public;
3425 case tok::objc_protected: return ObjCIvarDecl::Protected;
3426 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Naroff2e688fd2007-09-14 23:09:53 +00003427 }
3428}
3429
Fariborz Jahanian96376742008-04-11 16:55:42 +00003430/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3431/// in order to create an IvarDecl object for it.
Fariborz Jahaniande615832008-04-10 23:32:45 +00003432Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian96376742008-04-11 16:55:42 +00003433 SourceLocation DeclStart,
3434 Declarator &D, ExprTy *BitfieldWidth,
3435 tok::ObjCKeywordKind Visibility) {
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003436
Fariborz Jahaniande615832008-04-10 23:32:45 +00003437 IdentifierInfo *II = D.getIdentifier();
3438 Expr *BitWidth = (Expr*)BitfieldWidth;
3439 SourceLocation Loc = DeclStart;
3440 if (II) Loc = D.getIdentifierLoc();
3441
3442 // FIXME: Unnamed fields can be handled in various different ways, for
3443 // example, unnamed unions inject all members into the struct namespace!
3444
Anders Carlsson5df391e2008-12-06 20:33:04 +00003445 QualType T = GetTypeForDeclarator(D, S);
3446 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3447 bool InvalidDecl = false;
Fariborz Jahaniande615832008-04-10 23:32:45 +00003448
3449 if (BitWidth) {
3450 // TODO: Validate.
3451 //printf("WARNING: BITFIELDS IGNORED!\n");
3452
3453 // 6.7.2.1p3
3454 // 6.7.2.1p4
3455
3456 } else {
3457 // Not a bitfield.
3458
3459 // validate II.
3460
3461 }
3462
Fariborz Jahaniande615832008-04-10 23:32:45 +00003463 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3464 // than a variably modified type.
3465 if (T->isVariablyModifiedType()) {
Anders Carlsson0d8f0ba2008-12-07 00:20:55 +00003466 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahaniande615832008-04-10 23:32:45 +00003467 InvalidDecl = true;
3468 }
3469
Ted Kremenek73295fa2008-07-23 18:04:17 +00003470 // Get the visibility (access control) for this ivar.
3471 ObjCIvarDecl::AccessControl ac =
3472 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3473 : ObjCIvarDecl::None;
3474
3475 // Construct the decl.
3476 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroffde7d0f62008-07-16 18:22:22 +00003477 (Expr *)BitfieldWidth);
Fariborz Jahaniande615832008-04-10 23:32:45 +00003478
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003479 if (II) {
Douglas Gregor2ada0482009-02-04 17:27:36 +00003480 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003481 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3482 && !isa<TagDecl>(PrevDecl)) {
3483 Diag(Loc, diag::err_duplicate_member) << II;
3484 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3485 NewID->setInvalidDecl();
3486 }
3487 }
3488
Ted Kremenek73295fa2008-07-23 18:04:17 +00003489 // Process attributes attached to the ivar.
Chris Lattner2727d1b2008-06-29 00:02:00 +00003490 ProcessDeclAttributes(NewID, D);
Fariborz Jahaniande615832008-04-10 23:32:45 +00003491
3492 if (D.getInvalidType() || InvalidDecl)
3493 NewID->setInvalidDecl();
Ted Kremenek73295fa2008-07-23 18:04:17 +00003494
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003495 if (II) {
3496 // FIXME: When interfaces are DeclContexts, we'll need to add
3497 // these to the interface.
3498 S->AddDecl(NewID);
3499 IdResolver.AddDecl(NewID);
3500 }
3501
Fariborz Jahaniande615832008-04-10 23:32:45 +00003502 return NewID;
3503}
3504
Fariborz Jahanian343f7092007-09-29 00:54:24 +00003505void Sema::ActOnFields(Scope* S,
Fariborz Jahanian67341402007-10-04 00:45:27 +00003506 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff30d242c2007-09-15 18:49:24 +00003507 DeclTy **Fields, unsigned NumFields,
Daniel Dunbar15619c72008-10-03 02:03:53 +00003508 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar325601a2008-10-03 17:33:35 +00003509 AttributeList *Attr) {
Steve Naroffdb47ee22007-09-14 22:20:54 +00003510 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3511 assert(EnclosingDecl && "missing record or interface decl");
3512 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
3513
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00003514 // Verify that all the fields are okay.
Chris Lattner82625602007-01-24 02:26:21 +00003515 unsigned NumNamedMembers = 0;
Chris Lattner23b7eb62007-06-15 23:05:46 +00003516 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregorf4d33272009-01-07 19:46:03 +00003517
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00003518 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroffdb47ee22007-09-14 22:20:54 +00003519 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3520 assert(FD && "missing field decl");
3521
Chris Lattner720a0542007-01-25 00:44:24 +00003522 // Get the type for the field.
Chris Lattner0fd893e2007-07-31 21:33:24 +00003523 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregorf4d33272009-01-07 19:46:03 +00003524
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003525 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregorf4d33272009-01-07 19:46:03 +00003526 // Remember all fields written by the user.
3527 RecFields.push_back(FD);
3528 }
Steve Naroff2e688fd2007-09-14 23:09:53 +00003529
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00003530 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner0fd893e2007-07-31 21:33:24 +00003531 if (FDTy->isFunctionType()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00003532 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00003533 << FD->getDeclName();
Steve Naroffdb47ee22007-09-14 22:20:54 +00003534 FD->setInvalidDecl();
3535 EnclosingDecl->setInvalidDecl();
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00003536 continue;
3537 }
Chris Lattner82625602007-01-24 02:26:21 +00003538 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
Chris Lattner720a0542007-01-25 00:44:24 +00003539 if (FDTy->isIncompleteType()) {
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00003540 if (!Record) { // Incomplete ivar type is always an error.
Douglas Gregordd430f72009-01-19 19:26:10 +00003541 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3542 diag::err_field_incomplete);
Steve Naroffdb47ee22007-09-14 22:20:54 +00003543 FD->setInvalidDecl();
3544 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian67341402007-10-04 00:45:27 +00003545 continue;
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00003546 }
Chris Lattner82625602007-01-24 02:26:21 +00003547 if (i != NumFields-1 || // ... that the last member ...
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00003548 !Record->isStruct() || // ... of a structure ...
Chris Lattner0fd893e2007-07-31 21:33:24 +00003549 !FDTy->isArrayType()) { //... may have incomplete array type.
Douglas Gregordd430f72009-01-19 19:26:10 +00003550 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3551 diag::err_field_incomplete);
Steve Naroffdb47ee22007-09-14 22:20:54 +00003552 FD->setInvalidDecl();
3553 EnclosingDecl->setInvalidDecl();
Chris Lattner82625602007-01-24 02:26:21 +00003554 continue;
3555 }
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00003556 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner651d42d2008-11-20 06:38:18 +00003557 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00003558 << FD->getDeclName();
Steve Naroffdb47ee22007-09-14 22:20:54 +00003559 FD->setInvalidDecl();
3560 EnclosingDecl->setInvalidDecl();
Chris Lattner82625602007-01-24 02:26:21 +00003561 continue;
3562 }
Chris Lattner720a0542007-01-25 00:44:24 +00003563 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00003564 if (Record)
3565 Record->setHasFlexibleArrayMember(true);
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00003566 }
Chris Lattner720a0542007-01-25 00:44:24 +00003567 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3568 /// field of another structure or the element of an array.
Chris Lattner0fd893e2007-07-31 21:33:24 +00003569 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner720a0542007-01-25 00:44:24 +00003570 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3571 // If this is a member of a union, then entire union becomes "flexible".
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00003572 if (Record && Record->isUnion()) {
Chris Lattner41943152007-01-25 04:52:46 +00003573 Record->setHasFlexibleArrayMember(true);
Chris Lattner720a0542007-01-25 00:44:24 +00003574 } else {
3575 // If this is a struct/class and this is not the last element, reject
3576 // it. Note that GCC supports variable sized arrays in the middle of
3577 // structures.
3578 if (i != NumFields-1) {
Chris Lattner651d42d2008-11-20 06:38:18 +00003579 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00003580 << FD->getDeclName();
Steve Naroffdb47ee22007-09-14 22:20:54 +00003581 FD->setInvalidDecl();
3582 EnclosingDecl->setInvalidDecl();
Chris Lattner720a0542007-01-25 00:44:24 +00003583 continue;
3584 }
Chris Lattner720a0542007-01-25 00:44:24 +00003585 // We support flexible arrays at the end of structs in other structs
3586 // as an extension.
Chris Lattner651d42d2008-11-20 06:38:18 +00003587 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00003588 << FD->getDeclName();
Fariborz Jahanian67341402007-10-04 00:45:27 +00003589 if (Record)
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00003590 Record->setHasFlexibleArrayMember(true);
Chris Lattner720a0542007-01-25 00:44:24 +00003591 }
3592 }
3593 }
Fariborz Jahanianecfe4f12007-10-12 22:10:42 +00003594 /// A field cannot be an Objective-c object
Ted Kremenek1b0ea822008-01-07 19:49:32 +00003595 if (FDTy->isObjCInterfaceType()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00003596 Diag(FD->getLocation(), diag::err_statically_allocated_object)
Chris Lattnere3d20d92008-11-23 21:45:46 +00003597 << FD->getDeclName();
Fariborz Jahanianecfe4f12007-10-12 22:10:42 +00003598 FD->setInvalidDecl();
3599 EnclosingDecl->setInvalidDecl();
3600 continue;
3601 }
Chris Lattner82625602007-01-24 02:26:21 +00003602 // Keep track of the number of named members.
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003603 if (FD->getIdentifier())
Chris Lattner82625602007-01-24 02:26:21 +00003604 ++NumNamedMembers;
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00003605 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00003606
Chris Lattner82625602007-01-24 02:26:21 +00003607 // Okay, we successfully defined 'Record'.
Chris Lattner622c1932008-02-06 00:51:33 +00003608 if (Record) {
Douglas Gregor91f84212008-12-11 16:49:14 +00003609 Record->completeDefinition(Context);
Chris Lattner622c1932008-02-06 00:51:33 +00003610 } else {
Chris Lattner9413a012008-02-05 22:40:55 +00003611 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian02225532008-12-13 20:28:25 +00003612 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattner9413a012008-02-05 22:40:55 +00003613 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniana599c132008-12-16 01:08:35 +00003614 // Must enforce the rule that ivars in the base classes may not be
3615 // duplicates.
Fariborz Jahanian4496c0f2008-12-17 22:21:44 +00003616 if (ID->getSuperClass()) {
3617 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3618 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3619 ObjCIvarDecl* Ivar = (*IVI);
3620 IdentifierInfo *II = Ivar->getIdentifier();
3621 ObjCIvarDecl* prevIvar = ID->getSuperClass()->FindIvarDeclaration(II);
3622 if (prevIvar) {
3623 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregor82ac25e2009-01-08 20:45:30 +00003624 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahaniana599c132008-12-16 01:08:35 +00003625 }
Fariborz Jahanian4496c0f2008-12-17 22:21:44 +00003626 }
Fariborz Jahaniana599c132008-12-16 01:08:35 +00003627 }
Fariborz Jahanian02225532008-12-13 20:28:25 +00003628 }
Chris Lattner9413a012008-02-05 22:40:55 +00003629 else if (ObjCImplementationDecl *IMPDecl =
3630 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremenek1b0ea822008-01-07 19:49:32 +00003631 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
3632 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian95b60762007-10-31 18:48:14 +00003633 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahanian2a4dd312007-09-26 18:27:25 +00003634 }
Fariborz Jahanianf3287bf2007-09-14 21:08:27 +00003635 }
Daniel Dunbar325601a2008-10-03 17:33:35 +00003636
3637 if (Attr)
3638 ProcessDeclAttributeList(Record, Attr);
Chris Lattner1300fb92007-01-23 23:42:53 +00003639}
3640
Steve Naroff30d242c2007-09-15 18:49:24 +00003641Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Chris Lattner4ef40012007-06-11 01:28:17 +00003642 DeclTy *lastEnumConst,
Chris Lattnerc1915e22007-01-25 07:29:02 +00003643 SourceLocation IdLoc, IdentifierInfo *Id,
Chris Lattner4ef40012007-06-11 01:28:17 +00003644 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattnerc5ffed42008-04-04 06:12:32 +00003645 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Chris Lattner4ef40012007-06-11 01:28:17 +00003646 EnumConstantDecl *LastEnumConst =
3647 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3648 Expr *Val = static_cast<Expr*>(val);
Chris Lattner8116d1b2007-01-25 22:38:29 +00003649
Chris Lattner1a76a3c2007-08-26 06:24:45 +00003650 // The scope passed in may not be a decl scope. Zip up the scope tree until
3651 // we find one that is.
Douglas Gregor45a33ec2009-01-12 18:45:55 +00003652 S = getNonFieldDeclScope(S);
Chris Lattner1a76a3c2007-08-26 06:24:45 +00003653
Chris Lattner8116d1b2007-01-25 22:38:29 +00003654 // Verify that there isn't already something declared with this name in this
3655 // scope.
Douglas Gregor2ada0482009-02-04 17:27:36 +00003656 NamedDecl *PrevDecl = LookupName(S, Id, LookupOrdinaryName);
Douglas Gregor5daeee22008-12-08 18:40:42 +00003657 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor5101c242008-12-05 18:15:24 +00003658 // Maybe we will complain about the shadowed template parameter.
3659 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3660 // Just pretend that we didn't see the previous declaration.
3661 PrevDecl = 0;
3662 }
3663
3664 if (PrevDecl) {
Argyrios Kyrtzidisbd259982008-07-16 21:01:53 +00003665 // When in C++, we may get a TagDecl with the same name; in this case the
3666 // enum constant will 'hide' the tag.
3667 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3668 "Received TagDecl when not in C++!");
Argyrios Kyrtzidis5b144d52008-09-09 21:18:04 +00003669 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner8116d1b2007-01-25 22:38:29 +00003670 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003671 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Chris Lattner8116d1b2007-01-25 22:38:29 +00003672 else
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003673 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner0369c572008-11-23 23:12:31 +00003674 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Ted Kremenek5a201952009-02-07 01:47:29 +00003675 Val->Destroy(Context);
Chris Lattner8116d1b2007-01-25 22:38:29 +00003676 return 0;
3677 }
3678 }
Chris Lattner4ef40012007-06-11 01:28:17 +00003679
Chris Lattner23b7eb62007-06-15 23:05:46 +00003680 llvm::APSInt EnumVal(32);
Chris Lattner4ef40012007-06-11 01:28:17 +00003681 QualType EltTy;
3682 if (Val) {
Chris Lattner0515e4b2007-08-27 21:16:18 +00003683 // Make sure to promote the operand type to int.
3684 UsualUnaryConversions(Val);
3685
Chris Lattner4ef40012007-06-11 01:28:17 +00003686 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3687 SourceLocation ExpLoc;
Anders Carlsson1aa67922008-12-05 16:33:57 +00003688 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Ted Kremenek5a201952009-02-07 01:47:29 +00003689 Val->Destroy(Context);
Chris Lattnerf283a372007-08-27 17:37:24 +00003690 Val = 0; // Just forget about it.
Chris Lattnerc92bc4c2007-08-29 16:03:41 +00003691 } else {
3692 EltTy = Val->getType();
Chris Lattner4ef40012007-06-11 01:28:17 +00003693 }
Chris Lattnerf283a372007-08-27 17:37:24 +00003694 }
3695
3696 if (!Val) {
3697 if (LastEnumConst) {
3698 // Assign the last value + 1.
3699 EnumVal = LastEnumConst->getInitVal();
3700 ++EnumVal;
Chris Lattner0515e4b2007-08-27 21:16:18 +00003701
3702 // Check for overflow on increment.
3703 if (EnumVal < LastEnumConst->getInitVal())
3704 Diag(IdLoc, diag::warn_enum_value_overflow);
3705
Chris Lattnerf283a372007-08-27 17:37:24 +00003706 EltTy = LastEnumConst->getType();
3707 } else {
3708 // First value, set to zero.
3709 EltTy = Context.IntTy;
Chris Lattner37e05872008-03-05 18:54:05 +00003710 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnerf283a372007-08-27 17:37:24 +00003711 }
Steve Naroff63969212007-05-07 21:22:42 +00003712 }
Chris Lattner4ef40012007-06-11 01:28:17 +00003713
Chris Lattnera7b32872008-03-15 06:12:44 +00003714 EnumConstantDecl *New =
Chris Lattnerc5ffed42008-04-04 06:12:32 +00003715 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
Douglas Gregor6e6ad602009-01-20 01:17:11 +00003716 Val, EnumVal);
Chris Lattner8116d1b2007-01-25 22:38:29 +00003717
3718 // Register this decl in the current scope stack.
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00003719 PushOnScopeChains(New, S);
Douglas Gregor2f521192008-12-17 02:04:30 +00003720
Chris Lattner8116d1b2007-01-25 22:38:29 +00003721 return New;
Chris Lattnerc1915e22007-01-25 07:29:02 +00003722}
3723
Steve Narofff960c0b2008-08-07 14:08:16 +00003724// FIXME: For consistency with ActOnFields(), we should have the parser
3725// pass in the source location for the left/right braces.
Steve Naroff30d242c2007-09-15 18:49:24 +00003726void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Chris Lattnerc1915e22007-01-25 07:29:02 +00003727 DeclTy **Elements, unsigned NumElements) {
3728 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregor07665a62009-01-05 19:45:36 +00003729 QualType EnumType = Context.getTypeDeclType(Enum);
Chris Lattnerc1915e22007-01-25 07:29:02 +00003730
Chris Lattner67933c02007-08-28 05:10:31 +00003731 // TODO: If the result value doesn't fit in an int, it must be a long or long
3732 // long value. ISO C does not support this, but GCC does as an extension,
3733 // emit a warning.
Chris Lattner37e05872008-03-05 18:54:05 +00003734 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattner67933c02007-08-28 05:10:31 +00003735
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003736 // Verify that all the values are okay, compute the size of the values, and
3737 // reverse the list.
3738 unsigned NumNegativeBits = 0;
3739 unsigned NumPositiveBits = 0;
3740
3741 // Keep track of whether all elements have type int.
3742 bool AllElementsInt = true;
3743
Chris Lattnerc1915e22007-01-25 07:29:02 +00003744 for (unsigned i = 0; i != NumElements; ++i) {
3745 EnumConstantDecl *ECD =
3746 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3747 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnerbf478cb2007-08-28 05:27:00 +00003748
3749 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattnerbf478cb2007-08-28 05:27:00 +00003750 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattner77683132008-02-26 00:33:57 +00003751 assert(InitVal.getBitWidth() >= IntWidth &&
3752 "Should have promoted value to int");
Chris Lattnerbf478cb2007-08-28 05:27:00 +00003753 if (InitVal.getBitWidth() > IntWidth) {
3754 llvm::APSInt V(InitVal);
3755 V.trunc(IntWidth);
3756 V.extend(InitVal.getBitWidth());
3757 if (V != InitVal)
Chris Lattner651d42d2008-11-20 06:38:18 +00003758 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3759 << InitVal.toString(10);
Chris Lattnerbf478cb2007-08-28 05:27:00 +00003760 }
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003761
3762 // Keep track of the size of positive and negative values.
Chris Lattner77683132008-02-26 00:33:57 +00003763 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner49f980c2008-01-14 21:47:29 +00003764 NumPositiveBits = std::max(NumPositiveBits,
3765 (unsigned)InitVal.getActiveBits());
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003766 else
Chris Lattner49f980c2008-01-14 21:47:29 +00003767 NumNegativeBits = std::max(NumNegativeBits,
3768 (unsigned)InitVal.getMinSignedBits());
Chris Lattner4ef40012007-06-11 01:28:17 +00003769
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003770 // Keep track of whether every enum element has type int (very commmon).
3771 if (AllElementsInt)
3772 AllElementsInt = ECD->getType() == Context.IntTy;
Chris Lattnerc1915e22007-01-25 07:29:02 +00003773 }
3774
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003775 // Figure out the type that should be used for this enum.
3776 // FIXME: Support attribute(packed) on enums and -fshort-enums.
3777 QualType BestType;
Chris Lattner3a370bf2007-08-29 17:31:48 +00003778 unsigned BestWidth;
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003779
3780 if (NumNegativeBits) {
3781 // If there is a negative value, figure out the smallest integer type (of
3782 // int/long/longlong) that fits.
Chris Lattner3a370bf2007-08-29 17:31:48 +00003783 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003784 BestType = Context.IntTy;
Chris Lattner3a370bf2007-08-29 17:31:48 +00003785 BestWidth = IntWidth;
3786 } else {
Chris Lattner37e05872008-03-05 18:54:05 +00003787 BestWidth = Context.Target.getLongWidth();
Ted Kremenek1daa3cf2007-12-12 22:39:36 +00003788
Chris Lattner3a370bf2007-08-29 17:31:48 +00003789 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003790 BestType = Context.LongTy;
3791 else {
Chris Lattner37e05872008-03-05 18:54:05 +00003792 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenek1daa3cf2007-12-12 22:39:36 +00003793
Chris Lattner3a370bf2007-08-29 17:31:48 +00003794 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003795 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3796 BestType = Context.LongLongTy;
3797 }
3798 }
3799 } else {
3800 // If there is no negative value, figure out which of uint, ulong, ulonglong
3801 // fits.
Chris Lattner3a370bf2007-08-29 17:31:48 +00003802 if (NumPositiveBits <= IntWidth) {
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003803 BestType = Context.UnsignedIntTy;
Chris Lattner3a370bf2007-08-29 17:31:48 +00003804 BestWidth = IntWidth;
3805 } else if (NumPositiveBits <=
Chris Lattner37e05872008-03-05 18:54:05 +00003806 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003807 BestType = Context.UnsignedLongTy;
Chris Lattner37e05872008-03-05 18:54:05 +00003808 } else {
3809 BestWidth = Context.Target.getLongLongWidth();
Chris Lattner3a370bf2007-08-29 17:31:48 +00003810 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003811 "How could an initializer get larger than ULL?");
3812 BestType = Context.UnsignedLongLongTy;
3813 }
3814 }
3815
Chris Lattner3a370bf2007-08-29 17:31:48 +00003816 // Loop over all of the enumerator constants, changing their types to match
3817 // the type of the enum if needed.
3818 for (unsigned i = 0; i != NumElements; ++i) {
3819 EnumConstantDecl *ECD =
3820 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3821 if (!ECD) continue; // Already issued a diagnostic.
3822
3823 // Standard C says the enumerators have int type, but we allow, as an
3824 // extension, the enumerators to be larger than int size. If each
3825 // enumerator value fits in an int, type it as an int, otherwise type it the
3826 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3827 // that X has type 'int', not 'unsigned'.
Chris Lattner77683132008-02-26 00:33:57 +00003828 if (ECD->getType() == Context.IntTy) {
3829 // Make sure the init value is signed.
3830 llvm::APSInt IV = ECD->getInitVal();
3831 IV.setIsSigned(true);
3832 ECD->setInitVal(IV);
Douglas Gregor1d248c52008-12-12 02:00:36 +00003833
3834 if (getLangOptions().CPlusPlus)
3835 // C++ [dcl.enum]p4: Following the closing brace of an
3836 // enum-specifier, each enumerator has the type of its
3837 // enumeration.
3838 ECD->setType(EnumType);
Chris Lattner3a370bf2007-08-29 17:31:48 +00003839 continue; // Already int type.
Chris Lattner77683132008-02-26 00:33:57 +00003840 }
Chris Lattner3a370bf2007-08-29 17:31:48 +00003841
3842 // Determine whether the value fits into an int.
3843 llvm::APSInt InitVal = ECD->getInitVal();
3844 bool FitsInInt;
3845 if (InitVal.isUnsigned() || !InitVal.isNegative())
3846 FitsInInt = InitVal.getActiveBits() < IntWidth;
3847 else
3848 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3849
3850 // If it fits into an integer type, force it. Otherwise force it to match
3851 // the enum decl type.
3852 QualType NewTy;
3853 unsigned NewWidth;
3854 bool NewSign;
3855 if (FitsInInt) {
3856 NewTy = Context.IntTy;
3857 NewWidth = IntWidth;
3858 NewSign = true;
3859 } else if (ECD->getType() == BestType) {
3860 // Already the right type!
Douglas Gregor1d248c52008-12-12 02:00:36 +00003861 if (getLangOptions().CPlusPlus)
3862 // C++ [dcl.enum]p4: Following the closing brace of an
3863 // enum-specifier, each enumerator has the type of its
3864 // enumeration.
3865 ECD->setType(EnumType);
Chris Lattner3a370bf2007-08-29 17:31:48 +00003866 continue;
3867 } else {
3868 NewTy = BestType;
3869 NewWidth = BestWidth;
3870 NewSign = BestType->isSignedIntegerType();
3871 }
3872
3873 // Adjust the APSInt value.
3874 InitVal.extOrTrunc(NewWidth);
3875 InitVal.setIsSigned(NewSign);
3876 ECD->setInitVal(InitVal);
3877
3878 // Adjust the Expr initializer and type.
Chris Lattnere53c0362009-01-15 19:19:42 +00003879 if (ECD->getInitExpr())
Ted Kremenek5a201952009-02-07 01:47:29 +00003880 ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3881 /*isLvalue=*/false));
Douglas Gregor1d248c52008-12-12 02:00:36 +00003882 if (getLangOptions().CPlusPlus)
3883 // C++ [dcl.enum]p4: Following the closing brace of an
3884 // enum-specifier, each enumerator has the type of its
3885 // enumeration.
3886 ECD->setType(EnumType);
3887 else
3888 ECD->setType(NewTy);
Chris Lattner3a370bf2007-08-29 17:31:48 +00003889 }
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003890
Douglas Gregor91f84212008-12-11 16:49:14 +00003891 Enum->completeDefinition(Context, BestType);
Chris Lattnerc1915e22007-01-25 07:29:02 +00003892}
Chris Lattner1300fb92007-01-23 23:42:53 +00003893
Anders Carlsson5c6c0592008-02-08 00:33:21 +00003894Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redlc675bab2008-12-13 16:23:55 +00003895 ExprArg expr) {
3896 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
3897
Douglas Gregor6e6ad602009-01-20 01:17:11 +00003898 return FileScopeAsmDecl::Create(Context, CurContext, Loc, AsmString);
Anders Carlsson5c6c0592008-02-08 00:33:21 +00003899}
3900
Douglas Gregor29ff7d02008-12-16 22:23:02 +00003901
Daniel Dunbar54603742008-10-14 05:35:18 +00003902void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
3903 ExprTy *alignment, SourceLocation PragmaLoc,
3904 SourceLocation LParenLoc, SourceLocation RParenLoc) {
3905 Expr *Alignment = static_cast<Expr *>(alignment);
3906
3907 // If specified then alignment must be a "small" power of two.
3908 unsigned AlignmentVal = 0;
3909 if (Alignment) {
3910 llvm::APSInt Val;
3911 if (!Alignment->isIntegerConstantExpr(Val, Context) ||
3912 !Val.isPowerOf2() ||
3913 Val.getZExtValue() > 16) {
3914 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
Ted Kremenek5a201952009-02-07 01:47:29 +00003915 Alignment->Destroy(Context);
Daniel Dunbar54603742008-10-14 05:35:18 +00003916 return; // Ignore
3917 }
3918
3919 AlignmentVal = (unsigned) Val.getZExtValue();
3920 }
3921
3922 switch (Kind) {
3923 case Action::PPK_Default: // pack([n])
3924 PackContext.setAlignment(AlignmentVal);
3925 break;
3926
3927 case Action::PPK_Show: // pack(show)
3928 // Show the current alignment, making sure to show the right value
3929 // for the default.
3930 AlignmentVal = PackContext.getAlignment();
3931 // FIXME: This should come from the target.
3932 if (AlignmentVal == 0)
3933 AlignmentVal = 8;
Chris Lattnerf76c09d2008-11-19 07:25:44 +00003934 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
Daniel Dunbar54603742008-10-14 05:35:18 +00003935 break;
3936
3937 case Action::PPK_Push: // pack(push [, id] [, [n])
3938 PackContext.push(Name);
3939 // Set the new alignment if specified.
3940 if (Alignment)
3941 PackContext.setAlignment(AlignmentVal);
3942 break;
3943
3944 case Action::PPK_Pop: // pack(pop [, id] [, n])
3945 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
3946 // "#pragma pack(pop, identifier, n) is undefined"
3947 if (Alignment && Name)
3948 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
3949
3950 // Do the pop.
3951 if (!PackContext.pop(Name)) {
3952 // If a name was specified then failure indicates the name
3953 // wasn't found. Otherwise failure indicates the stack was
3954 // empty.
Chris Lattner651d42d2008-11-20 06:38:18 +00003955 Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed)
3956 << (Name ? "no record matching name" : "stack empty");
Daniel Dunbar54603742008-10-14 05:35:18 +00003957
3958 // FIXME: Warn about popping named records as MSVC does.
3959 } else {
3960 // Pop succeeded, set the new alignment if specified.
3961 if (Alignment)
3962 PackContext.setAlignment(AlignmentVal);
3963 }
3964 break;
3965
3966 default:
3967 assert(0 && "Invalid #pragma pack kind.");
3968 }
3969}
3970
3971bool PragmaPackStack::pop(IdentifierInfo *Name) {
3972 if (Stack.empty())
3973 return false;
3974
3975 // If name is empty just pop top.
3976 if (!Name) {
3977 Alignment = Stack.back().first;
3978 Stack.pop_back();
3979 return true;
3980 }
3981
3982 // Otherwise, find the named record.
3983 for (unsigned i = Stack.size(); i != 0; ) {
3984 --i;
Daniel Dunbaraf7efa62008-11-19 10:32:38 +00003985 if (Stack[i].second == Name) {
Daniel Dunbar54603742008-10-14 05:35:18 +00003986 // Found it, pop up to and including this record.
3987 Alignment = Stack[i].first;
3988 Stack.erase(Stack.begin() + i, Stack.end());
3989 return true;
3990 }
3991 }
3992
3993 return false;
3994}