blob: 0dbd6d3804e1ec7da7e38b5f1f812aef96a5198b [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Anders Carlssonc7436af2008-07-03 04:20:39 +000015#include "clang/AST/APValue.h"
Chris Lattner33aad6e2008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Chris Lattner4b009652007-07-25 00:24:17 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregor279272e2009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Chris Lattner6953a072008-06-26 18:38:35 +000020#include "clang/AST/ExprCXX.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021#include "clang/Parse/DeclSpec.h"
Chris Lattner4b009652007-07-25 00:24:17 +000022#include "clang/Basic/TargetInfo.h"
Steve Naroffa9eae582008-01-30 23:46:05 +000023#include "clang/Basic/SourceManager.h"
24// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
Chris Lattner33aad6e2008-02-06 00:51:33 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroffa9eae582008-01-30 23:46:05 +000026#include "clang/Lex/HeaderSearch.h"
Chris Lattner4b009652007-07-25 00:24:17 +000027#include "llvm/ADT/SmallSet.h"
Douglas Gregor39677622008-12-11 20:41:00 +000028#include "llvm/ADT/STLExtras.h"
Douglas Gregor6e71edc2008-12-23 21:05:05 +000029#include <algorithm>
30#include <functional>
Douglas Gregor39677622008-12-11 20:41:00 +000031
Chris Lattner4b009652007-07-25 00:24:17 +000032using namespace clang;
33
Douglas Gregorf2dbdca2009-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 Gregora60c62e2009-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 Gregorf2dbdca2009-02-04 19:16:12 +000042///
43/// If name lookup results in an ambiguity, this routine will complain
44/// and then return NULL.
Douglas Gregora60c62e2009-02-09 15:09:02 +000045Sema::TypeTy *Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
Douglas Gregor1075a162009-02-04 17:00:24 +000046 Scope *S, const CXXScopeSpec *SS) {
Douglas Gregor29dfa2f2009-01-15 00:26:24 +000047 Decl *IIDecl = 0;
Douglas Gregor52ae30c2009-01-30 01:04:22 +000048 LookupResult Result = LookupParsedName(S, SS, &II, LookupOrdinaryName, false);
Douglas Gregor29dfa2f2009-01-15 00:26:24 +000049 switch (Result.getKind()) {
Steve Naroffa4e04982009-01-29 18:09:31 +000050 case LookupResult::NotFound:
51 case LookupResult::FoundOverloaded:
Douglas Gregor1075a162009-02-04 17:00:24 +000052 return 0;
53
Steve Naroffa4e04982009-01-29 18:09:31 +000054 case LookupResult::AmbiguousBaseSubobjectTypes:
55 case LookupResult::AmbiguousBaseSubobjects:
Douglas Gregor7a7be652009-02-03 19:21:40 +000056 case LookupResult::AmbiguousReference:
Douglas Gregor1075a162009-02-04 17:00:24 +000057 DiagnoseAmbiguousLookup(Result, DeclarationName(&II), NameLoc);
Steve Naroffa4e04982009-01-29 18:09:31 +000058 return 0;
Douglas Gregor1075a162009-02-04 17:00:24 +000059
Steve Naroffa4e04982009-01-29 18:09:31 +000060 case LookupResult::Found:
61 IIDecl = Result.getAsDecl();
62 break;
Douglas Gregor29dfa2f2009-01-15 00:26:24 +000063 }
64
Steve Naroffa4e04982009-01-29 18:09:31 +000065 if (IIDecl) {
Douglas Gregora60c62e2009-02-09 15:09:02 +000066 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl))
67 return Context.getTypeDeclType(TD).getAsOpaquePtr();
68 else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl))
69 return Context.getObjCInterfaceType(IDecl).getAsOpaquePtr();
Steve Naroffa4e04982009-01-29 18:09:31 +000070 }
Steve Naroff81f1bba2007-09-06 21:24:23 +000071 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +000072}
73
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000074DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000075 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000076 // A C++ out-of-line method will return to the file declaration context.
Argiris Kirtzidis881964b2008-11-09 23:41:00 +000077 if (MD->isOutOfLineDefinition())
78 return MD->getLexicalDeclContext();
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000079
80 // A C++ inline method is parsed *after* the topmost class it was declared in
81 // is fully parsed (it's "complete").
82 // The parsing of a C++ inline method happens at the declaration context of
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000083 // the topmost (non-nested) class it is lexically declared in.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000084 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
85 DC = MD->getParent();
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000086 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000087 DC = RD;
88
89 // Return the declaration context of the topmost class the inline method is
90 // declared in.
91 return DC;
92 }
93
Argiris Kirtzidis881964b2008-11-09 23:41:00 +000094 if (isa<ObjCMethodDecl>(DC))
95 return Context.getTranslationUnitDecl();
96
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +000097 if (Decl *D = dyn_cast<Decl>(DC))
98 return D->getLexicalDeclContext();
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000099
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +0000100 return DC->getLexicalParent();
Argiris Kirtzidis38f16712008-07-01 10:37:29 +0000101}
102
Douglas Gregor8acb7272008-12-11 16:49:14 +0000103void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000104 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xu2c9b8102008-12-08 07:14:51 +0000105 "The next DeclContext should be lexically contained in the current one.");
Chris Lattneref87a202008-04-22 18:39:57 +0000106 CurContext = DC;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000107 S->setEntity(DC);
Chris Lattnereee57c02008-04-04 06:12:32 +0000108}
109
Chris Lattnerf3874bc2008-04-06 04:47:34 +0000110void Sema::PopDeclContext() {
111 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor8acb7272008-12-11 16:49:14 +0000112
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000113 CurContext = getContainingDC(CurContext);
Chris Lattnereee57c02008-04-04 06:12:32 +0000114}
115
Douglas Gregorfcb19192009-02-11 23:02:49 +0000116/// \brief Determine whether we allow overloading of the function
117/// PrevDecl with another declaration.
118///
119/// This routine determines whether overloading is possible, not
120/// whether some new function is actually an overload. It will return
121/// true in C++ (where we can always provide overloads) or, as an
122/// extension, in C when the previous function is already an
123/// overloaded function declaration or has the "overloadable"
124/// attribute.
125static bool AllowOverloadingOfFunction(Decl *PrevDecl, ASTContext &Context) {
126 if (Context.getLangOptions().CPlusPlus)
127 return true;
128
129 if (isa<OverloadedFunctionDecl>(PrevDecl))
130 return true;
131
132 return PrevDecl->getAttr<OverloadableAttr>() != 0;
133}
134
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000135/// Add this decl to the scope shadowed decl chains.
136void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Douglas Gregord8028382009-01-05 19:45:36 +0000137 // Move up the scope chain until we find the nearest enclosing
138 // non-transparent context. The declaration will be introduced into this
139 // scope.
140 while (S->getEntity() &&
141 ((DeclContext *)S->getEntity())->isTransparentContext())
142 S = S->getParent();
143
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000144 S->AddDecl(D);
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000145
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000146 // Add scoped declarations into their context, so that they can be
147 // found later. Declarations without a context won't be inserted
148 // into any context.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000149 CurContext->addDecl(D);
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000150
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000151 // C++ [basic.scope]p4:
152 // -- exactly one declaration shall declare a class name or
153 // enumeration name that is not a typedef name and the other
154 // declarations shall all refer to the same object or
155 // enumerator, or all refer to functions and function templates;
156 // in this case the class name or enumeration name is hidden.
157 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
158 // We are pushing the name of a tag (enum or class).
Douglas Gregor3a423132009-01-07 16:34:42 +0000159 if (CurContext->getLookupContext()
160 == TD->getDeclContext()->getLookupContext()) {
Douglas Gregor8acb7272008-12-11 16:49:14 +0000161 // We're pushing the tag into the current context, which might
162 // require some reshuffling in the identifier resolver.
163 IdentifierResolver::iterator
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000164 I = IdResolver.begin(TD->getDeclName()),
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000165 IEnd = IdResolver.end();
166 if (I != IEnd && isDeclInScope(*I, CurContext, S)) {
167 NamedDecl *PrevDecl = *I;
168 for (; I != IEnd && isDeclInScope(*I, CurContext, S);
169 PrevDecl = *I, ++I) {
170 if (TD->declarationReplaces(*I)) {
171 // This is a redeclaration. Remove it from the chain and
172 // break out, so that we'll add in the shadowed
173 // declaration.
174 S->RemoveDecl(*I);
175 if (PrevDecl == *I) {
176 IdResolver.RemoveDecl(*I);
177 IdResolver.AddDecl(TD);
178 return;
179 } else {
180 IdResolver.RemoveDecl(*I);
181 break;
182 }
183 }
184 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000185
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000186 // There is already a declaration with the same name in the same
187 // scope, which is not a tag declaration. It must be found
188 // before we find the new declaration, so insert the new
189 // declaration at the end of the chain.
190 IdResolver.AddShadowedDecl(TD, PrevDecl);
191
192 return;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000193 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000194 }
Douglas Gregorfcb19192009-02-11 23:02:49 +0000195 } else if (isa<FunctionDecl>(D) &&
196 AllowOverloadingOfFunction(D, Context)) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000197 // We are pushing the name of a function, which might be an
198 // overloaded name.
Douglas Gregor8acb7272008-12-11 16:49:14 +0000199 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000200 IdentifierResolver::iterator Redecl
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000201 = std::find_if(IdResolver.begin(FD->getDeclName()),
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000202 IdResolver.end(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000203 std::bind1st(std::mem_fun(&NamedDecl::declarationReplaces),
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000204 FD));
205 if (Redecl != IdResolver.end()) {
206 // There is already a declaration of a function on our
207 // IdResolver chain. Replace it with this declaration.
208 S->RemoveDecl(*Redecl);
209 IdResolver.RemoveDecl(*Redecl);
Douglas Gregord2baafd2008-10-21 16:13:35 +0000210 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000211 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000212
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000213 IdResolver.AddDecl(D);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000214}
215
Steve Naroff9637a9b2007-10-09 22:01:59 +0000216void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattnera7549902007-08-26 06:24:45 +0000217 if (S->decl_empty()) return;
Douglas Gregordd861062008-12-05 18:15:24 +0000218 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
219 "Scope shouldn't contain decls!");
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000220
Chris Lattner4b009652007-07-25 00:24:17 +0000221 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
222 I != E; ++I) {
Steve Naroffd21bc0d2007-09-13 18:10:37 +0000223 Decl *TmpD = static_cast<Decl*>(*I);
224 assert(TmpD && "This decl didn't get pushed??");
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000225
Douglas Gregor8acb7272008-12-11 16:49:14 +0000226 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
227 NamedDecl *D = cast<NamedDecl>(TmpD);
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000228
Douglas Gregor8acb7272008-12-11 16:49:14 +0000229 if (!D->getDeclName()) continue;
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000230
Douglas Gregor8acb7272008-12-11 16:49:14 +0000231 // Remove this name from our lexical scope.
232 IdResolver.RemoveDecl(D);
Chris Lattner4b009652007-07-25 00:24:17 +0000233 }
234}
235
Steve Naroffe57c21a2008-04-01 23:04:06 +0000236/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
237/// return 0 if one not found.
Steve Naroffe57c21a2008-04-01 23:04:06 +0000238ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff15208162008-04-02 18:30:49 +0000239 // The third "scope" argument is 0 since we aren't enabling lazy built-in
240 // creation from this context.
Douglas Gregor09be81b2009-02-04 17:27:36 +0000241 NamedDecl *IDecl = LookupName(TUScope, Id, LookupOrdinaryName);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000242
Steve Naroff6384a012008-04-02 14:35:35 +0000243 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000244}
245
Douglas Gregor5eca99e2009-01-12 18:45:55 +0000246/// getNonFieldDeclScope - Retrieves the innermost scope, starting
247/// from S, where a non-field would be declared. This routine copes
248/// with the difference between C and C++ scoping rules in structs and
249/// unions. For example, the following code is well-formed in C but
250/// ill-formed in C++:
251/// @code
252/// struct S6 {
253/// enum { BAR } e;
254/// };
255///
256/// void test_S6() {
257/// struct S6 a;
258/// a.e = BAR;
259/// }
260/// @endcode
261/// For the declaration of BAR, this routine will return a different
262/// scope. The scope S will be the scope of the unnamed enumeration
263/// within S6. In C++, this routine will return the scope associated
264/// with S6, because the enumeration's scope is a transparent
265/// context but structures can contain non-field names. In C, this
266/// routine will return the translation unit scope, since the
267/// enumeration's scope is a transparent context and structures cannot
268/// contain non-field names.
269Scope *Sema::getNonFieldDeclScope(Scope *S) {
270 while (((S->getFlags() & Scope::DeclScope) == 0) ||
271 (S->getEntity() &&
272 ((DeclContext *)S->getEntity())->isTransparentContext()) ||
273 (S->isClassScope() && !getLangOptions().CPlusPlus))
274 S = S->getParent();
275 return S;
276}
277
Chris Lattnera9c87f22008-05-05 22:18:14 +0000278void Sema::InitBuiltinVaListType() {
Anders Carlsson36760332007-10-15 20:28:48 +0000279 if (!Context.getBuiltinVaListType().isNull())
280 return;
281
282 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Douglas Gregor09be81b2009-02-04 17:27:36 +0000283 NamedDecl *VaDecl = LookupName(TUScope, VaIdent, LookupOrdinaryName);
Steve Naroffbc8c52e2007-10-18 22:17:45 +0000284 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson36760332007-10-15 20:28:48 +0000285 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
286}
287
Chris Lattner4b009652007-07-25 00:24:17 +0000288/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
289/// lazily create a decl for it.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000290NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
291 Scope *S) {
Chris Lattner4b009652007-07-25 00:24:17 +0000292 Builtin::ID BID = (Builtin::ID)bid;
293
Chris Lattnerb23469f2008-09-28 05:54:29 +0000294 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson36760332007-10-15 20:28:48 +0000295 InitBuiltinVaListType();
296
Anders Carlssonfb5b1e82007-10-11 01:00:40 +0000297 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Argiris Kirtzidis9d0d8bf2008-04-17 14:47:13 +0000298 FunctionDecl *New = FunctionDecl::Create(Context,
299 Context.getTranslationUnitDecl(),
Chris Lattnereee57c02008-04-04 06:12:32 +0000300 SourceLocation(), II, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000301 FunctionDecl::Extern, false);
Chris Lattner4b009652007-07-25 00:24:17 +0000302
Chris Lattnera9c87f22008-05-05 22:18:14 +0000303 // Create Decl objects for each parameter, adding them to the
304 // FunctionDecl.
305 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
306 llvm::SmallVector<ParmVarDecl*, 16> Params;
307 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
308 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000309 FT->getArgType(i), VarDecl::None, 0));
Ted Kremenek8494c962009-01-14 00:42:25 +0000310 New->setParams(Context, &Params[0], Params.size());
Chris Lattnera9c87f22008-05-05 22:18:14 +0000311 }
312
313
314
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000315 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregord394a272009-01-09 18:51:29 +0000316 // FIXME: This is hideous. We need to teach PushOnScopeChains to
317 // relate Scopes to DeclContexts, and probably eliminate CurContext
318 // entirely, but we're not there yet.
319 DeclContext *SavedContext = CurContext;
320 CurContext = Context.getTranslationUnitDecl();
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000321 PushOnScopeChains(New, TUScope);
Douglas Gregord394a272009-01-09 18:51:29 +0000322 CurContext = SavedContext;
Chris Lattner4b009652007-07-25 00:24:17 +0000323 return New;
324}
325
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000326/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
327/// everything from the standard library is defined.
328NamespaceDecl *Sema::GetStdNamespace() {
329 if (!StdNamespace) {
Chris Lattnerf0939602008-11-20 05:45:14 +0000330 IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000331 DeclContext *Global = Context.getTranslationUnitDecl();
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000332 Decl *Std = LookupQualifiedName(Global, StdIdent, LookupNamespaceName);
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000333 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
334 }
335 return StdNamespace;
336}
337
Chris Lattner4b009652007-07-25 00:24:17 +0000338/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
339/// and scope as a previous declaration 'Old'. Figure out how to resolve this
340/// situation, merging decls or emitting diagnostics as appropriate.
341///
Steve Naroffe57c21a2008-04-01 23:04:06 +0000342TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Fariborz Jahaniande939672009-01-16 19:58:32 +0000343 bool objc_types = false;
Steve Naroff453a8782008-09-09 14:32:20 +0000344 // Allow multiple definitions for ObjC built-in typedefs.
345 // FIXME: Verify the underlying types are equivalent!
346 if (getLangOptions().ObjC1) {
Chris Lattner6d16b052008-11-20 05:41:43 +0000347 const IdentifierInfo *TypeID = New->getIdentifier();
348 switch (TypeID->getLength()) {
349 default: break;
350 case 2:
351 if (!TypeID->isStr("id"))
352 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000353 Context.setObjCIdType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000354 objc_types = true;
355 break;
Chris Lattner6d16b052008-11-20 05:41:43 +0000356 case 5:
357 if (!TypeID->isStr("Class"))
358 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000359 Context.setObjCClassType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000360 objc_types = true;
Steve Naroff453a8782008-09-09 14:32:20 +0000361 return New;
Chris Lattner6d16b052008-11-20 05:41:43 +0000362 case 3:
363 if (!TypeID->isStr("SEL"))
364 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000365 Context.setObjCSelType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000366 objc_types = true;
Steve Naroff453a8782008-09-09 14:32:20 +0000367 return New;
Chris Lattner6d16b052008-11-20 05:41:43 +0000368 case 8:
369 if (!TypeID->isStr("Protocol"))
370 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000371 Context.setObjCProtoType(New->getUnderlyingType());
Fariborz Jahaniande939672009-01-16 19:58:32 +0000372 objc_types = true;
Steve Naroff453a8782008-09-09 14:32:20 +0000373 return New;
374 }
375 // Fall through - the typedef name was not a builtin type.
376 }
Douglas Gregorb31f2942009-01-28 17:15:10 +0000377 // Verify the old decl was also a type.
378 TypeDecl *Old = dyn_cast<TypeDecl>(OldD);
Chris Lattner4b009652007-07-25 00:24:17 +0000379 if (!Old) {
Douglas Gregorb31f2942009-01-28 17:15:10 +0000380 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000381 << New->getDeclName();
Fariborz Jahaniande939672009-01-16 19:58:32 +0000382 if (!objc_types)
383 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000384 return New;
385 }
Douglas Gregorb31f2942009-01-28 17:15:10 +0000386
387 // Determine the "old" type we'll use for checking and diagnostics.
388 QualType OldType;
389 if (TypedefDecl *OldTypedef = dyn_cast<TypedefDecl>(Old))
390 OldType = OldTypedef->getUnderlyingType();
391 else
392 OldType = Context.getTypeDeclType(Old);
393
Chris Lattnerbef8d622008-07-25 18:44:27 +0000394 // If the typedef types are not identical, reject them in all languages and
395 // with any extensions enabled.
Douglas Gregorb31f2942009-01-28 17:15:10 +0000396
397 if (OldType != New->getUnderlyingType() &&
398 Context.getCanonicalType(OldType) !=
Chris Lattnerbef8d622008-07-25 18:44:27 +0000399 Context.getCanonicalType(New->getUnderlyingType())) {
Chris Lattner8d756812008-11-20 06:13:02 +0000400 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
Douglas Gregorb31f2942009-01-28 17:15:10 +0000401 << New->getUnderlyingType() << OldType;
Fariborz Jahaniande939672009-01-16 19:58:32 +0000402 if (!objc_types)
403 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregord1675382009-01-09 19:42:16 +0000404 return New;
Chris Lattnerbef8d622008-07-25 18:44:27 +0000405 }
Fariborz Jahaniande939672009-01-16 19:58:32 +0000406 if (objc_types) return New;
Eli Friedman324d5032008-06-11 06:20:39 +0000407 if (getLangOptions().Microsoft) return New;
408
Douglas Gregor49ba1b72008-11-21 16:29:06 +0000409 // C++ [dcl.typedef]p2:
410 // In a given non-class scope, a typedef specifier can be used to
411 // redefine the name of any type declared in that scope to refer
412 // to the type to which it already refers.
413 if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext))
414 return New;
415
416 // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
Steve Naroffa9eae582008-01-30 23:46:05 +0000417 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
418 // *either* declaration is in a system header. The code below implements
419 // this adhoc compatibility rule. FIXME: The following code will not
420 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar4dbd8572008-09-12 18:10:20 +0000421 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
422 SourceManager &SrcMgr = Context.getSourceManager();
423 if (SrcMgr.isInSystemHeader(Old->getLocation()))
424 return New;
425 if (SrcMgr.isInSystemHeader(New->getLocation()))
426 return New;
427 }
Eli Friedman324d5032008-06-11 06:20:39 +0000428
Chris Lattnerb1753422008-11-23 21:45:46 +0000429 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000430 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000431 return New;
432}
433
Chris Lattner6953a072008-06-26 18:38:35 +0000434/// DeclhasAttr - returns true if decl Declaration already has the target
435/// attribute.
Chris Lattner402b3372008-03-03 03:28:21 +0000436static bool DeclHasAttr(const Decl *decl, const Attr *target) {
437 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
438 if (attr->getKind() == target->getKind())
439 return true;
440
441 return false;
442}
443
444/// MergeAttributes - append attributes from the Old decl to the New one.
445static void MergeAttributes(Decl *New, Decl *Old) {
446 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
447
Chris Lattner402b3372008-03-03 03:28:21 +0000448 while (attr) {
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000449 tmp = attr;
450 attr = attr->getNext();
Chris Lattner402b3372008-03-03 03:28:21 +0000451
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000452 if (!DeclHasAttr(New, tmp) && tmp->isMerged()) {
453 tmp->setInherited(true);
454 New->addAttr(tmp);
Chris Lattner402b3372008-03-03 03:28:21 +0000455 } else {
Douglas Gregorfa3a8322009-02-13 00:26:38 +0000456 tmp->setNext(0);
457 delete(tmp);
Chris Lattner402b3372008-03-03 03:28:21 +0000458 }
459 }
Nuno Lopes77654342008-06-01 22:53:53 +0000460
461 Old->invalidateAttrs();
Chris Lattner402b3372008-03-03 03:28:21 +0000462}
463
Chris Lattner3e254fb2008-04-08 04:40:51 +0000464/// MergeFunctionDecl - We just parsed a function 'New' from
465/// declarator D which has the same name and scope as a previous
466/// declaration 'Old'. Figure out how to resolve this situation,
467/// merging decls or emitting diagnostics as appropriate.
Douglas Gregord2baafd2008-10-21 16:13:35 +0000468/// Redeclaration will be set true if this New is a redeclaration OldD.
469///
470/// In C++, New and Old must be declarations that are not
471/// overloaded. Use IsOverload to determine whether New and Old are
472/// overloaded, and to select the Old declaration that New should be
473/// merged with.
Douglas Gregor42214c52008-04-21 02:02:58 +0000474FunctionDecl *
475Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000476 assert(!isa<OverloadedFunctionDecl>(OldD) &&
477 "Cannot merge with an overloaded function declaration");
478
Douglas Gregor42214c52008-04-21 02:02:58 +0000479 Redeclaration = false;
Chris Lattner4b009652007-07-25 00:24:17 +0000480 // Verify the old decl was also a function.
481 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
482 if (!Old) {
Chris Lattner8d756812008-11-20 06:13:02 +0000483 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000484 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000485 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000486 return New;
487 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000488
489 // Determine whether the previous declaration was a definition,
490 // implicit declaration, or a declaration.
491 diag::kind PrevDiag;
492 if (Old->isThisDeclarationADefinition())
Chris Lattner1336cab2008-11-23 23:12:31 +0000493 PrevDiag = diag::note_previous_definition;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000494 else if (Old->isImplicit())
Chris Lattner1336cab2008-11-23 23:12:31 +0000495 PrevDiag = diag::note_previous_implicit_declaration;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000496 else
Chris Lattner1336cab2008-11-23 23:12:31 +0000497 PrevDiag = diag::note_previous_declaration;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000498
Chris Lattner42a21742008-04-06 23:10:54 +0000499 QualType OldQType = Context.getCanonicalType(Old->getType());
500 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner60476ff2007-11-20 19:04:50 +0000501
Douglas Gregord2baafd2008-10-21 16:13:35 +0000502 if (getLangOptions().CPlusPlus) {
503 // (C++98 13.1p2):
504 // Certain function declarations cannot be overloaded:
505 // -- Function declarations that differ only in the return type
506 // cannot be overloaded.
507 QualType OldReturnType
508 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
509 QualType NewReturnType
510 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
511 if (OldReturnType != NewReturnType) {
512 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
513 Diag(Old->getLocation(), PrevDiag);
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000514 Redeclaration = true;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000515 return New;
516 }
517
518 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
519 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
520 if (OldMethod && NewMethod) {
521 // -- Member function declarations with the same name and the
522 // same parameter types cannot be overloaded if any of them
523 // is a static member function declaration.
524 if (OldMethod->isStatic() || NewMethod->isStatic()) {
525 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
526 Diag(Old->getLocation(), PrevDiag);
527 return New;
528 }
Douglas Gregorb9213832008-12-15 21:24:18 +0000529
530 // C++ [class.mem]p1:
531 // [...] A member shall not be declared twice in the
532 // member-specification, except that a nested class or member
533 // class template can be declared and then later defined.
534 if (OldMethod->getLexicalDeclContext() ==
535 NewMethod->getLexicalDeclContext()) {
536 unsigned NewDiag;
537 if (isa<CXXConstructorDecl>(OldMethod))
538 NewDiag = diag::err_constructor_redeclared;
539 else if (isa<CXXDestructorDecl>(NewMethod))
540 NewDiag = diag::err_destructor_redeclared;
541 else if (isa<CXXConversionDecl>(NewMethod))
542 NewDiag = diag::err_conv_function_redeclared;
543 else
544 NewDiag = diag::err_member_redeclared;
545
546 Diag(New->getLocation(), NewDiag);
547 Diag(Old->getLocation(), PrevDiag);
548 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000549 }
550
551 // (C++98 8.3.5p3):
552 // All declarations for a function shall agree exactly in both the
553 // return type and the parameter-type-list.
554 if (OldQType == NewQType) {
555 // We have a redeclaration.
556 MergeAttributes(New, Old);
557 Redeclaration = true;
558 return MergeCXXFunctionDecl(New, Old);
559 }
560
561 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregor42214c52008-04-21 02:02:58 +0000562 }
Chris Lattner3e254fb2008-04-08 04:40:51 +0000563
564 // C: Function types need to be compatible, not identical. This handles
Steve Naroff1d5bd642008-01-14 20:51:29 +0000565 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner3e254fb2008-04-08 04:40:51 +0000566 if (!getLangOptions().CPlusPlus &&
Eli Friedman0d9549b2008-08-22 00:56:42 +0000567 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregor42214c52008-04-21 02:02:58 +0000568 MergeAttributes(New, Old);
569 Redeclaration = true;
Steve Naroff1d5bd642008-01-14 20:51:29 +0000570 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000571 }
Chris Lattner1470b072007-11-06 06:07:26 +0000572
Steve Naroff6c9e7922008-01-16 15:01:34 +0000573 // A function that has already been declared has been redeclared or defined
574 // with a different type- show appropriate diagnostic
Steve Naroff6c9e7922008-01-16 15:01:34 +0000575
Chris Lattner4b009652007-07-25 00:24:17 +0000576 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
577 // TODO: This is totally simplistic. It should handle merging functions
578 // together etc, merging extern int X; int X; ...
Chris Lattner271d4c22008-11-24 05:29:24 +0000579 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Steve Naroff6c9e7922008-01-16 15:01:34 +0000580 Diag(Old->getLocation(), PrevDiag);
Chris Lattner4b009652007-07-25 00:24:17 +0000581 return New;
582}
583
Steve Naroffb5e78152008-08-08 17:50:35 +0000584/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd5802092008-08-10 15:28:06 +0000585static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000586 if (VD->isFileVarDecl())
587 return (!VD->getInit() &&
588 (VD->getStorageClass() == VarDecl::None ||
589 VD->getStorageClass() == VarDecl::Static));
590 return false;
591}
592
593/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
594/// when dealing with C "tentative" external object definitions (C99 6.9.2).
595void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
596 bool VDIsTentative = isTentativeDefinition(VD);
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000597 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffb5e78152008-08-08 17:50:35 +0000598
Douglas Gregor3a423132009-01-07 16:34:42 +0000599 // FIXME: I don't think this will actually see all of the
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000600 // redefinitions. Can't we check this property on-the-fly?
Douglas Gregor52ae30c2009-01-30 01:04:22 +0000601 for (IdentifierResolver::iterator I = IdResolver.begin(VD->getIdentifier()),
602 E = IdResolver.end();
603 I != E; ++I) {
Argiris Kirtzidis90842b62008-09-09 21:18:04 +0000604 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000605 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
606
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000607 // Handle the following case:
608 // int a[10];
609 // int a[]; - the code below makes sure we set the correct type.
610 // int a[11]; - this is an error, size isn't 10.
611 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
612 OldDecl->getType()->isConstantArrayType())
613 VD->setType(OldDecl->getType());
614
Steve Naroffb5e78152008-08-08 17:50:35 +0000615 // Check for "tentative" definitions. We can't accomplish this in
616 // MergeVarDecl since the initializer hasn't been attached.
617 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
618 continue;
619
620 // Handle __private_extern__ just like extern.
621 if (OldDecl->getStorageClass() != VarDecl::Extern &&
622 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
623 VD->getStorageClass() != VarDecl::Extern &&
624 VD->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000625 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000626 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Sebastian Redlc5d44692009-02-08 10:49:44 +0000627 // One redefinition error is enough.
628 break;
Steve Naroffb5e78152008-08-08 17:50:35 +0000629 }
630 }
631 }
632}
633
Chris Lattner4b009652007-07-25 00:24:17 +0000634/// MergeVarDecl - We just parsed a variable 'New' which has the same name
635/// and scope as a previous declaration 'Old'. Figure out how to resolve this
636/// situation, merging decls or emitting diagnostics as appropriate.
637///
Steve Naroffb5e78152008-08-08 17:50:35 +0000638/// Tentative definition rules (C99 6.9.2p2) are checked by
639/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
640/// definitions here, since the initializer hasn't been attached.
Chris Lattner4b009652007-07-25 00:24:17 +0000641///
Steve Naroffe57c21a2008-04-01 23:04:06 +0000642VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Chris Lattner4b009652007-07-25 00:24:17 +0000643 // Verify the old decl was also a variable.
644 VarDecl *Old = dyn_cast<VarDecl>(OldD);
645 if (!Old) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000646 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000647 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000648 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000649 return New;
650 }
Chris Lattner402b3372008-03-03 03:28:21 +0000651
652 MergeAttributes(New, Old);
653
Eli Friedman4a480d62009-01-24 23:49:55 +0000654 // Merge the types
655 QualType MergedT = Context.mergeTypes(New->getType(), Old->getType());
656 if (MergedT.isNull()) {
Douglas Gregord1675382009-01-09 19:42:16 +0000657 Diag(New->getLocation(), diag::err_redefinition_different_type)
658 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000659 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000660 return New;
661 }
Eli Friedman4a480d62009-01-24 23:49:55 +0000662 New->setType(MergedT);
Steve Naroffb00247f2008-01-30 00:44:01 +0000663 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
664 if (New->getStorageClass() == VarDecl::Static &&
665 (Old->getStorageClass() == VarDecl::None ||
666 Old->getStorageClass() == VarDecl::Extern)) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000667 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000668 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroffb00247f2008-01-30 00:44:01 +0000669 return New;
670 }
671 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
672 if (New->getStorageClass() != VarDecl::Static &&
673 Old->getStorageClass() == VarDecl::Static) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000674 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000675 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroffb00247f2008-01-30 00:44:01 +0000676 return New;
677 }
Steve Naroff2f3c4432008-09-17 14:05:40 +0000678 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
679 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000680 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000681 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000682 }
683 return New;
684}
685
Chris Lattner3e254fb2008-04-08 04:40:51 +0000686/// CheckParmsForFunctionDef - Check that the parameters of the given
687/// function are appropriate for the definition of a function. This
688/// takes care of any checks that cannot be performed on the
689/// declaration itself, e.g., that the types of each of the function
690/// parameters are complete.
691bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
692 bool HasInvalidParm = false;
693 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
694 ParmVarDecl *Param = FD->getParamDecl(p);
695
696 // C99 6.7.5.3p4: the parameters in a parameter type list in a
697 // function declarator that is part of a function definition of
698 // that function shall not have incomplete type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +0000699 if (!Param->isInvalidDecl() &&
700 DiagnoseIncompleteType(Param->getLocation(), Param->getType(),
701 diag::err_typecheck_decl_incomplete_type)) {
Chris Lattner3e254fb2008-04-08 04:40:51 +0000702 Param->setInvalidDecl();
703 HasInvalidParm = true;
704 }
Chris Lattnerb0b42f62008-12-17 07:32:46 +0000705
706 // C99 6.9.1p5: If the declarator includes a parameter type list, the
707 // declaration of each parameter shall include an identifier.
708 if (Param->getIdentifier() == 0 && !getLangOptions().CPlusPlus)
709 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000710 }
711
712 return HasInvalidParm;
713}
714
Chris Lattner4b009652007-07-25 00:24:17 +0000715/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
716/// no declarator (e.g. "struct foo;") is parsed.
717Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
Douglas Gregora60c62e2009-02-09 15:09:02 +0000718 TagDecl *Tag = 0;
719 if (DS.getTypeSpecType() == DeclSpec::TST_class ||
720 DS.getTypeSpecType() == DeclSpec::TST_struct ||
721 DS.getTypeSpecType() == DeclSpec::TST_union ||
722 DS.getTypeSpecType() == DeclSpec::TST_enum)
723 Tag = dyn_cast<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
724
Douglas Gregorb748fc52009-01-12 22:49:06 +0000725 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
726 if (!Record->getDeclName() && Record->isDefinition() &&
727 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
728 return BuildAnonymousStructOrUnion(S, DS, Record);
729
730 // Microsoft allows unnamed struct/union fields. Don't complain
731 // about them.
732 // FIXME: Should we support Microsoft's extensions in this area?
733 if (Record->getDeclName() && getLangOptions().Microsoft)
734 return Tag;
735 }
736
Douglas Gregord406b032009-02-06 22:42:48 +0000737 if (!DS.isMissingDeclaratorOk() &&
738 DS.getTypeSpecType() != DeclSpec::TST_error) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000739 // Warn about typedefs of enums without names, since this is an
740 // extension in both Microsoft an GNU.
Douglas Gregor72de8492009-01-17 02:55:50 +0000741 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
742 Tag && isa<EnumDecl>(Tag)) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000743 Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
Douglas Gregor80c720e2009-01-13 23:10:51 +0000744 << DS.getSourceRange();
745 return Tag;
746 }
747
Sebastian Redlb7605e82008-12-28 15:28:59 +0000748 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
749 << DS.getSourceRange();
750 return 0;
751 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000752
Douglas Gregor723d3332009-01-07 00:43:41 +0000753 return Tag;
754}
755
756/// InjectAnonymousStructOrUnionMembers - Inject the members of the
757/// anonymous struct or union AnonRecord into the owning context Owner
758/// and scope S. This routine will be invoked just after we realize
759/// that an unnamed union or struct is actually an anonymous union or
760/// struct, e.g.,
761///
762/// @code
763/// union {
764/// int i;
765/// float f;
766/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
767/// // f into the surrounding scope.x
768/// @endcode
769///
770/// This routine is recursive, injecting the names of nested anonymous
771/// structs/unions into the owning context and scope as well.
772bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
773 RecordDecl *AnonRecord) {
774 bool Invalid = false;
775 for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
776 FEnd = AnonRecord->field_end();
777 F != FEnd; ++F) {
778 if ((*F)->getDeclName()) {
Douglas Gregor09be81b2009-02-04 17:27:36 +0000779 NamedDecl *PrevDecl = LookupQualifiedName(Owner, (*F)->getDeclName(),
780 LookupOrdinaryName, true);
Douglas Gregor723d3332009-01-07 00:43:41 +0000781 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
782 // C++ [class.union]p2:
783 // The names of the members of an anonymous union shall be
784 // distinct from the names of any other entity in the
785 // scope in which the anonymous union is declared.
786 unsigned diagKind
787 = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl
788 : diag::err_anonymous_struct_member_redecl;
789 Diag((*F)->getLocation(), diagKind)
790 << (*F)->getDeclName();
791 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
792 Invalid = true;
793 } else {
794 // C++ [class.union]p2:
795 // For the purpose of name lookup, after the anonymous union
796 // definition, the members of the anonymous union are
797 // considered to have been defined in the scope in which the
798 // anonymous union is declared.
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000799 Owner->makeDeclVisibleInContext(*F);
Douglas Gregor723d3332009-01-07 00:43:41 +0000800 S->AddDecl(*F);
801 IdResolver.AddDecl(*F);
802 }
803 } else if (const RecordType *InnerRecordType
804 = (*F)->getType()->getAsRecordType()) {
805 RecordDecl *InnerRecord = InnerRecordType->getDecl();
806 if (InnerRecord->isAnonymousStructOrUnion())
807 Invalid = Invalid ||
808 InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
809 }
810 }
811
812 return Invalid;
813}
814
815/// ActOnAnonymousStructOrUnion - Handle the declaration of an
816/// anonymous structure or union. Anonymous unions are a C++ feature
817/// (C++ [class.union]) and a GNU C extension; anonymous structures
818/// are a GNU C and GNU C++ extension.
819Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
820 RecordDecl *Record) {
821 DeclContext *Owner = Record->getDeclContext();
822
823 // Diagnose whether this anonymous struct/union is an extension.
824 if (Record->isUnion() && !getLangOptions().CPlusPlus)
825 Diag(Record->getLocation(), diag::ext_anonymous_union);
826 else if (!Record->isUnion())
827 Diag(Record->getLocation(), diag::ext_anonymous_struct);
828
829 // C and C++ require different kinds of checks for anonymous
830 // structs/unions.
831 bool Invalid = false;
832 if (getLangOptions().CPlusPlus) {
833 const char* PrevSpec = 0;
834 // C++ [class.union]p3:
835 // Anonymous unions declared in a named namespace or in the
836 // global namespace shall be declared static.
837 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
838 (isa<TranslationUnitDecl>(Owner) ||
839 (isa<NamespaceDecl>(Owner) &&
840 cast<NamespaceDecl>(Owner)->getDeclName()))) {
841 Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
842 Invalid = true;
843
844 // Recover by adding 'static'.
845 DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec);
846 }
847 // C++ [class.union]p3:
848 // A storage class is not allowed in a declaration of an
849 // anonymous union in a class scope.
850 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
851 isa<RecordDecl>(Owner)) {
852 Diag(DS.getStorageClassSpecLoc(),
853 diag::err_anonymous_union_with_storage_spec);
854 Invalid = true;
855
856 // Recover by removing the storage specifier.
857 DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
858 PrevSpec);
859 }
Douglas Gregorc7f01612009-01-07 19:46:03 +0000860
861 // C++ [class.union]p2:
862 // The member-specification of an anonymous union shall only
863 // define non-static data members. [Note: nested types and
864 // functions cannot be declared within an anonymous union. ]
865 for (DeclContext::decl_iterator Mem = Record->decls_begin(),
866 MemEnd = Record->decls_end();
867 Mem != MemEnd; ++Mem) {
868 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
869 // C++ [class.union]p3:
870 // An anonymous union shall not have private or protected
871 // members (clause 11).
872 if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
873 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
874 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
875 Invalid = true;
876 }
877 } else if ((*Mem)->isImplicit()) {
878 // Any implicit members are fine.
Douglas Gregor2d87eb02009-02-03 00:34:39 +0000879 } else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) {
880 // This is a type that showed up in an
881 // elaborated-type-specifier inside the anonymous struct or
882 // union, but which actually declares a type outside of the
883 // anonymous struct or union. It's okay.
Douglas Gregorc7f01612009-01-07 19:46:03 +0000884 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
885 if (!MemRecord->isAnonymousStructOrUnion() &&
886 MemRecord->getDeclName()) {
887 // This is a nested type declaration.
888 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
889 << (int)Record->isUnion();
890 Invalid = true;
891 }
892 } else {
893 // We have something that isn't a non-static data
894 // member. Complain about it.
895 unsigned DK = diag::err_anonymous_record_bad_member;
896 if (isa<TypeDecl>(*Mem))
897 DK = diag::err_anonymous_record_with_type;
898 else if (isa<FunctionDecl>(*Mem))
899 DK = diag::err_anonymous_record_with_function;
900 else if (isa<VarDecl>(*Mem))
901 DK = diag::err_anonymous_record_with_static;
902 Diag((*Mem)->getLocation(), DK)
903 << (int)Record->isUnion();
904 Invalid = true;
905 }
906 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000907 } else {
908 // FIXME: Check GNU C semantics
Douglas Gregorb748fc52009-01-12 22:49:06 +0000909 if (Record->isUnion() && !Owner->isRecord()) {
910 Diag(Record->getLocation(), diag::err_anonymous_union_not_member)
911 << (int)getLangOptions().CPlusPlus;
912 Invalid = true;
913 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000914 }
915
916 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregorb748fc52009-01-12 22:49:06 +0000917 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
918 << (int)getLangOptions().CPlusPlus;
Douglas Gregor723d3332009-01-07 00:43:41 +0000919 Invalid = true;
920 }
921
922 // Create a declaration for this anonymous struct/union.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000923 NamedDecl *Anon = 0;
Douglas Gregor723d3332009-01-07 00:43:41 +0000924 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
925 Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
926 /*IdentifierInfo=*/0,
927 Context.getTypeDeclType(Record),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000928 /*BitWidth=*/0, /*Mutable=*/false);
Douglas Gregorc7f01612009-01-07 19:46:03 +0000929 Anon->setAccess(AS_public);
930 if (getLangOptions().CPlusPlus)
931 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregor723d3332009-01-07 00:43:41 +0000932 } else {
933 VarDecl::StorageClass SC;
934 switch (DS.getStorageClassSpec()) {
935 default: assert(0 && "Unknown storage class!");
936 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
937 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
938 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
939 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
940 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
941 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
942 case DeclSpec::SCS_mutable:
943 // mutable can only appear on non-static class members, so it's always
944 // an error here
945 Diag(Record->getLocation(), diag::err_mutable_nonmember);
946 Invalid = true;
947 SC = VarDecl::None;
948 break;
949 }
950
951 Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
952 /*IdentifierInfo=*/0,
953 Context.getTypeDeclType(Record),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000954 SC, DS.getSourceRange().getBegin());
Douglas Gregor723d3332009-01-07 00:43:41 +0000955 }
Douglas Gregorc7f01612009-01-07 19:46:03 +0000956 Anon->setImplicit();
Douglas Gregor723d3332009-01-07 00:43:41 +0000957
958 // Add the anonymous struct/union object to the current
959 // context. We'll be referencing this object when we refer to one of
960 // its members.
Douglas Gregor03b2ad22009-01-12 23:27:07 +0000961 Owner->addDecl(Anon);
Douglas Gregor723d3332009-01-07 00:43:41 +0000962
963 // Inject the members of the anonymous struct/union into the owning
964 // context and into the identifier resolver chain for name lookup
965 // purposes.
Douglas Gregorb748fc52009-01-12 22:49:06 +0000966 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
967 Invalid = true;
Douglas Gregor723d3332009-01-07 00:43:41 +0000968
969 // Mark this as an anonymous struct/union type. Note that we do not
970 // do this until after we have already checked and injected the
971 // members of this anonymous struct/union type, because otherwise
972 // the members could be injected twice: once by DeclContext when it
973 // builds its lookup table, and once by
974 // InjectAnonymousStructOrUnionMembers.
975 Record->setAnonymousStructOrUnion(true);
976
977 if (Invalid)
978 Anon->setInvalidDecl();
979
980 return Anon;
Chris Lattner4b009652007-07-25 00:24:17 +0000981}
982
Douglas Gregor6214d8a2009-01-14 15:45:31 +0000983bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType,
984 bool DirectInit) {
Steve Naroffe14e5542007-09-02 02:04:30 +0000985 // Get the type before calling CheckSingleAssignmentConstraints(), since
986 // it can promote the expression.
Chris Lattner005ed752008-01-04 18:04:52 +0000987 QualType InitType = Init->getType();
Douglas Gregor6fd35572008-12-19 17:40:08 +0000988
Douglas Gregor6214d8a2009-01-14 15:45:31 +0000989 if (getLangOptions().CPlusPlus) {
990 // FIXME: I dislike this error message. A lot.
991 if (PerformImplicitConversion(Init, DeclType, "initializing", DirectInit))
992 return Diag(Init->getSourceRange().getBegin(),
993 diag::err_typecheck_convert_incompatible)
994 << DeclType << Init->getType() << "initializing"
995 << Init->getSourceRange();
996
997 return false;
998 }
Douglas Gregor6fd35572008-12-19 17:40:08 +0000999
Chris Lattner005ed752008-01-04 18:04:52 +00001000 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
1001 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
1002 InitType, Init, "initializing");
Steve Naroffe14e5542007-09-02 02:04:30 +00001003}
1004
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001005bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001006 const ArrayType *AT = Context.getAsArrayType(DeclT);
1007
1008 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001009 // C99 6.7.8p14. We have an array of character type with unknown size
1010 // being initialized to a string literal.
1011 llvm::APSInt ConstVal(32);
1012 ConstVal = strLiteral->getByteLength() + 1;
1013 // Return a new array type (C99 6.7.8p22).
Eli Friedman8ff07782008-02-15 18:16:39 +00001014 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001015 ArrayType::Normal, 0);
Chris Lattnera1923f62008-08-04 07:31:14 +00001016 } else {
1017 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001018 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnera1923f62008-08-04 07:31:14 +00001019 // FIXME: Avoid truncation for 64-bit length strings.
1020 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001021 Diag(strLiteral->getSourceRange().getBegin(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00001022 diag::warn_initializer_string_for_char_array_too_long)
1023 << strLiteral->getSourceRange();
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001024 }
1025 // Set type from "char *" to "constant array of char".
1026 strLiteral->setType(DeclT);
1027 // For now, we always return false (meaning success).
1028 return false;
1029}
1030
1031StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001032 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Narofff3cb5142008-01-25 00:51:06 +00001033 if (AT && AT->getElementType()->isCharType()) {
Anders Carlsson37704be2009-01-24 17:47:50 +00001034 return dyn_cast<StringLiteral>(Init->IgnoreParens());
Steve Narofff3cb5142008-01-25 00:51:06 +00001035 }
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001036 return 0;
1037}
1038
Douglas Gregor6428e762008-11-05 15:29:30 +00001039bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
1040 SourceLocation InitLoc,
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001041 DeclarationName InitEntity,
1042 bool DirectInit) {
Douglas Gregorf1ae3e02008-12-18 21:49:58 +00001043 if (DeclType->isDependentType() || Init->isTypeDependent())
1044 return false;
1045
Douglas Gregor81c29152008-10-29 00:13:59 +00001046 // C++ [dcl.init.ref]p1:
Sebastian Redl51504af2008-11-24 20:06:50 +00001047 // A variable declared to be a T&, that is "reference to type T"
Douglas Gregor81c29152008-10-29 00:13:59 +00001048 // (8.3.2), shall be initialized by an object, or function, of
1049 // type T or by an object that can be converted into a T.
1050 if (DeclType->isReferenceType())
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001051 return CheckReferenceInit(Init, DeclType, 0, false, DirectInit);
Douglas Gregor81c29152008-10-29 00:13:59 +00001052
Steve Naroff8e9337f2008-01-21 23:53:58 +00001053 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
1054 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattnera1923f62008-08-04 07:31:14 +00001055 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Chris Lattner9d2cf082008-11-19 05:27:50 +00001056 return Diag(InitLoc, diag::err_variable_object_no_init)
1057 << VAT->getSizeExpr()->getSourceRange();
Steve Naroff8e9337f2008-01-21 23:53:58 +00001058
Steve Naroffcb69fb72007-12-10 22:44:33 +00001059 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
1060 if (!InitList) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001061 // FIXME: Handle wide strings
1062 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
1063 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedman65280992008-02-08 00:48:24 +00001064
Douglas Gregor6428e762008-11-05 15:29:30 +00001065 // C++ [dcl.init]p14:
1066 // -- If the destination type is a (possibly cv-qualified) class
1067 // type:
1068 if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
1069 QualType DeclTypeC = Context.getCanonicalType(DeclType);
1070 QualType InitTypeC = Context.getCanonicalType(Init->getType());
1071
1072 // -- If the initialization is direct-initialization, or if it is
1073 // copy-initialization where the cv-unqualified version of the
1074 // source type is the same class as, or a derived class of, the
1075 // class of the destination, constructors are considered.
1076 if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
1077 IsDerivedFrom(InitTypeC, DeclTypeC)) {
1078 CXXConstructorDecl *Constructor
1079 = PerformInitializationByConstructor(DeclType, &Init, 1,
1080 InitLoc, Init->getSourceRange(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001081 InitEntity,
1082 DirectInit? IK_Direct : IK_Copy);
Douglas Gregor6428e762008-11-05 15:29:30 +00001083 return Constructor == 0;
1084 }
1085
1086 // -- Otherwise (i.e., for the remaining copy-initialization
1087 // cases), user-defined conversion sequences that can
1088 // convert from the source type to the destination type or
1089 // (when a conversion function is used) to a derived class
1090 // thereof are enumerated as described in 13.3.1.4, and the
1091 // best one is chosen through overload resolution
1092 // (13.3). If the conversion cannot be done or is
1093 // ambiguous, the initialization is ill-formed. The
1094 // function selected is called with the initializer
1095 // expression as its argument; if the function is a
1096 // constructor, the call initializes a temporary of the
1097 // destination type.
1098 // FIXME: We're pretending to do copy elision here; return to
1099 // this when we have ASTs for such things.
Douglas Gregor6fd35572008-12-19 17:40:08 +00001100 if (!PerformImplicitConversion(Init, DeclType, "initializing"))
Douglas Gregor6428e762008-11-05 15:29:30 +00001101 return false;
Chris Lattner70b93d82008-11-18 22:52:51 +00001102
Douglas Gregor62ae25a2008-12-24 00:01:03 +00001103 if (InitEntity)
1104 return Diag(InitLoc, diag::err_cannot_initialize_decl)
1105 << InitEntity << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1106 << Init->getType() << Init->getSourceRange();
1107 else
1108 return Diag(InitLoc, diag::err_cannot_initialize_decl_noname)
1109 << DeclType << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1110 << Init->getType() << Init->getSourceRange();
Douglas Gregor6428e762008-11-05 15:29:30 +00001111 }
1112
Steve Naroffb2f72412008-09-29 20:07:05 +00001113 // C99 6.7.8p16.
Eli Friedman65280992008-02-08 00:48:24 +00001114 if (DeclType->isArrayType())
Chris Lattner9d2cf082008-11-19 05:27:50 +00001115 return Diag(Init->getLocStart(), diag::err_array_init_list_required)
1116 << Init->getSourceRange();
Eli Friedman65280992008-02-08 00:48:24 +00001117
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001118 return CheckSingleInitializer(Init, DeclType, DirectInit);
Douglas Gregord45210d2009-01-30 22:09:00 +00001119 }
Eli Friedman38b7a912008-06-06 19:40:52 +00001120
Douglas Gregor849afc32009-01-29 00:45:39 +00001121 bool hadError = CheckInitList(InitList, DeclType);
1122 Init = InitList;
1123 return hadError;
Steve Naroffe14e5542007-09-02 02:04:30 +00001124}
1125
Douglas Gregor6704b312008-11-17 22:58:34 +00001126/// GetNameForDeclarator - Determine the full declaration name for the
1127/// given Declarator.
1128DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1129 switch (D.getKind()) {
1130 case Declarator::DK_Abstract:
1131 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
1132 return DeclarationName();
1133
1134 case Declarator::DK_Normal:
1135 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
1136 return DeclarationName(D.getIdentifier());
1137
1138 case Declarator::DK_Constructor: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001139 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor6704b312008-11-17 22:58:34 +00001140 Ty = Context.getCanonicalType(Ty);
1141 return Context.DeclarationNames.getCXXConstructorName(Ty);
1142 }
1143
1144 case Declarator::DK_Destructor: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001145 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
Douglas Gregor6704b312008-11-17 22:58:34 +00001146 Ty = Context.getCanonicalType(Ty);
1147 return Context.DeclarationNames.getCXXDestructorName(Ty);
1148 }
1149
1150 case Declarator::DK_Conversion: {
Douglas Gregora60c62e2009-02-09 15:09:02 +00001151 // FIXME: We'd like to keep the non-canonical type for diagnostics!
Douglas Gregor6704b312008-11-17 22:58:34 +00001152 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1153 Ty = Context.getCanonicalType(Ty);
1154 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
1155 }
Douglas Gregor96a32dd2008-11-18 14:39:36 +00001156
1157 case Declarator::DK_Operator:
1158 assert(D.getIdentifier() == 0 && "operator names have no identifier");
1159 return Context.DeclarationNames.getCXXOperatorName(
1160 D.getOverloadedOperator());
Douglas Gregor6704b312008-11-17 22:58:34 +00001161 }
1162
1163 assert(false && "Unknown name kind");
1164 return DeclarationName();
1165}
1166
Douglas Gregor46cfe452009-02-06 17:46:57 +00001167/// isNearlyMatchingFunction - Determine whether the C++ functions
1168/// Declaration and Definition are "nearly" matching. This heuristic
1169/// is used to improve diagnostics in the case where an out-of-line
1170/// function definition doesn't match any declaration within
1171/// the class or namespace.
1172static bool isNearlyMatchingFunction(ASTContext &Context,
1173 FunctionDecl *Declaration,
1174 FunctionDecl *Definition) {
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001175 if (Declaration->param_size() != Definition->param_size())
1176 return false;
1177 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1178 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1179 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1180
1181 DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType());
1182 DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType());
1183 if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType())
1184 return false;
1185 }
1186
1187 return true;
1188}
1189
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00001190Sema::DeclTy *
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001191Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1192 bool IsFunctionDefinition) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001193 NamedDecl *LastDeclarator = dyn_cast_or_null<NamedDecl>((Decl *)lastDecl);
Douglas Gregor6704b312008-11-17 22:58:34 +00001194 DeclarationName Name = GetNameForDeclarator(D);
1195
Chris Lattner4b009652007-07-25 00:24:17 +00001196 // All of these full declarators require an identifier. If it doesn't have
1197 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor6704b312008-11-17 22:58:34 +00001198 if (!Name) {
Chris Lattnercd61d592008-11-11 06:13:16 +00001199 if (!D.getInvalidType()) // Reject this if we think it is valid.
1200 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner8ba580c2008-11-19 05:08:23 +00001201 diag::err_declarator_need_ident)
1202 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00001203 return 0;
1204 }
1205
Chris Lattnera7549902007-08-26 06:24:45 +00001206 // The scope passed in may not be a decl scope. Zip up the scope tree until
1207 // we find one that is.
Douglas Gregor8acb7272008-12-11 16:49:14 +00001208 while ((S->getFlags() & Scope::DeclScope) == 0 ||
Douglas Gregor279272e2009-02-04 19:02:06 +00001209 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattnera7549902007-08-26 06:24:45 +00001210 S = S->getParent();
1211
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001212 DeclContext *DC;
Douglas Gregor09be81b2009-02-04 17:27:36 +00001213 NamedDecl *PrevDecl;
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001214 NamedDecl *New;
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001215 bool InvalidDecl = false;
Douglas Gregor1d661552008-04-13 21:07:44 +00001216
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001217 // See if this is a redefinition of a variable in the same scope.
Douglas Gregor52ae30c2009-01-30 01:04:22 +00001218 if (!D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid()) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001219 DC = CurContext;
Douglas Gregor52ae30c2009-01-30 01:04:22 +00001220 PrevDecl = LookupName(S, Name, LookupOrdinaryName);
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001221 } else { // Something like "int foo::x;"
1222 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregor52ae30c2009-01-30 01:04:22 +00001223 PrevDecl = LookupQualifiedName(DC, Name, LookupOrdinaryName);
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001224
1225 // C++ 7.3.1.2p2:
1226 // Members (including explicit specializations of templates) of a named
1227 // namespace can also be defined outside that namespace by explicit
1228 // qualification of the name being defined, provided that the entity being
1229 // defined was already declared in the namespace and the definition appears
1230 // after the point of declaration in a namespace that encloses the
1231 // declarations namespace.
1232 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001233 // Note that we only check the context at this point. We don't yet
1234 // have enough information to make sure that PrevDecl is actually
1235 // the declaration we want to match. For example, given:
1236 //
Douglas Gregor98341042008-12-12 08:25:50 +00001237 // class X {
1238 // void f();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001239 // void f(float);
Douglas Gregor98341042008-12-12 08:25:50 +00001240 // };
1241 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001242 // void X::f(int) { } // ill-formed
1243 //
1244 // In this case, PrevDecl will point to the overload set
1245 // containing the two f's declared in X, but neither of them
1246 // matches.
Douglas Gregor46cfe452009-02-06 17:46:57 +00001247
1248 // First check whether we named the global scope.
1249 if (isa<TranslationUnitDecl>(DC)) {
1250 Diag(D.getIdentifierLoc(), diag::err_invalid_declarator_global_scope)
1251 << Name << D.getCXXScopeSpec().getRange();
1252 } else if (!CurContext->Encloses(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001253 // The qualifying scope doesn't enclose the original declaration.
1254 // Emit diagnostic based on current scope.
1255 SourceLocation L = D.getIdentifierLoc();
1256 SourceRange R = D.getCXXScopeSpec().getRange();
Douglas Gregor46cfe452009-02-06 17:46:57 +00001257 if (isa<FunctionDecl>(CurContext))
Chris Lattner254de7d2008-11-23 20:28:15 +00001258 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Douglas Gregor46cfe452009-02-06 17:46:57 +00001259 else
Chris Lattner254de7d2008-11-23 20:28:15 +00001260 Diag(L, diag::err_invalid_declarator_scope)
Douglas Gregor46cfe452009-02-06 17:46:57 +00001261 << Name << cast<NamedDecl>(DC) << R;
Douglas Gregor8acb7272008-12-11 16:49:14 +00001262 InvalidDecl = true;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001263 }
1264 }
1265
Douglas Gregor2715a1f2008-12-08 18:40:42 +00001266 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00001267 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001268 InvalidDecl = InvalidDecl
1269 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregordd861062008-12-05 18:15:24 +00001270 // Just pretend that we didn't see the previous declaration.
1271 PrevDecl = 0;
1272 }
1273
Douglas Gregor1d661552008-04-13 21:07:44 +00001274 // In C++, the previous declaration we find might be a tag type
1275 // (class or enum). In this case, the new declaration will hide the
Douglas Gregorb31f2942009-01-28 17:15:10 +00001276 // tag type. Note that this does does not apply if we're declaring a
1277 // typedef (C++ [dcl.typedef]p4).
1278 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag &&
1279 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
Douglas Gregor1d661552008-04-13 21:07:44 +00001280 PrevDecl = 0;
1281
Chris Lattner82bb4792007-11-14 06:34:38 +00001282 QualType R = GetTypeForDeclarator(D, S);
1283 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
1284
Chris Lattner4b009652007-07-25 00:24:17 +00001285 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001286 New = ActOnTypedefDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1287 InvalidDecl);
Chris Lattner82bb4792007-11-14 06:34:38 +00001288 } else if (R.getTypePtr()->isFunctionType()) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001289 New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1290 IsFunctionDefinition, InvalidDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00001291 } else {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001292 New = ActOnVariableDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1293 InvalidDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00001294 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001295
1296 if (New == 0)
1297 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001298
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00001299 // Set the lexical context. If the declarator has a C++ scope specifier, the
1300 // lexical context will be different from the semantic context.
1301 New->setLexicalDeclContext(CurContext);
1302
Chris Lattner4b009652007-07-25 00:24:17 +00001303 // If this has an identifier, add it to the scope stack.
Douglas Gregor6704b312008-11-17 22:58:34 +00001304 if (Name)
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00001305 PushOnScopeChains(New, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001306 // If any semantic error occurred, mark the decl as invalid.
1307 if (D.getInvalidType() || InvalidDecl)
1308 New->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00001309
1310 return New;
1311}
1312
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001313NamedDecl*
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001314Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001315 QualType R, Decl* LastDeclarator,
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001316 Decl* PrevDecl, bool& InvalidDecl) {
1317 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1318 if (D.getCXXScopeSpec().isSet()) {
1319 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1320 << D.getCXXScopeSpec().getRange();
1321 InvalidDecl = true;
1322 // Pretend we didn't see the scope specifier.
1323 DC = 0;
1324 }
1325
1326 // Check that there are no default arguments (C++ only).
1327 if (getLangOptions().CPlusPlus)
1328 CheckExtraCXXDefaultArguments(D);
1329
1330 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
1331 if (!NewTD) return 0;
1332
1333 // Handle attributes prior to checking for duplicates in MergeVarDecl
1334 ProcessDeclAttributes(NewTD, D);
1335 // Merge the decl with the existing one if appropriate. If the decl is
1336 // in an outer scope, it isn't the same thing.
1337 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1338 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
1339 if (NewTD == 0) return 0;
1340 }
1341
1342 if (S->getFnParent() == 0) {
1343 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1344 // then it shall have block scope.
1345 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
1346 if (NewTD->getUnderlyingType()->isVariableArrayType())
1347 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1348 else
1349 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1350
1351 InvalidDecl = true;
1352 }
1353 }
1354 return NewTD;
1355}
1356
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001357NamedDecl*
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001358Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001359 QualType R, Decl* LastDeclarator,
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001360 Decl* PrevDecl, bool& InvalidDecl) {
1361 DeclarationName Name = GetNameForDeclarator(D);
1362
1363 // Check that there are no default arguments (C++ only).
1364 if (getLangOptions().CPlusPlus)
1365 CheckExtraCXXDefaultArguments(D);
1366
1367 if (R.getTypePtr()->isObjCInterfaceType()) {
1368 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object)
1369 << D.getIdentifier();
1370 InvalidDecl = true;
1371 }
1372
1373 VarDecl *NewVD;
1374 VarDecl::StorageClass SC;
1375 switch (D.getDeclSpec().getStorageClassSpec()) {
1376 default: assert(0 && "Unknown storage class!");
1377 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1378 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1379 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1380 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1381 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1382 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1383 case DeclSpec::SCS_mutable:
1384 // mutable can only appear on non-static class members, so it's always
1385 // an error here
1386 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1387 InvalidDecl = true;
1388 SC = VarDecl::None;
1389 break;
1390 }
1391
1392 IdentifierInfo *II = Name.getAsIdentifierInfo();
1393 if (!II) {
1394 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1395 << Name.getAsString();
1396 return 0;
1397 }
1398
1399 if (DC->isRecord()) {
1400 // This is a static data member for a C++ class.
1401 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
1402 D.getIdentifierLoc(), II,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001403 R);
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001404 } else {
1405 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
1406 if (S->getFnParent() == 0) {
1407 // C99 6.9p2: The storage-class specifiers auto and register shall not
1408 // appear in the declaration specifiers in an external declaration.
1409 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1410 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
1411 InvalidDecl = true;
1412 }
1413 }
1414 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001415 II, R, SC,
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001416 // FIXME: Move to DeclGroup...
1417 D.getDeclSpec().getSourceRange().getBegin());
1418 NewVD->setThreadSpecified(ThreadSpecified);
1419 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001420 NewVD->setNextDeclarator(LastDeclarator);
1421
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001422 // Handle attributes prior to checking for duplicates in MergeVarDecl
1423 ProcessDeclAttributes(NewVD, D);
1424
1425 // Handle GNU asm-label extension (encoded as an attribute).
1426 if (Expr *E = (Expr*) D.getAsmLabel()) {
1427 // The parser guarantees this is a string.
1428 StringLiteral *SE = cast<StringLiteral>(E);
1429 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1430 SE->getByteLength())));
1431 }
1432
1433 // Emit an error if an address space was applied to decl with local storage.
1434 // This includes arrays of objects with address space qualifiers, but not
1435 // automatic variables that point to other address spaces.
1436 // ISO/IEC TR 18037 S5.1.2
1437 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1438 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1439 InvalidDecl = true;
1440 }
1441 // Merge the decl with the existing one if appropriate. If the decl is
1442 // in an outer scope, it isn't the same thing.
1443 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1444 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1445 // The user tried to define a non-static data member
1446 // out-of-line (C++ [dcl.meaning]p1).
1447 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1448 << D.getCXXScopeSpec().getRange();
1449 NewVD->Destroy(Context);
1450 return 0;
1451 }
1452
1453 NewVD = MergeVarDecl(NewVD, PrevDecl);
1454 if (NewVD == 0) return 0;
1455
1456 if (D.getCXXScopeSpec().isSet()) {
1457 // No previous declaration in the qualifying scope.
1458 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1459 << Name << D.getCXXScopeSpec().getRange();
1460 InvalidDecl = true;
1461 }
1462 }
1463 return NewVD;
1464}
1465
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001466NamedDecl*
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001467Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001468 QualType R, Decl *LastDeclarator,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001469 Decl* PrevDecl, bool IsFunctionDefinition,
1470 bool& InvalidDecl) {
1471 assert(R.getTypePtr()->isFunctionType());
1472
1473 DeclarationName Name = GetNameForDeclarator(D);
1474 FunctionDecl::StorageClass SC = FunctionDecl::None;
1475 switch (D.getDeclSpec().getStorageClassSpec()) {
1476 default: assert(0 && "Unknown storage class!");
1477 case DeclSpec::SCS_auto:
1478 case DeclSpec::SCS_register:
1479 case DeclSpec::SCS_mutable:
1480 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func);
1481 InvalidDecl = true;
1482 break;
1483 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1484 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
1485 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
1486 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
1487 }
1488
1489 bool isInline = D.getDeclSpec().isInlineSpecified();
1490 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1491 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1492
1493 FunctionDecl *NewFD;
1494 if (D.getKind() == Declarator::DK_Constructor) {
1495 // This is a C++ constructor declaration.
1496 assert(DC->isRecord() &&
1497 "Constructors can only be declared in a member context");
1498
1499 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
1500
1501 // Create the new declaration
1502 NewFD = CXXConstructorDecl::Create(Context,
1503 cast<CXXRecordDecl>(DC),
1504 D.getIdentifierLoc(), Name, R,
1505 isExplicit, isInline,
1506 /*isImplicitlyDeclared=*/false);
1507
1508 if (InvalidDecl)
1509 NewFD->setInvalidDecl();
1510 } else if (D.getKind() == Declarator::DK_Destructor) {
1511 // This is a C++ destructor declaration.
1512 if (DC->isRecord()) {
1513 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
1514
1515 NewFD = CXXDestructorDecl::Create(Context,
1516 cast<CXXRecordDecl>(DC),
1517 D.getIdentifierLoc(), Name, R,
1518 isInline,
1519 /*isImplicitlyDeclared=*/false);
1520
1521 if (InvalidDecl)
1522 NewFD->setInvalidDecl();
1523 } else {
1524 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
1525
1526 // Create a FunctionDecl to satisfy the function definition parsing
1527 // code path.
1528 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001529 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001530 // FIXME: Move to DeclGroup...
1531 D.getDeclSpec().getSourceRange().getBegin());
1532 InvalidDecl = true;
1533 NewFD->setInvalidDecl();
1534 }
1535 } else if (D.getKind() == Declarator::DK_Conversion) {
1536 if (!DC->isRecord()) {
1537 Diag(D.getIdentifierLoc(),
1538 diag::err_conv_function_not_member);
1539 return 0;
1540 } else {
1541 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
1542
1543 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
1544 D.getIdentifierLoc(), Name, R,
1545 isInline, isExplicit);
1546
1547 if (InvalidDecl)
1548 NewFD->setInvalidDecl();
1549 }
1550 } else if (DC->isRecord()) {
1551 // This is a C++ method declaration.
1552 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
1553 D.getIdentifierLoc(), Name, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001554 (SC == FunctionDecl::Static), isInline);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001555 } else {
1556 NewFD = FunctionDecl::Create(Context, DC,
1557 D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001558 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001559 // FIXME: Move to DeclGroup...
1560 D.getDeclSpec().getSourceRange().getBegin());
1561 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001562 NewFD->setNextDeclarator(LastDeclarator);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001563
1564 // Set the lexical context. If the declarator has a C++
1565 // scope specifier, the lexical context will be different
1566 // from the semantic context.
1567 NewFD->setLexicalDeclContext(CurContext);
1568
1569 // Handle GNU asm-label extension (encoded as an attribute).
1570 if (Expr *E = (Expr*) D.getAsmLabel()) {
1571 // The parser guarantees this is a string.
1572 StringLiteral *SE = cast<StringLiteral>(E);
1573 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1574 SE->getByteLength())));
1575 }
1576
1577 // Copy the parameter declarations from the declarator D to
1578 // the function declaration NewFD, if they are available.
1579 if (D.getNumTypeObjects() > 0) {
1580 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1581
1582 // Create Decl objects for each parameter, adding them to the
1583 // FunctionDecl.
1584 llvm::SmallVector<ParmVarDecl*, 16> Params;
1585
1586 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1587 // function that takes no arguments, not a function that takes a
1588 // single void argument.
1589 // We let through "const void" here because Sema::GetTypeForDeclarator
1590 // already checks for that case.
1591 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1592 FTI.ArgInfo[0].Param &&
1593 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1594 // empty arg list, don't push any params.
1595 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1596
1597 // In C++, the empty parameter-type-list must be spelled "void"; a
1598 // typedef of void is not permitted.
1599 if (getLangOptions().CPlusPlus &&
1600 Param->getType().getUnqualifiedType() != Context.VoidTy) {
1601 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1602 }
1603 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1604 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1605 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1606 }
1607
1608 NewFD->setParams(Context, &Params[0], Params.size());
1609 } else if (R->getAsTypedefType()) {
1610 // When we're declaring a function with a typedef, as in the
1611 // following example, we'll need to synthesize (unnamed)
1612 // parameters for use in the declaration.
1613 //
1614 // @code
1615 // typedef void fn(int);
1616 // fn f;
1617 // @endcode
1618 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1619 if (!FT) {
1620 // This is a typedef of a function with no prototype, so we
1621 // don't need to do anything.
1622 } else if ((FT->getNumArgs() == 0) ||
1623 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1624 FT->getArgType(0)->isVoidType())) {
1625 // This is a zero-argument function. We don't need to do anything.
1626 } else {
1627 // Synthesize a parameter for each argument type.
1628 llvm::SmallVector<ParmVarDecl*, 16> Params;
1629 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1630 ArgType != FT->arg_type_end(); ++ArgType) {
1631 Params.push_back(ParmVarDecl::Create(Context, DC,
1632 SourceLocation(), 0,
1633 *ArgType, VarDecl::None,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001634 0));
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001635 }
1636
1637 NewFD->setParams(Context, &Params[0], Params.size());
1638 }
1639 }
1640
1641 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1642 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
1643 else if (isa<CXXDestructorDecl>(NewFD)) {
1644 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1645 Record->setUserDeclaredDestructor(true);
1646 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1647 // user-defined destructor.
1648 Record->setPOD(false);
1649 } else if (CXXConversionDecl *Conversion =
1650 dyn_cast<CXXConversionDecl>(NewFD))
1651 ActOnConversionDeclarator(Conversion);
1652
1653 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1654 if (NewFD->isOverloadedOperator() &&
1655 CheckOverloadedOperatorDeclaration(NewFD))
1656 NewFD->setInvalidDecl();
1657
1658 // Merge the decl with the existing one if appropriate. Since C functions
1659 // are in a flat namespace, make sure we consider decls in outer scopes.
Douglas Gregorfcb19192009-02-11 23:02:49 +00001660 bool OverloadableAttrRequired = false;
Douglas Gregor46cfe452009-02-06 17:46:57 +00001661 bool Redeclaration = false;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001662 if (PrevDecl &&
1663 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
Douglas Gregorfcb19192009-02-11 23:02:49 +00001664 // Determine whether NewFD is an overload of PrevDecl or
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001665 // a declaration that requires merging. If it's an overload,
1666 // there's no more work to do here; we'll just add the new
1667 // function to the scope.
1668 OverloadedFunctionDecl::function_iterator MatchedDecl;
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001669
1670 if (!getLangOptions().CPlusPlus &&
1671 AllowOverloadingOfFunction(PrevDecl, Context))
1672 OverloadableAttrRequired = true;
1673
Douglas Gregorfcb19192009-02-11 23:02:49 +00001674 if (!AllowOverloadingOfFunction(PrevDecl, Context) ||
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001675 !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
1676 Decl *OldDecl = PrevDecl;
1677
1678 // If PrevDecl was an overloaded function, extract the
1679 // FunctionDecl that matched.
1680 if (isa<OverloadedFunctionDecl>(PrevDecl))
1681 OldDecl = *MatchedDecl;
1682
1683 // NewFD and PrevDecl represent declarations that need to be
1684 // merged.
1685 NewFD = MergeFunctionDecl(NewFD, OldDecl, Redeclaration);
1686
1687 if (NewFD == 0) return 0;
1688 if (Redeclaration) {
1689 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1690
1691 // An out-of-line member function declaration must also be a
1692 // definition (C++ [dcl.meaning]p1).
1693 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1694 !InvalidDecl) {
1695 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1696 << D.getCXXScopeSpec().getRange();
1697 NewFD->setInvalidDecl();
1698 }
1699 }
1700 }
Douglas Gregor46cfe452009-02-06 17:46:57 +00001701 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001702
Douglas Gregor46cfe452009-02-06 17:46:57 +00001703 if (D.getCXXScopeSpec().isSet() &&
1704 (!PrevDecl || !Redeclaration)) {
1705 // The user tried to provide an out-of-line definition for a
1706 // function that is a member of a class or namespace, but there
1707 // was no such member function declared (C++ [class.mfct]p2,
1708 // C++ [namespace.memdef]p2). For example:
1709 //
1710 // class X {
1711 // void f() const;
1712 // };
1713 //
1714 // void X::f() { } // ill-formed
1715 //
1716 // Complain about this problem, and attempt to suggest close
1717 // matches (e.g., those that differ only in cv-qualifiers and
1718 // whether the parameter types are references).
Douglas Gregor46cfe452009-02-06 17:46:57 +00001719 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
Douglas Gregoree785232009-02-06 22:58:38 +00001720 << cast<NamedDecl>(DC) << D.getCXXScopeSpec().getRange();
Douglas Gregor46cfe452009-02-06 17:46:57 +00001721 InvalidDecl = true;
1722
1723 LookupResult Prev = LookupQualifiedName(DC, Name, LookupOrdinaryName,
1724 true);
1725 assert(!Prev.isAmbiguous() &&
1726 "Cannot have an ambiguity in previous-declaration lookup");
1727 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
1728 Func != FuncEnd; ++Func) {
1729 if (isa<FunctionDecl>(*Func) &&
1730 isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD))
1731 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001732 }
Douglas Gregor46cfe452009-02-06 17:46:57 +00001733
1734 PrevDecl = 0;
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001735 }
Douglas Gregorbd4b0852009-02-02 21:35:47 +00001736
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001737 // Handle attributes. We need to have merged decls when handling attributes
1738 // (for example to check for conflicts, etc).
1739 ProcessDeclAttributes(NewFD, D);
1740
Douglas Gregorfcb19192009-02-11 23:02:49 +00001741 if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) {
1742 // If a function name is overloadable in C, then every function
1743 // with that name must be marked "overloadable".
1744 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
Douglas Gregorfa3a8322009-02-13 00:26:38 +00001745 << Redeclaration << NewFD;
Douglas Gregorfcb19192009-02-11 23:02:49 +00001746 if (PrevDecl)
1747 Diag(PrevDecl->getLocation(),
1748 diag::note_attribute_overloadable_prev_overload);
1749 NewFD->addAttr(new OverloadableAttr);
1750 }
1751
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001752 if (getLangOptions().CPlusPlus) {
Sebastian Redl0d2157d2009-02-08 14:56:26 +00001753 // In C++, check default arguments now that we have merged decls. Unless
1754 // the lexical context is the class, because in this case this is done
1755 // during delayed parsing anyway.
1756 if (!CurContext->isRecord())
1757 CheckCXXDefaultArguments(NewFD);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001758
1759 // An out-of-line member function declaration must also be a
1760 // definition (C++ [dcl.meaning]p1).
1761 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
1762 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1763 << D.getCXXScopeSpec().getRange();
1764 InvalidDecl = true;
1765 }
1766 }
1767 return NewFD;
1768}
1769
Steve Narofffc08f5e2008-10-27 11:34:16 +00001770void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattner9d2cf082008-11-19 05:27:50 +00001771 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1772 << Init->getSourceRange();
Steve Narofffc08f5e2008-10-27 11:34:16 +00001773}
1774
Eli Friedman02c22ce2008-05-20 13:48:25 +00001775bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1776 switch (Init->getStmtClass()) {
1777 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001778 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001779 return true;
1780 case Expr::ParenExprClass: {
1781 const ParenExpr* PE = cast<ParenExpr>(Init);
1782 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1783 }
1784 case Expr::CompoundLiteralExprClass:
1785 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregor566782a2009-01-06 05:10:23 +00001786 case Expr::DeclRefExprClass:
1787 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001788 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman8cb86e32008-05-21 03:39:11 +00001789 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1790 if (VD->hasGlobalStorage())
1791 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001792 InitializerElementNotConstant(Init);
Eli Friedman8cb86e32008-05-21 03:39:11 +00001793 return true;
1794 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001795 if (isa<FunctionDecl>(D))
1796 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001797 InitializerElementNotConstant(Init);
Steve Narofff0b23542008-01-10 22:15:12 +00001798 return true;
1799 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001800 case Expr::MemberExprClass: {
1801 const MemberExpr *M = cast<MemberExpr>(Init);
1802 if (M->isArrow())
1803 return CheckAddressConstantExpression(M->getBase());
1804 return CheckAddressConstantExpressionLValue(M->getBase());
1805 }
1806 case Expr::ArraySubscriptExprClass: {
1807 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1808 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1809 return CheckAddressConstantExpression(ASE->getBase()) ||
1810 CheckArithmeticConstantExpression(ASE->getIdx());
1811 }
1812 case Expr::StringLiteralClass:
Chris Lattner69909292008-08-10 01:53:14 +00001813 case Expr::PredefinedExprClass:
Eli Friedman02c22ce2008-05-20 13:48:25 +00001814 return false;
1815 case Expr::UnaryOperatorClass: {
1816 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1817
1818 // C99 6.6p9
1819 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman8cb86e32008-05-21 03:39:11 +00001820 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001821
Steve Narofffc08f5e2008-10-27 11:34:16 +00001822 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001823 return true;
1824 }
1825 }
1826}
1827
1828bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1829 switch (Init->getStmtClass()) {
1830 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001831 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001832 return true;
Chris Lattner0903cba2008-10-06 07:26:43 +00001833 case Expr::ParenExprClass:
1834 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001835 case Expr::StringLiteralClass:
1836 case Expr::ObjCStringLiteralClass:
1837 return false;
Chris Lattner0903cba2008-10-06 07:26:43 +00001838 case Expr::CallExprClass:
Douglas Gregor65fedaf2008-11-14 16:09:21 +00001839 case Expr::CXXOperatorCallExprClass:
Chris Lattner0903cba2008-10-06 07:26:43 +00001840 // __builtin___CFStringMakeConstantString is a valid constant l-value.
1841 if (cast<CallExpr>(Init)->isBuiltinCall() ==
1842 Builtin::BI__builtin___CFStringMakeConstantString)
1843 return false;
1844
Steve Narofffc08f5e2008-10-27 11:34:16 +00001845 InitializerElementNotConstant(Init);
Chris Lattner0903cba2008-10-06 07:26:43 +00001846 return true;
1847
Eli Friedman02c22ce2008-05-20 13:48:25 +00001848 case Expr::UnaryOperatorClass: {
1849 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1850
1851 // C99 6.6p9
1852 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1853 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1854
1855 if (Exp->getOpcode() == UnaryOperator::Extension)
1856 return CheckAddressConstantExpression(Exp->getSubExpr());
1857
Steve Narofffc08f5e2008-10-27 11:34:16 +00001858 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001859 return true;
1860 }
1861 case Expr::BinaryOperatorClass: {
1862 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1863 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1864
1865 Expr *PExp = Exp->getLHS();
1866 Expr *IExp = Exp->getRHS();
1867 if (IExp->getType()->isPointerType())
1868 std::swap(PExp, IExp);
1869
1870 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1871 return CheckAddressConstantExpression(PExp) ||
1872 CheckArithmeticConstantExpression(IExp);
1873 }
Eli Friedman1fad3c62008-08-25 20:46:57 +00001874 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00001875 case Expr::CStyleCastExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001876 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman1fad3c62008-08-25 20:46:57 +00001877 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1878 // Check for implicit promotion
1879 if (SubExpr->getType()->isFunctionType() ||
1880 SubExpr->getType()->isArrayType())
1881 return CheckAddressConstantExpressionLValue(SubExpr);
1882 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001883
1884 // Check for pointer->pointer cast
1885 if (SubExpr->getType()->isPointerType())
1886 return CheckAddressConstantExpression(SubExpr);
1887
Eli Friedman1fad3c62008-08-25 20:46:57 +00001888 if (SubExpr->getType()->isIntegralType()) {
1889 // Check for the special-case of a pointer->int->pointer cast;
1890 // this isn't standard, but some code requires it. See
1891 // PR2720 for an example.
1892 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1893 if (SubCast->getSubExpr()->getType()->isPointerType()) {
1894 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1895 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1896 if (IntWidth >= PointerWidth) {
1897 return CheckAddressConstantExpression(SubCast->getSubExpr());
1898 }
1899 }
1900 }
1901 }
1902 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001903 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedman1fad3c62008-08-25 20:46:57 +00001904 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001905
Steve Narofffc08f5e2008-10-27 11:34:16 +00001906 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001907 return true;
1908 }
1909 case Expr::ConditionalOperatorClass: {
1910 // FIXME: Should we pedwarn here?
1911 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1912 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00001913 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001914 return true;
1915 }
1916 if (CheckArithmeticConstantExpression(Exp->getCond()))
1917 return true;
1918 if (Exp->getLHS() &&
1919 CheckAddressConstantExpression(Exp->getLHS()))
1920 return true;
1921 return CheckAddressConstantExpression(Exp->getRHS());
1922 }
1923 case Expr::AddrLabelExprClass:
1924 return false;
1925 }
1926}
1927
Eli Friedman998dffb2008-06-09 05:05:07 +00001928static const Expr* FindExpressionBaseAddress(const Expr* E);
1929
1930static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
1931 switch (E->getStmtClass()) {
1932 default:
1933 return E;
1934 case Expr::ParenExprClass: {
1935 const ParenExpr* PE = cast<ParenExpr>(E);
1936 return FindExpressionBaseAddressLValue(PE->getSubExpr());
1937 }
1938 case Expr::MemberExprClass: {
1939 const MemberExpr *M = cast<MemberExpr>(E);
1940 if (M->isArrow())
1941 return FindExpressionBaseAddress(M->getBase());
1942 return FindExpressionBaseAddressLValue(M->getBase());
1943 }
1944 case Expr::ArraySubscriptExprClass: {
1945 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1946 return FindExpressionBaseAddress(ASE->getBase());
1947 }
1948 case Expr::UnaryOperatorClass: {
1949 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1950
1951 if (Exp->getOpcode() == UnaryOperator::Deref)
1952 return FindExpressionBaseAddress(Exp->getSubExpr());
1953
1954 return E;
1955 }
1956 }
1957}
1958
1959static const Expr* FindExpressionBaseAddress(const Expr* E) {
1960 switch (E->getStmtClass()) {
1961 default:
1962 return E;
1963 case Expr::ParenExprClass: {
1964 const ParenExpr* PE = cast<ParenExpr>(E);
1965 return FindExpressionBaseAddress(PE->getSubExpr());
1966 }
1967 case Expr::UnaryOperatorClass: {
1968 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1969
1970 // C99 6.6p9
1971 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1972 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
1973
1974 if (Exp->getOpcode() == UnaryOperator::Extension)
1975 return FindExpressionBaseAddress(Exp->getSubExpr());
1976
1977 return E;
1978 }
1979 case Expr::BinaryOperatorClass: {
1980 const BinaryOperator *Exp = cast<BinaryOperator>(E);
1981
1982 Expr *PExp = Exp->getLHS();
1983 Expr *IExp = Exp->getRHS();
1984 if (IExp->getType()->isPointerType())
1985 std::swap(PExp, IExp);
1986
1987 return FindExpressionBaseAddress(PExp);
1988 }
1989 case Expr::ImplicitCastExprClass: {
1990 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
1991
1992 // Check for implicit promotion
1993 if (SubExpr->getType()->isFunctionType() ||
1994 SubExpr->getType()->isArrayType())
1995 return FindExpressionBaseAddressLValue(SubExpr);
1996
1997 // Check for pointer->pointer cast
1998 if (SubExpr->getType()->isPointerType())
1999 return FindExpressionBaseAddress(SubExpr);
2000
2001 // We assume that we have an arithmetic expression here;
2002 // if we don't, we'll figure it out later
2003 return 0;
2004 }
Douglas Gregor035d0882008-10-28 15:36:24 +00002005 case Expr::CStyleCastExprClass: {
Eli Friedman998dffb2008-06-09 05:05:07 +00002006 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
2007
2008 // Check for pointer->pointer cast
2009 if (SubExpr->getType()->isPointerType())
2010 return FindExpressionBaseAddress(SubExpr);
2011
2012 // We assume that we have an arithmetic expression here;
2013 // if we don't, we'll figure it out later
2014 return 0;
2015 }
2016 }
2017}
2018
Anders Carlssone8bd9f22008-11-22 21:04:56 +00002019bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002020 switch (Init->getStmtClass()) {
2021 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002022 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002023 return true;
2024 case Expr::ParenExprClass: {
2025 const ParenExpr* PE = cast<ParenExpr>(Init);
2026 return CheckArithmeticConstantExpression(PE->getSubExpr());
2027 }
2028 case Expr::FloatingLiteralClass:
2029 case Expr::IntegerLiteralClass:
2030 case Expr::CharacterLiteralClass:
2031 case Expr::ImaginaryLiteralClass:
2032 case Expr::TypesCompatibleExprClass:
2033 case Expr::CXXBoolLiteralExprClass:
2034 return false;
Douglas Gregor65fedaf2008-11-14 16:09:21 +00002035 case Expr::CallExprClass:
2036 case Expr::CXXOperatorCallExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002037 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002038
2039 // Allow any constant foldable calls to builtins.
2040 if (CE->isBuiltinCall() && CE->isEvaluatable(Context))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002041 return false;
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002042
Steve Narofffc08f5e2008-10-27 11:34:16 +00002043 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002044 return true;
2045 }
Douglas Gregor566782a2009-01-06 05:10:23 +00002046 case Expr::DeclRefExprClass:
2047 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002048 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2049 if (isa<EnumConstantDecl>(D))
2050 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002051 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002052 return true;
2053 }
2054 case Expr::CompoundLiteralExprClass:
2055 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2056 // but vectors are allowed to be magic.
2057 if (Init->getType()->isVectorType())
2058 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002059 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002060 return true;
2061 case Expr::UnaryOperatorClass: {
2062 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2063
2064 switch (Exp->getOpcode()) {
2065 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2066 // See C99 6.6p3.
2067 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002068 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002069 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002070 case UnaryOperator::OffsetOf:
Eli Friedman02c22ce2008-05-20 13:48:25 +00002071 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2072 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002073 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002074 return true;
2075 case UnaryOperator::Extension:
2076 case UnaryOperator::LNot:
2077 case UnaryOperator::Plus:
2078 case UnaryOperator::Minus:
2079 case UnaryOperator::Not:
2080 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2081 }
2082 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002083 case Expr::SizeOfAlignOfExprClass: {
2084 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002085 // Special check for void types, which are allowed as an extension
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002086 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedman02c22ce2008-05-20 13:48:25 +00002087 return false;
2088 // alignof always evaluates to a constant.
2089 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002090 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002091 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002092 return true;
2093 }
2094 return false;
2095 }
2096 case Expr::BinaryOperatorClass: {
2097 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2098
2099 if (Exp->getLHS()->getType()->isArithmeticType() &&
2100 Exp->getRHS()->getType()->isArithmeticType()) {
2101 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2102 CheckArithmeticConstantExpression(Exp->getRHS());
2103 }
2104
Eli Friedman998dffb2008-06-09 05:05:07 +00002105 if (Exp->getLHS()->getType()->isPointerType() &&
2106 Exp->getRHS()->getType()->isPointerType()) {
2107 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2108 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2109
2110 // Only allow a null (constant integer) base; we could
2111 // allow some additional cases if necessary, but this
2112 // is sufficient to cover offsetof-like constructs.
2113 if (!LHSBase && !RHSBase) {
2114 return CheckAddressConstantExpression(Exp->getLHS()) ||
2115 CheckAddressConstantExpression(Exp->getRHS());
2116 }
2117 }
2118
Steve Narofffc08f5e2008-10-27 11:34:16 +00002119 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002120 return true;
2121 }
2122 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00002123 case Expr::CStyleCastExprClass: {
Nuno Lopes7dd54222009-02-02 22:57:15 +00002124 const CastExpr *CE = cast<CastExpr>(Init);
2125 const Expr *SubExpr = CE->getSubExpr();
2126
Eli Friedmand662caa2008-09-01 22:08:17 +00002127 if (SubExpr->getType()->isArithmeticType())
2128 return CheckArithmeticConstantExpression(SubExpr);
2129
Eli Friedman266df142008-09-02 09:37:00 +00002130 if (SubExpr->getType()->isPointerType()) {
2131 const Expr* Base = FindExpressionBaseAddress(SubExpr);
Nuno Lopes7dd54222009-02-02 22:57:15 +00002132 if (Base) {
2133 // the cast is only valid if done to a wide enough type
2134 if (Context.getTypeSize(CE->getType()) >=
2135 Context.getTypeSize(SubExpr->getType()))
2136 return false;
2137 } else {
2138 // If the pointer has a null base, this is an offsetof-like construct
2139 return CheckAddressConstantExpression(SubExpr);
2140 }
Eli Friedman266df142008-09-02 09:37:00 +00002141 }
2142
Steve Narofffc08f5e2008-10-27 11:34:16 +00002143 InitializerElementNotConstant(Init);
Eli Friedmand662caa2008-09-01 22:08:17 +00002144 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002145 }
2146 case Expr::ConditionalOperatorClass: {
2147 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner94d45412008-10-06 05:42:39 +00002148
2149 // If GNU extensions are disabled, we require all operands to be arithmetic
2150 // constant expressions.
2151 if (getLangOptions().NoExtensions) {
2152 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2153 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2154 CheckArithmeticConstantExpression(Exp->getRHS());
2155 }
2156
2157 // Otherwise, we have to emulate some of the behavior of fold here.
2158 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2159 // because it can constant fold things away. To retain compatibility with
2160 // GCC code, we see if we can fold the condition to a constant (which we
2161 // should always be able to do in theory). If so, we only require the
2162 // specified arm of the conditional to be a constant. This is a horrible
2163 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson8c3de802008-12-19 20:58:05 +00002164 Expr::EvalResult EvalResult;
2165 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2166 EvalResult.HasSideEffects) {
Chris Lattneref069662008-11-16 21:24:15 +00002167 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattner94d45412008-10-06 05:42:39 +00002168 // won't be able to either. Use it to emit the diagnostic though.
2169 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattneref069662008-11-16 21:24:15 +00002170 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattner94d45412008-10-06 05:42:39 +00002171 return Res;
2172 }
2173
2174 // Verify that the side following the condition is also a constant.
2175 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson8c3de802008-12-19 20:58:05 +00002176 if (EvalResult.Val.getInt() == 0)
Chris Lattner94d45412008-10-06 05:42:39 +00002177 std::swap(TrueSide, FalseSide);
2178
2179 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002180 return true;
Chris Lattner94d45412008-10-06 05:42:39 +00002181
2182 // Okay, the evaluated side evaluates to a constant, so we accept this.
2183 // Check to see if the other side is obviously not a constant. If so,
2184 // emit a warning that this is a GNU extension.
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002185 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner94d45412008-10-06 05:42:39 +00002186 Diag(Init->getExprLoc(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00002187 diag::ext_typecheck_expression_not_constant_but_accepted)
2188 << FalseSide->getSourceRange();
Chris Lattner94d45412008-10-06 05:42:39 +00002189 return false;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002190 }
2191 }
2192}
2193
2194bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00002195 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init))
2196 Init = DIE->getInit();
2197
Nuno Lopese7280452008-07-07 16:46:50 +00002198 Init = Init->IgnoreParens();
2199
Nate Begemand6d2f772009-01-18 03:20:47 +00002200 if (Init->isEvaluatable(Context))
Anders Carlssonf6791c62008-12-05 05:09:56 +00002201 return false;
2202
Eli Friedman02c22ce2008-05-20 13:48:25 +00002203 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2204 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2205 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2206
Nuno Lopese7280452008-07-07 16:46:50 +00002207 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2208 return CheckForConstantInitializer(e->getInitializer(), DclT);
2209
Douglas Gregorc9e012a2009-01-29 17:44:32 +00002210 if (isa<ImplicitValueInitExpr>(Init)) {
2211 // FIXME: In C++, check for non-POD types.
2212 return false;
2213 }
2214
Eli Friedman02c22ce2008-05-20 13:48:25 +00002215 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2216 unsigned numInits = Exp->getNumInits();
2217 for (unsigned i = 0; i < numInits; i++) {
2218 // FIXME: Need to get the type of the declaration for C++,
2219 // because it could be a reference?
Douglas Gregorf603b472009-01-28 21:54:33 +00002220
Eli Friedman02c22ce2008-05-20 13:48:25 +00002221 if (CheckForConstantInitializer(Exp->getInit(i),
2222 Exp->getInit(i)->getType()))
2223 return true;
2224 }
2225 return false;
2226 }
2227
Anders Carlssonf6791c62008-12-05 05:09:56 +00002228 // FIXME: We can probably remove some of this code below, now that
2229 // Expr::Evaluate is doing the heavy lifting for scalars.
2230
Eli Friedman02c22ce2008-05-20 13:48:25 +00002231 if (Init->isNullPointerConstant(Context))
2232 return false;
2233 if (Init->getType()->isArithmeticType()) {
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00002234 QualType InitTy = Context.getCanonicalType(Init->getType())
2235 .getUnqualifiedType();
Eli Friedman25086f02008-05-30 18:14:48 +00002236 if (InitTy == Context.BoolTy) {
2237 // Special handling for pointers implicitly cast to bool;
2238 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2239 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2240 Expr* SubE = ICE->getSubExpr();
2241 if (SubE->getType()->isPointerType() ||
2242 SubE->getType()->isArrayType() ||
2243 SubE->getType()->isFunctionType()) {
2244 return CheckAddressConstantExpression(Init);
2245 }
2246 }
2247 } else if (InitTy->isIntegralType()) {
2248 Expr* SubE = 0;
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00002249 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedman25086f02008-05-30 18:14:48 +00002250 SubE = CE->getSubExpr();
2251 // Special check for pointer cast to int; we allow as an extension
2252 // an address constant cast to an integer if the integer
2253 // is of an appropriate width (this sort of code is apparently used
2254 // in some places).
2255 // FIXME: Add pedwarn?
2256 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2257 if (SubE && (SubE->getType()->isPointerType() ||
2258 SubE->getType()->isArrayType() ||
2259 SubE->getType()->isFunctionType())) {
2260 unsigned IntWidth = Context.getTypeSize(Init->getType());
2261 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2262 if (IntWidth >= PointerWidth)
2263 return CheckAddressConstantExpression(Init);
2264 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002265 }
2266
2267 return CheckArithmeticConstantExpression(Init);
2268 }
2269
2270 if (Init->getType()->isPointerType())
2271 return CheckAddressConstantExpression(Init);
2272
Eli Friedman25086f02008-05-30 18:14:48 +00002273 // An array type at the top level that isn't an init-list must
2274 // be a string literal
Eli Friedman02c22ce2008-05-20 13:48:25 +00002275 if (Init->getType()->isArrayType())
2276 return false;
2277
Nuno Lopes1dc26762008-09-01 18:42:41 +00002278 if (Init->getType()->isFunctionType())
2279 return false;
2280
Steve Naroffdff3fb22008-10-02 17:12:56 +00002281 // Allow block exprs at top level.
2282 if (Init->getType()->isBlockPointerType())
2283 return false;
Nuno Lopes8260d5d2009-01-15 16:44:45 +00002284
2285 // GCC cast to union extension
2286 // note: the validity of the cast expr is checked by CheckCastTypes()
2287 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2288 QualType T = C->getType();
2289 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2290 }
2291
Steve Narofffc08f5e2008-10-27 11:34:16 +00002292 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002293 return true;
Steve Narofff0b23542008-01-10 22:15:12 +00002294}
2295
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002296void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002297 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2298}
2299
2300/// AddInitializerToDecl - Adds the initializer Init to the
2301/// declaration dcl. If DirectInit is true, this is C++ direct
2302/// initialization rather than copy initialization.
2303void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002304 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002305 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002306 assert(Init && "missing initializer");
Steve Naroff6a0e2092007-09-12 14:07:44 +00002307
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002308 // If there is no declaration, there was an error parsing it. Just ignore
2309 // the initializer.
2310 if (RealDecl == 0) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00002311 Init->Destroy(Context);
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002312 return;
2313 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002314
Steve Naroff420d0f52007-09-12 20:13:48 +00002315 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2316 if (!VDecl) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002317 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
Steve Naroff420d0f52007-09-12 20:13:48 +00002318 RealDecl->setInvalidDecl();
2319 return;
2320 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002321 // Get the decls type and save a reference for later, since
Steve Narofff0b23542008-01-10 22:15:12 +00002322 // CheckInitializerTypes may change it.
Steve Naroff420d0f52007-09-12 20:13:48 +00002323 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002324 if (VDecl->isBlockVarDecl()) {
2325 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002326 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff420d0f52007-09-12 20:13:48 +00002327 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002328 VDecl->setInvalidDecl();
2329 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002330 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002331 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002332 VDecl->setInvalidDecl();
Anders Carlssonea7140a2008-08-22 05:00:02 +00002333
2334 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2335 if (!getLangOptions().CPlusPlus) {
2336 if (SC == VarDecl::Static) // C99 6.7.8p4.
2337 CheckForConstantInitializer(Init, DclT);
2338 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002339 }
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002340 } else if (VDecl->isFileVarDecl()) {
2341 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff420d0f52007-09-12 20:13:48 +00002342 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002343 if (!VDecl->isInvalidDecl())
Douglas Gregor6428e762008-11-05 15:29:30 +00002344 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002345 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002346 VDecl->setInvalidDecl();
Steve Narofff0b23542008-01-10 22:15:12 +00002347
Anders Carlssonea7140a2008-08-22 05:00:02 +00002348 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2349 if (!getLangOptions().CPlusPlus) {
2350 // C99 6.7.8p4. All file scoped initializers need to be constant.
2351 CheckForConstantInitializer(Init, DclT);
2352 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002353 }
2354 // If the type changed, it means we had an incomplete type that was
2355 // completed by the initializer. For example:
2356 // int ary[] = { 1, 3, 5 };
2357 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb62f06b62007-11-29 19:09:19 +00002358 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002359 VDecl->setType(DclT);
Christopher Lamb62f06b62007-11-29 19:09:19 +00002360 Init->setType(DclT);
2361 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002362
2363 // Attach the initializer to the decl.
Steve Naroff420d0f52007-09-12 20:13:48 +00002364 VDecl->setInit(Init);
Steve Naroff6a0e2092007-09-12 14:07:44 +00002365 return;
2366}
2367
Douglas Gregor81c29152008-10-29 00:13:59 +00002368void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2369 Decl *RealDecl = static_cast<Decl *>(dcl);
2370
Argiris Kirtzidis9c0e9942008-11-07 13:01:22 +00002371 // If there is no declaration, there was an error parsing it. Just ignore it.
2372 if (RealDecl == 0)
2373 return;
2374
Douglas Gregor81c29152008-10-29 00:13:59 +00002375 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2376 QualType Type = Var->getType();
2377 // C++ [dcl.init.ref]p3:
2378 // The initializer can be omitted for a reference only in a
2379 // parameter declaration (8.3.5), in the declaration of a
2380 // function return type, in the declaration of a class member
2381 // within its class declaration (9.2), and where the extern
2382 // specifier is explicitly used.
Douglas Gregorb9213832008-12-15 21:24:18 +00002383 if (Type->isReferenceType() &&
2384 Var->getStorageClass() != VarDecl::Extern &&
2385 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner77d52da2008-11-20 06:06:08 +00002386 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattner271d4c22008-11-24 05:29:24 +00002387 << Var->getDeclName()
2388 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor5870a952008-11-03 20:45:27 +00002389 Var->setInvalidDecl();
2390 return;
2391 }
2392
2393 // C++ [dcl.init]p9:
2394 //
2395 // If no initializer is specified for an object, and the object
2396 // is of (possibly cv-qualified) non-POD class type (or array
2397 // thereof), the object shall be default-initialized; if the
2398 // object is of const-qualified type, the underlying class type
2399 // shall have a user-declared default constructor.
2400 if (getLangOptions().CPlusPlus) {
2401 QualType InitType = Type;
2402 if (const ArrayType *Array = Context.getAsArrayType(Type))
2403 InitType = Array->getElementType();
Douglas Gregorb9213832008-12-15 21:24:18 +00002404 if (Var->getStorageClass() != VarDecl::Extern &&
2405 Var->getStorageClass() != VarDecl::PrivateExtern &&
2406 InitType->isRecordType()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002407 const CXXConstructorDecl *Constructor
2408 = PerformInitializationByConstructor(InitType, 0, 0,
2409 Var->getLocation(),
2410 SourceRange(Var->getLocation(),
2411 Var->getLocation()),
Chris Lattner271d4c22008-11-24 05:29:24 +00002412 Var->getDeclName(),
Douglas Gregor6428e762008-11-05 15:29:30 +00002413 IK_Default);
Douglas Gregor5870a952008-11-03 20:45:27 +00002414 if (!Constructor)
2415 Var->setInvalidDecl();
2416 }
2417 }
Douglas Gregor81c29152008-10-29 00:13:59 +00002418
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002419#if 0
2420 // FIXME: Temporarily disabled because we are not properly parsing
2421 // linkage specifications on declarations, e.g.,
2422 //
2423 // extern "C" const CGPoint CGPointerZero;
2424 //
Douglas Gregor81c29152008-10-29 00:13:59 +00002425 // C++ [dcl.init]p9:
2426 //
2427 // If no initializer is specified for an object, and the
2428 // object is of (possibly cv-qualified) non-POD class type (or
2429 // array thereof), the object shall be default-initialized; if
2430 // the object is of const-qualified type, the underlying class
2431 // type shall have a user-declared default
2432 // constructor. Otherwise, if no initializer is specified for
2433 // an object, the object and its subobjects, if any, have an
2434 // indeterminate initial value; if the object or any of its
2435 // subobjects are of const-qualified type, the program is
2436 // ill-formed.
2437 //
2438 // This isn't technically an error in C, so we don't diagnose it.
2439 //
2440 // FIXME: Actually perform the POD/user-defined default
2441 // constructor check.
2442 if (getLangOptions().CPlusPlus &&
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002443 Context.getCanonicalType(Type).isConstQualified() &&
2444 Var->getStorageClass() != VarDecl::Extern)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002445 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2446 << Var->getName()
2447 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002448#endif
Douglas Gregor81c29152008-10-29 00:13:59 +00002449 }
2450}
2451
Chris Lattner4b009652007-07-25 00:24:17 +00002452/// The declarators are chained together backwards, reverse the list.
2453Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2454 // Often we have single declarators, handle them quickly.
Steve Naroff2591e1b2007-09-13 23:52:58 +00002455 Decl *GroupDecl = static_cast<Decl*>(group);
2456 if (GroupDecl == 0)
Steve Naroff6a0e2092007-09-12 14:07:44 +00002457 return 0;
Steve Naroff2591e1b2007-09-13 23:52:58 +00002458
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002459 Decl *Group = dyn_cast<Decl>(GroupDecl);
2460 Decl *NewGroup = 0;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002461 if (Group->getNextDeclarator() == 0)
Chris Lattner4b009652007-07-25 00:24:17 +00002462 NewGroup = Group;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002463 else { // reverse the list.
2464 while (Group) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002465 Decl *Next = Group->getNextDeclarator();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002466 Group->setNextDeclarator(NewGroup);
2467 NewGroup = Group;
2468 Group = Next;
2469 }
2470 }
2471 // Perform semantic analysis that depends on having fully processed both
2472 // the declarator and initializer.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002473 for (Decl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroff6a0e2092007-09-12 14:07:44 +00002474 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2475 if (!IDecl)
2476 continue;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002477 QualType T = IDecl->getType();
2478
Anders Carlsson68adbd12008-12-07 00:20:55 +00002479 if (T->isVariableArrayType()) {
Anders Carlssonef2f7df2008-12-20 21:51:53 +00002480 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002481
2482 // FIXME: This won't give the correct result for
2483 // int a[10][n];
2484 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002485 if (IDecl->isFileVarDecl()) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002486 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2487 SizeRange;
2488
Eli Friedman8ff07782008-02-15 18:16:39 +00002489 IDecl->setInvalidDecl();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002490 } else {
2491 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2492 // static storage duration, it shall not have a variable length array.
2493 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002494 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2495 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002496 IDecl->setInvalidDecl();
2497 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002498 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2499 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002500 IDecl->setInvalidDecl();
2501 }
2502 }
2503 } else if (T->isVariablyModifiedType()) {
2504 if (IDecl->isFileVarDecl()) {
2505 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2506 IDecl->setInvalidDecl();
2507 } else {
2508 if (IDecl->getStorageClass() == VarDecl::Extern) {
2509 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2510 IDecl->setInvalidDecl();
2511 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002512 }
2513 }
Anders Carlsson68adbd12008-12-07 00:20:55 +00002514
Steve Naroff6a0e2092007-09-12 14:07:44 +00002515 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2516 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002517 if (IDecl->isBlockVarDecl() &&
2518 IDecl->getStorageClass() != VarDecl::Extern) {
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002519 if (!IDecl->isInvalidDecl() &&
2520 DiagnoseIncompleteType(IDecl->getLocation(), T,
2521 diag::err_typecheck_decl_incomplete_type))
Steve Naroff6a0e2092007-09-12 14:07:44 +00002522 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002523 }
2524 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2525 // object that has file scope without an initializer, and without a
2526 // storage-class specifier or with the storage-class specifier "static",
2527 // constitutes a tentative definition. Note: A tentative definition with
2528 // external linkage is valid (C99 6.2.2p5).
Steve Naroffb5e78152008-08-08 17:50:35 +00002529 if (isTentativeDefinition(IDecl)) {
Eli Friedmane0079792008-02-15 12:53:51 +00002530 if (T->isIncompleteArrayType()) {
Steve Naroff60685462008-01-18 20:40:52 +00002531 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2532 // array to be completed. Don't issue a diagnostic.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002533 } else if (!IDecl->isInvalidDecl() &&
2534 DiagnoseIncompleteType(IDecl->getLocation(), T,
2535 diag::err_typecheck_decl_incomplete_type))
Steve Naroff60685462008-01-18 20:40:52 +00002536 // C99 6.9.2p3: If the declaration of an identifier for an object is
2537 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2538 // declared type shall not be an incomplete type.
Steve Naroff6a0e2092007-09-12 14:07:44 +00002539 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002540 }
Steve Naroffb5e78152008-08-08 17:50:35 +00002541 if (IDecl->isFileVarDecl())
2542 CheckForFileScopedRedefinitions(S, IDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00002543 }
2544 return NewGroup;
2545}
Steve Naroff91b03f72007-08-28 03:03:08 +00002546
Chris Lattner3e254fb2008-04-08 04:40:51 +00002547/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2548/// to introduce parameters into function prototype scope.
2549Sema::DeclTy *
2550Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner5e77ade2008-06-26 06:49:43 +00002551 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002552
Chris Lattner3e254fb2008-04-08 04:40:51 +00002553 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002554 VarDecl::StorageClass StorageClass = VarDecl::None;
2555 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2556 StorageClass = VarDecl::Register;
2557 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002558 Diag(DS.getStorageClassSpecLoc(),
2559 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002560 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002561 }
2562 if (DS.isThreadSpecified()) {
2563 Diag(DS.getThreadSpecLoc(),
2564 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002565 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002566 }
2567
Douglas Gregor2b9422f2008-05-07 04:49:29 +00002568 // Check that there are no default arguments inside the type of this
2569 // parameter (C++ only).
2570 if (getLangOptions().CPlusPlus)
2571 CheckExtraCXXDefaultArguments(D);
2572
Chris Lattner3e254fb2008-04-08 04:40:51 +00002573 // In this context, we *do not* check D.getInvalidType(). If the declarator
2574 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2575 // though it will not reflect the user specified type.
2576 QualType parmDeclType = GetTypeForDeclarator(D, S);
2577
2578 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2579
Chris Lattner4b009652007-07-25 00:24:17 +00002580 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2581 // Can this happen for params? We already checked that they don't conflict
2582 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002583 IdentifierInfo *II = D.getIdentifier();
Chris Lattner310dea32009-01-21 02:38:50 +00002584 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00002585 if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) {
Chris Lattner310dea32009-01-21 02:38:50 +00002586 if (PrevDecl->isTemplateParameter()) {
2587 // Maybe we will complain about the shadowed template parameter.
2588 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2589 // Just pretend that we didn't see the previous declaration.
2590 PrevDecl = 0;
2591 } else if (S->isDeclScope(PrevDecl)) {
2592 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002593
Chris Lattner310dea32009-01-21 02:38:50 +00002594 // Recover by removing the name
2595 II = 0;
2596 D.SetIdentifier(0, D.getIdentifierLoc());
2597 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002598 }
Chris Lattner4b009652007-07-25 00:24:17 +00002599 }
Steve Naroff94cd93f2007-08-07 22:44:21 +00002600
2601 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2602 // Doing the promotion here has a win and a loss. The win is the type for
2603 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2604 // code generator). The loss is the orginal type isn't preserved. For example:
2605 //
2606 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2607 // int blockvardecl[5];
2608 // sizeof(parmvardecl); // size == 4
2609 // sizeof(blockvardecl); // size == 20
2610 // }
2611 //
2612 // For expressions, all implicit conversions are captured using the
2613 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2614 //
2615 // FIXME: If a source translation tool needs to see the original type, then
2616 // we need to consider storing both types (in ParmVarDecl)...
2617 //
Chris Lattner19eb97e2008-04-02 05:18:44 +00002618 if (parmDeclType->isArrayType()) {
Chris Lattnerc08564a2008-01-02 22:50:48 +00002619 // int x[restrict 4] -> int *restrict
Chris Lattner19eb97e2008-04-02 05:18:44 +00002620 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattnerc08564a2008-01-02 22:50:48 +00002621 } else if (parmDeclType->isFunctionType())
Steve Naroff94cd93f2007-08-07 22:44:21 +00002622 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor8acb7272008-12-11 16:49:14 +00002623
Chris Lattner3e254fb2008-04-08 04:40:51 +00002624 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2625 D.getIdentifierLoc(), II,
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002626 parmDeclType, StorageClass,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002627 0);
Anders Carlsson3f70c542008-02-15 07:04:12 +00002628
Chris Lattner3e254fb2008-04-08 04:40:51 +00002629 if (D.getInvalidType())
Steve Naroffcae537d2007-08-28 18:45:29 +00002630 New->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00002631
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002632 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2633 if (D.getCXXScopeSpec().isSet()) {
2634 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2635 << D.getCXXScopeSpec().getRange();
2636 New->setInvalidDecl();
2637 }
2638
Douglas Gregor8acb7272008-12-11 16:49:14 +00002639 // Add the parameter declaration into this scope.
2640 S->AddDecl(New);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002641 if (II)
Douglas Gregor8acb7272008-12-11 16:49:14 +00002642 IdResolver.AddDecl(New);
Nate Begeman9f3c4bb2008-02-17 21:20:31 +00002643
Chris Lattner9b384ca2008-06-29 00:02:00 +00002644 ProcessDeclAttributes(New, D);
Chris Lattner4b009652007-07-25 00:24:17 +00002645 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002646
Chris Lattner4b009652007-07-25 00:24:17 +00002647}
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00002648
Douglas Gregor65075ec2009-01-23 16:23:13 +00002649void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D) {
Chris Lattner4b009652007-07-25 00:24:17 +00002650 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2651 "Not a function declarator!");
2652 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002653
Chris Lattner4b009652007-07-25 00:24:17 +00002654 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2655 // for a K&R function.
2656 if (!FTI.hasPrototype) {
2657 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002658 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002659 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2660 << FTI.ArgInfo[i].Ident;
Chris Lattner4b009652007-07-25 00:24:17 +00002661 // Implicitly declare the argument as type 'int' for lack of a better
2662 // type.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002663 DeclSpec DS;
2664 const char* PrevSpec; // unused
2665 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2666 PrevSpec);
2667 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2668 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
Douglas Gregor65075ec2009-01-23 16:23:13 +00002669 FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
Chris Lattner4b009652007-07-25 00:24:17 +00002670 }
2671 }
Douglas Gregor65075ec2009-01-23 16:23:13 +00002672 }
2673}
2674
2675Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
2676 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
2677 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2678 "Not a function declarator!");
2679 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2680
2681 if (FTI.hasPrototype) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002682 // FIXME: Diagnose arguments without names in C.
Chris Lattner4b009652007-07-25 00:24:17 +00002683 }
2684
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002685 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroff1d5bd642008-01-14 20:51:29 +00002686
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002687 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002688 ActOnDeclarator(ParentScope, D, 0,
2689 /*IsFunctionDefinition=*/true));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002690}
2691
2692Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2693 Decl *decl = static_cast<Decl*>(D);
Chris Lattner2d2216b2008-02-16 01:20:36 +00002694 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregor56da7862008-10-29 15:10:40 +00002695
2696 // See if this is a redefinition.
2697 const FunctionDecl *Definition;
2698 if (FD->getBody(Definition)) {
Chris Lattnerb1753422008-11-23 21:45:46 +00002699 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +00002700 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregor56da7862008-10-29 15:10:40 +00002701 }
2702
Douglas Gregor8acb7272008-12-11 16:49:14 +00002703 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002704
Chris Lattner3e254fb2008-04-08 04:40:51 +00002705 // Check the validity of our function parameters
2706 CheckParmsForFunctionDef(FD);
2707
2708 // Introduce our parameters into the function scope
2709 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2710 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregord394a272009-01-09 18:51:29 +00002711 Param->setOwningFunction(FD);
2712
Chris Lattner3e254fb2008-04-08 04:40:51 +00002713 // If this has an identifier, add it to the scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002714 if (Param->getIdentifier())
2715 PushOnScopeChains(Param, FnBodyScope);
Chris Lattner4b009652007-07-25 00:24:17 +00002716 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002717
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002718 // Checking attributes of current function definition
2719 // dllimport attribute.
2720 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2721 // dllimport attribute cannot be applied to definition.
2722 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2723 Diag(FD->getLocation(),
2724 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2725 << "dllimport";
2726 FD->setInvalidDecl();
2727 return FD;
2728 } else {
2729 // If a symbol previously declared dllimport is later defined, the
2730 // attribute is ignored in subsequent references, and a warning is
2731 // emitted.
2732 Diag(FD->getLocation(),
2733 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2734 << FD->getNameAsCString() << "dllimport";
2735 }
2736 }
Chris Lattner4b009652007-07-25 00:24:17 +00002737 return FD;
2738}
2739
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002740Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroff99ee4302007-11-11 23:20:51 +00002741 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002742 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff3ac43f92008-07-25 17:57:26 +00002743 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002744 FD->setBody(Body);
Argiris Kirtzidis95256e62008-06-28 06:07:14 +00002745 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff3ac43f92008-07-25 17:57:26 +00002746 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Steve Naroff99ee4302007-11-11 23:20:51 +00002747 MD->setBody((Stmt*)Body);
Ted Kremenek0c97e042009-02-07 01:47:29 +00002748 } else {
2749 Body->Destroy(Context);
Steve Naroff3ac43f92008-07-25 17:57:26 +00002750 return 0;
Ted Kremenek0c97e042009-02-07 01:47:29 +00002751 }
Chris Lattnerf3874bc2008-04-06 04:47:34 +00002752 PopDeclContext();
Chris Lattner4b009652007-07-25 00:24:17 +00002753 // Verify and clean out per-function state.
2754
2755 // Check goto/label use.
2756 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2757 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
2758 // Verify that we have no forward references left. If so, there was a goto
2759 // or address of a label taken, but no definition of it. Label fwd
2760 // definitions are indicated with a null substmt.
2761 if (I->second->getSubStmt() == 0) {
2762 LabelStmt *L = I->second;
2763 // Emit error.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002764 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Chris Lattner4b009652007-07-25 00:24:17 +00002765
2766 // At this point, we have gotos that use the bogus label. Stitch it into
2767 // the function body so that they aren't leaked and that the AST is well
2768 // formed.
Chris Lattner83343342008-01-25 00:01:10 +00002769 if (Body) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00002770#if 0
2771 // FIXME: Why do this? Having a 'push_back' in CompoundStmt is ugly,
2772 // and the AST is malformed anyway. We should just blow away 'L'.
2773 L->setSubStmt(new (Context) NullStmt(L->getIdentLoc()));
2774 cast<CompoundStmt>(Body)->push_back(L);
2775#else
2776 L->Destroy(Context);
2777#endif
Chris Lattner83343342008-01-25 00:01:10 +00002778 } else {
2779 // The whole function wasn't parsed correctly, just delete this.
Ted Kremenek0c97e042009-02-07 01:47:29 +00002780 L->Destroy(Context);
Chris Lattner83343342008-01-25 00:01:10 +00002781 }
Chris Lattner4b009652007-07-25 00:24:17 +00002782 }
2783 }
2784 LabelMap.clear();
2785
Steve Naroff99ee4302007-11-11 23:20:51 +00002786 return D;
Fariborz Jahaniane6f59f12007-11-10 16:31:34 +00002787}
2788
Chris Lattner4b009652007-07-25 00:24:17 +00002789/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2790/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002791NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2792 IdentifierInfo &II, Scope *S) {
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002793 // Extension in C99. Legal in C90, but warn about it.
2794 if (getLangOptions().C99)
Chris Lattner65cae292008-11-19 08:23:25 +00002795 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002796 else
Chris Lattner65cae292008-11-19 08:23:25 +00002797 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Chris Lattner4b009652007-07-25 00:24:17 +00002798
2799 // FIXME: handle stuff like:
2800 // void foo() { extern float X(); }
2801 // void bar() { X(); } <-- implicit decl for X in another scope.
2802
2803 // Set a Declarator for the implicit definition: int foo();
2804 const char *Dummy;
2805 DeclSpec DS;
2806 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
2807 Error = Error; // Silence warning.
2808 assert(!Error && "Error setting up implicit decl!");
2809 Declarator D(DS, Declarator::BlockContext);
Sebastian Redl0c986032009-02-09 18:23:29 +00002810 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc, D),
2811 SourceLocation());
Chris Lattner4b009652007-07-25 00:24:17 +00002812 D.SetIdentifier(&II, Loc);
Sebastian Redl0c986032009-02-09 18:23:29 +00002813
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00002814 // Insert this function into translation-unit scope.
2815
2816 DeclContext *PrevDC = CurContext;
2817 CurContext = Context.getTranslationUnitDecl();
2818
Steve Naroff9104f3c2008-04-04 14:32:09 +00002819 FunctionDecl *FD =
Daniel Dunbar72eaf8a2008-08-05 16:28:08 +00002820 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroff9104f3c2008-04-04 14:32:09 +00002821 FD->setImplicit();
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00002822
2823 CurContext = PrevDC;
2824
Steve Naroff9104f3c2008-04-04 14:32:09 +00002825 return FD;
Chris Lattner4b009652007-07-25 00:24:17 +00002826}
2827
2828
Chris Lattner82bb4792007-11-14 06:34:38 +00002829TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002830 Decl *LastDeclarator) {
Chris Lattner4b009652007-07-25 00:24:17 +00002831 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00002832 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Chris Lattner4b009652007-07-25 00:24:17 +00002833
2834 // Scope manipulation handled by caller.
Chris Lattnereee57c02008-04-04 06:12:32 +00002835 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
2836 D.getIdentifierLoc(),
Chris Lattnere4650482008-03-15 06:12:44 +00002837 D.getIdentifier(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002838 T);
2839 NewTD->setNextDeclarator(LastDeclarator);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00002840 if (D.getInvalidType())
2841 NewTD->setInvalidDecl();
2842 return NewTD;
Chris Lattner4b009652007-07-25 00:24:17 +00002843}
2844
Steve Naroff0acc9c92007-09-15 18:49:24 +00002845/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Chris Lattner4b009652007-07-25 00:24:17 +00002846/// former case, Name will be non-null. In the later case, Name will be null.
Douglas Gregor98b27542009-01-17 00:42:38 +00002847/// TagSpec indicates what kind of tag this is. TK indicates whether this is a
Chris Lattner4b009652007-07-25 00:24:17 +00002848/// reference/declaration/definition of a tag.
Douglas Gregor98b27542009-01-17 00:42:38 +00002849Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagKind TK,
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +00002850 SourceLocation KWLoc, const CXXScopeSpec &SS,
2851 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregord406b032009-02-06 22:42:48 +00002852 AttributeList *Attr) {
Douglas Gregorae644892008-12-15 16:32:14 +00002853 // If this is not a definition, it must have a name.
Chris Lattner4b009652007-07-25 00:24:17 +00002854 assert((Name != 0 || TK == TK_Definition) &&
2855 "Nameless record must be a definition!");
Douglas Gregor279272e2009-02-04 19:02:06 +00002856
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002857 TagDecl::TagKind Kind;
Douglas Gregor98b27542009-01-17 00:42:38 +00002858 switch (TagSpec) {
Chris Lattner4b009652007-07-25 00:24:17 +00002859 default: assert(0 && "Unknown tag type!");
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002860 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
2861 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
2862 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
2863 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Chris Lattner4b009652007-07-25 00:24:17 +00002864 }
2865
Douglas Gregorb748fc52009-01-12 22:49:06 +00002866 DeclContext *SearchDC = CurContext;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002867 DeclContext *DC = CurContext;
Douglas Gregor09be81b2009-02-04 17:27:36 +00002868 NamedDecl *PrevDecl = 0;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00002869
Douglas Gregor98b27542009-01-17 00:42:38 +00002870 bool Invalid = false;
2871
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002872 if (Name && SS.isNotEmpty()) {
2873 // We have a nested-name tag ('struct foo::bar').
2874
2875 // Check for invalid 'foo::'.
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002876 if (SS.isInvalid()) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002877 Name = 0;
2878 goto CreateNewDecl;
2879 }
2880
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002881 DC = static_cast<DeclContext*>(SS.getScopeRep());
Douglas Gregor2d87eb02009-02-03 00:34:39 +00002882 SearchDC = DC;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002883 // Look-up name inside 'foo::'.
Steve Naroffc349ee22009-01-29 00:07:50 +00002884 PrevDecl = dyn_cast_or_null<TagDecl>(
Douglas Gregor7a7be652009-02-03 19:21:40 +00002885 LookupQualifiedName(DC, Name, LookupTagName, true).getAsDecl());
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002886
2887 // A tag 'foo::bar' must already exist.
2888 if (PrevDecl == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002889 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002890 Name = 0;
2891 goto CreateNewDecl;
2892 }
Chris Lattner310dea32009-01-21 02:38:50 +00002893 } else if (Name) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002894 // If this is a named struct, check to see if there was a previous forward
2895 // declaration or definition.
Douglas Gregor7a7be652009-02-03 19:21:40 +00002896 // FIXME: We're looking into outer scopes here, even when we
2897 // shouldn't be. Doing so can result in ambiguities that we
2898 // shouldn't be diagnosing.
Douglas Gregor362c8952009-02-03 19:26:08 +00002899 LookupResult R = LookupName(S, Name, LookupTagName,
2900 /*RedeclarationOnly=*/(TK != TK_Reference));
Douglas Gregor7a7be652009-02-03 19:21:40 +00002901 if (R.isAmbiguous()) {
2902 DiagnoseAmbiguousLookup(R, Name, NameLoc);
2903 // FIXME: This is not best way to recover from case like:
2904 //
2905 // struct S s;
2906 //
2907 // causes needless err_ovl_no_viable_function_in_init latter.
2908 Name = 0;
2909 PrevDecl = 0;
2910 Invalid = true;
2911 }
2912 else
Douglas Gregor09be81b2009-02-04 17:27:36 +00002913 PrevDecl = R;
Douglas Gregordb568cf2009-01-08 20:45:30 +00002914
2915 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
2916 // FIXME: This makes sure that we ignore the contexts associated
2917 // with C structs, unions, and enums when looking for a matching
2918 // tag declaration or definition. See the similar lookup tweak
Douglas Gregor52ae30c2009-01-30 01:04:22 +00002919 // in Sema::LookupName; is there a better way to deal with this?
Douglas Gregorb748fc52009-01-12 22:49:06 +00002920 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
2921 SearchDC = SearchDC->getParent();
Douglas Gregordb568cf2009-01-08 20:45:30 +00002922 }
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002923 }
2924
Douglas Gregor2715a1f2008-12-08 18:40:42 +00002925 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00002926 // Maybe we will complain about the shadowed template parameter.
2927 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
2928 // Just pretend that we didn't see the previous declaration.
2929 PrevDecl = 0;
2930 }
2931
Ted Kremenekd4434152008-09-02 21:26:19 +00002932 if (PrevDecl) {
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002933 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002934 // If this is a use of a previous tag, or if the tag is already declared
2935 // in the same scope (so that the definition/declaration completes or
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002936 // rementions the tag), reuse the decl.
Douglas Gregorb748fc52009-01-12 22:49:06 +00002937 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002938 // Make sure that this wasn't declared as an enum and now used as a
2939 // struct or something similar.
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002940 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner65cae292008-11-19 08:23:25 +00002941 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00002942 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002943 // Recover by making this an anonymous redefinition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002944 Name = 0;
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002945 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00002946 Invalid = true;
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002947 } else {
Douglas Gregorae644892008-12-15 16:32:14 +00002948 // If this is a use, just return the declaration we found.
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002949
Douglas Gregorae644892008-12-15 16:32:14 +00002950 // FIXME: In the future, return a variant or some other clue
2951 // for the consumer of this Decl to know it doesn't own it.
2952 // For our current ASTs this shouldn't be a problem, but will
2953 // need to be changed with DeclGroups.
2954 if (TK == TK_Reference)
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002955 return PrevDecl;
Douglas Gregor279272e2009-02-04 19:02:06 +00002956
Douglas Gregorae644892008-12-15 16:32:14 +00002957 // Diagnose attempts to redefine a tag.
2958 if (TK == TK_Definition) {
2959 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
2960 Diag(NameLoc, diag::err_redefinition) << Name;
2961 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregor98b27542009-01-17 00:42:38 +00002962 // If this is a redefinition, recover by making this
2963 // struct be anonymous, which will make any later
2964 // references get the previous definition.
Douglas Gregorae644892008-12-15 16:32:14 +00002965 Name = 0;
2966 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00002967 Invalid = true;
2968 } else {
2969 // If the type is currently being defined, complain
2970 // about a nested redefinition.
2971 TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
2972 if (Tag->isBeingDefined()) {
2973 Diag(NameLoc, diag::err_nested_redefinition) << Name;
2974 Diag(PrevTagDecl->getLocation(),
2975 diag::note_previous_definition);
2976 Name = 0;
2977 PrevDecl = 0;
2978 Invalid = true;
2979 }
Douglas Gregorae644892008-12-15 16:32:14 +00002980 }
Douglas Gregor98b27542009-01-17 00:42:38 +00002981
Douglas Gregorae644892008-12-15 16:32:14 +00002982 // Okay, this is definition of a previously declared or referenced
2983 // tag PrevDecl. We're going to create a new Decl for it.
Douglas Gregor98b27542009-01-17 00:42:38 +00002984 }
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002985 }
Douglas Gregorae644892008-12-15 16:32:14 +00002986 // If we get here we have (another) forward declaration or we
2987 // have a definition. Just create a new decl.
2988 } else {
2989 // If we get here, this is a definition of a new tag type in a nested
2990 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
2991 // new decl/type. We set PrevDecl to NULL so that the entities
2992 // have distinct types.
2993 PrevDecl = 0;
Chris Lattner4b009652007-07-25 00:24:17 +00002994 }
Douglas Gregorae644892008-12-15 16:32:14 +00002995 // If we get here, we're going to create a new Decl. If PrevDecl
2996 // is non-NULL, it's a definition of the tag declared by
2997 // PrevDecl. If it's NULL, we have a new definition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002998 } else {
Douglas Gregorb31f2942009-01-28 17:15:10 +00002999 // PrevDecl is a namespace, template, or anything else
3000 // that lives in the IDNS_Tag identifier namespace.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003001 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremenek40e70e72008-09-03 18:03:35 +00003002 // The tag name clashes with a namespace name, issue an error and
3003 // recover by making this tag be anonymous.
Chris Lattner65cae292008-11-19 08:23:25 +00003004 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00003005 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003006 Name = 0;
Douglas Gregorae644892008-12-15 16:32:14 +00003007 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00003008 Invalid = true;
Douglas Gregorae644892008-12-15 16:32:14 +00003009 } else {
3010 // The existing declaration isn't relevant to us; we're in a
3011 // new scope, so clear out the previous declaration.
3012 PrevDecl = 0;
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003013 }
Chris Lattner4b009652007-07-25 00:24:17 +00003014 }
Douglas Gregorcab994d2009-01-09 22:42:13 +00003015 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
3016 (Kind != TagDecl::TK_enum)) {
3017 // C++ [basic.scope.pdecl]p5:
3018 // -- for an elaborated-type-specifier of the form
3019 //
3020 // class-key identifier
3021 //
3022 // if the elaborated-type-specifier is used in the
3023 // decl-specifier-seq or parameter-declaration-clause of a
3024 // function defined in namespace scope, the identifier is
3025 // declared as a class-name in the namespace that contains
3026 // the declaration; otherwise, except as a friend
3027 // declaration, the identifier is declared in the smallest
3028 // non-class, non-function-prototype scope that contains the
3029 // declaration.
3030 //
3031 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
3032 // C structs and unions.
3033
3034 // Find the context where we'll be declaring the tag.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003035 // FIXME: We would like to maintain the current DeclContext as the
3036 // lexical context,
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003037 while (SearchDC->isRecord())
3038 SearchDC = SearchDC->getParent();
Douglas Gregorcab994d2009-01-09 22:42:13 +00003039
3040 // Find the scope where we'll be declaring the tag.
3041 while (S->isClassScope() ||
3042 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003043 ((S->getFlags() & Scope::DeclScope) == 0) ||
3044 (S->getEntity() &&
3045 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregorcab994d2009-01-09 22:42:13 +00003046 S = S->getParent();
Chris Lattner4b009652007-07-25 00:24:17 +00003047 }
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00003048
Chris Lattner9bb9abf2008-12-17 07:13:27 +00003049CreateNewDecl:
Chris Lattner4b009652007-07-25 00:24:17 +00003050
3051 // If there is an identifier, use the location of the identifier as the
3052 // location of the decl, otherwise use the location of the struct/union
3053 // keyword.
3054 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
3055
Douglas Gregorae644892008-12-15 16:32:14 +00003056 // Otherwise, create a new declaration. If there is a previous
3057 // declaration of the same entity, the two will be linked via
3058 // PrevDecl.
Chris Lattner4b009652007-07-25 00:24:17 +00003059 TagDecl *New;
Douglas Gregor723d3332009-01-07 00:43:41 +00003060
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003061 if (Kind == TagDecl::TK_enum) {
Chris Lattner4b009652007-07-25 00:24:17 +00003062 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3063 // enum X { A, B, C } D; D should chain to X.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003064 New = EnumDecl::Create(Context, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003065 cast_or_null<EnumDecl>(PrevDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003066 // If this is an undefined enum, warn.
3067 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003068 } else {
3069 // struct/union/class
3070
Chris Lattner4b009652007-07-25 00:24:17 +00003071 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3072 // struct X { int A; } D; D should chain to X.
Douglas Gregord406b032009-02-06 22:42:48 +00003073 if (getLangOptions().CPlusPlus)
Ted Kremenek770b11d2008-09-05 17:39:33 +00003074 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003075 New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003076 cast_or_null<CXXRecordDecl>(PrevDecl));
Douglas Gregord406b032009-02-06 22:42:48 +00003077 else
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003078 New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name,
Douglas Gregorae644892008-12-15 16:32:14 +00003079 cast_or_null<RecordDecl>(PrevDecl));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003080 }
Douglas Gregorae644892008-12-15 16:32:14 +00003081
3082 if (Kind != TagDecl::TK_enum) {
3083 // Handle #pragma pack: if the #pragma pack stack has non-default
3084 // alignment, make up a packed attribute for this decl. These
3085 // attributes are checked when the ASTContext lays out the
3086 // structure.
3087 //
3088 // It is important for implementing the correct semantics that this
3089 // happen here (in act on tag decl). The #pragma pack stack is
3090 // maintained as a result of parser callbacks which can occur at
3091 // many points during the parsing of a struct declaration (because
3092 // the #pragma tokens are effectively skipped over during the
3093 // parsing of the struct).
3094 if (unsigned Alignment = PackContext.getAlignment())
3095 New->addAttr(new PackedAttr(Alignment * 8));
3096 }
3097
Douglas Gregorb31f2942009-01-28 17:15:10 +00003098 if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
3099 // C++ [dcl.typedef]p3:
3100 // [...] Similarly, in a given scope, a class or enumeration
3101 // shall not be declared with the same name as a typedef-name
3102 // that is declared in that scope and refers to a type other
3103 // than the class or enumeration itself.
Douglas Gregor52ae30c2009-01-30 01:04:22 +00003104 LookupResult Lookup = LookupName(S, Name, LookupOrdinaryName, true);
Douglas Gregorb31f2942009-01-28 17:15:10 +00003105 TypedefDecl *PrevTypedef = 0;
3106 if (Lookup.getKind() == LookupResult::Found)
3107 PrevTypedef = dyn_cast<TypedefDecl>(Lookup.getAsDecl());
3108
3109 if (PrevTypedef && isDeclInScope(PrevTypedef, SearchDC, S) &&
3110 Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
3111 Context.getCanonicalType(Context.getTypeDeclType(New))) {
3112 Diag(Loc, diag::err_tag_definition_of_typedef)
3113 << Context.getTypeDeclType(New)
3114 << PrevTypedef->getUnderlyingType();
3115 Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
3116 Invalid = true;
3117 }
3118 }
3119
Douglas Gregor98b27542009-01-17 00:42:38 +00003120 if (Invalid)
3121 New->setInvalidDecl();
3122
Douglas Gregorae644892008-12-15 16:32:14 +00003123 if (Attr)
3124 ProcessDeclAttributeList(New, Attr);
3125
Douglas Gregor98b27542009-01-17 00:42:38 +00003126 // If we're declaring or defining a tag in function prototype scope
3127 // in C, note that this type can only be used within the function.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003128 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3129 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3130
Douglas Gregorae644892008-12-15 16:32:14 +00003131 // Set the lexical context. If the tag has a C++ scope specifier, the
3132 // lexical context will be different from the semantic context.
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003133 New->setLexicalDeclContext(CurContext);
Douglas Gregor98b27542009-01-17 00:42:38 +00003134
3135 if (TK == TK_Definition)
3136 New->startDefinition();
Chris Lattner4b009652007-07-25 00:24:17 +00003137
3138 // If this has an identifier, add it to the scope stack.
3139 if (Name) {
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003140 S = getNonFieldDeclScope(S);
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003141 PushOnScopeChains(New, S);
Douglas Gregorb748fc52009-01-12 22:49:06 +00003142 } else {
Douglas Gregor2d87eb02009-02-03 00:34:39 +00003143 CurContext->addDecl(New);
Chris Lattner4b009652007-07-25 00:24:17 +00003144 }
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00003145
Chris Lattner4b009652007-07-25 00:24:17 +00003146 return New;
3147}
3148
Douglas Gregordb568cf2009-01-08 20:45:30 +00003149void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregor279272e2009-02-04 19:02:06 +00003150 AdjustDeclIfTemplate(TagD);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003151 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3152
3153 // Enter the tag context.
3154 PushDeclContext(S, Tag);
3155
3156 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3157 FieldCollector->StartClass();
3158
3159 if (Record->getIdentifier()) {
3160 // C++ [class]p2:
3161 // [...] The class-name is also inserted into the scope of the
3162 // class itself; this is known as the injected-class-name. For
3163 // purposes of access checking, the injected-class-name is treated
3164 // as if it were a public member name.
3165 RecordDecl *InjectedClassName
3166 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3167 CurContext, Record->getLocation(),
3168 Record->getIdentifier(), Record);
3169 InjectedClassName->setImplicit();
3170 PushOnScopeChains(InjectedClassName, S);
3171 }
3172 }
3173}
3174
3175void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
Douglas Gregor279272e2009-02-04 19:02:06 +00003176 AdjustDeclIfTemplate(TagD);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003177 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3178
3179 if (isa<CXXRecordDecl>(Tag))
3180 FieldCollector->FinishClass();
3181
3182 // Exit this scope of this tag's definition.
3183 PopDeclContext();
3184
3185 // Notify the consumer that we've defined a tag.
3186 Consumer.HandleTagDeclDefinition(Tag);
3187}
Chris Lattner1bf58f62008-06-21 19:39:06 +00003188
Chris Lattnera73e2202008-11-12 21:17:48 +00003189/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
3190/// types into constant array types in certain situations which would otherwise
3191/// be errors (for GCC compatibility).
3192static QualType TryToFixInvalidVariablyModifiedType(QualType T,
3193 ASTContext &Context) {
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003194 // This method tries to turn a variable array into a constant
3195 // array even when the size isn't an ICE. This is necessary
3196 // for compatibility with code that depends on gcc's buggy
3197 // constant expression folding, like struct {char x[(int)(char*)2];}
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003198 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
3199 if (!VLATy) return QualType();
3200
Anders Carlsson8c3de802008-12-19 20:58:05 +00003201 Expr::EvalResult EvalResult;
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003202 if (!VLATy->getSizeExpr() ||
Anders Carlsson8c3de802008-12-19 20:58:05 +00003203 !VLATy->getSizeExpr()->Evaluate(EvalResult, Context))
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003204 return QualType();
3205
Anders Carlsson8c3de802008-12-19 20:58:05 +00003206 assert(EvalResult.Val.isInt() && "Size expressions must be integers!");
3207 llvm::APSInt &Res = EvalResult.Val.getInt();
Nuno Lopes5ba3b262009-02-02 22:32:08 +00003208 if (Res >= llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
3209 return Context.getConstantArrayType(VLATy->getElementType(),
3210 Res, ArrayType::Normal, 0);
3211 return QualType();
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003212}
3213
Anders Carlsson108229a2008-12-06 20:33:04 +00003214bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattner8464c372008-12-12 04:56:04 +00003215 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson108229a2008-12-06 20:33:04 +00003216 // FIXME: 6.7.2.1p4 - verify the field type.
3217
3218 llvm::APSInt Value;
3219 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3220 return true;
3221
Chris Lattner8464c372008-12-12 04:56:04 +00003222 // Zero-width bitfield is ok for anonymous field.
3223 if (Value == 0 && FieldName)
3224 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3225
3226 if (Value.isNegative())
3227 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson108229a2008-12-06 20:33:04 +00003228
3229 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3230 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattner8464c372008-12-12 04:56:04 +00003231 if (TypeSize && Value.getZExtValue() > TypeSize)
3232 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3233 << FieldName << (unsigned)TypeSize;
Anders Carlsson108229a2008-12-06 20:33:04 +00003234
3235 return false;
3236}
3237
Steve Naroff0acc9c92007-09-15 18:49:24 +00003238/// ActOnField - Each field of a struct/union/class is passed into this in order
Chris Lattner4b009652007-07-25 00:24:17 +00003239/// to create a FieldDecl object for it.
Douglas Gregor8acb7272008-12-11 16:49:14 +00003240Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Chris Lattner4b009652007-07-25 00:24:17 +00003241 SourceLocation DeclStart,
3242 Declarator &D, ExprTy *BitfieldWidth) {
3243 IdentifierInfo *II = D.getIdentifier();
3244 Expr *BitWidth = (Expr*)BitfieldWidth;
Chris Lattner4b009652007-07-25 00:24:17 +00003245 SourceLocation Loc = DeclStart;
Douglas Gregor8acb7272008-12-11 16:49:14 +00003246 RecordDecl *Record = (RecordDecl *)TagD;
Chris Lattner4b009652007-07-25 00:24:17 +00003247 if (II) Loc = D.getIdentifierLoc();
3248
3249 // FIXME: Unnamed fields can be handled in various different ways, for
3250 // example, unnamed unions inject all members into the struct namespace!
Chris Lattner4b009652007-07-25 00:24:17 +00003251
Chris Lattner4b009652007-07-25 00:24:17 +00003252 QualType T = GetTypeForDeclarator(D, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003253 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3254 bool InvalidDecl = false;
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003255
Chris Lattner4b009652007-07-25 00:24:17 +00003256 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3257 // than a variably modified type.
Eli Friedmane0079792008-02-15 12:53:51 +00003258 if (T->isVariablyModifiedType()) {
Chris Lattnera73e2202008-11-12 21:17:48 +00003259 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003260 if (!FixedTy.isNull()) {
Chris Lattner86be8572008-11-13 18:49:38 +00003261 Diag(Loc, diag::warn_illegal_constant_array_size);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003262 T = FixedTy;
3263 } else {
Chris Lattner86be8572008-11-13 18:49:38 +00003264 Diag(Loc, diag::err_typecheck_field_variable_size);
Chris Lattner2a884752008-11-12 19:45:49 +00003265 T = Context.IntTy;
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003266 InvalidDecl = true;
3267 }
Chris Lattner4b009652007-07-25 00:24:17 +00003268 }
Anders Carlsson108229a2008-12-06 20:33:04 +00003269
3270 if (BitWidth) {
3271 if (VerifyBitField(Loc, II, T, BitWidth))
3272 InvalidDecl = true;
3273 } else {
3274 // Not a bitfield.
3275
3276 // validate II.
3277
3278 }
3279
Chris Lattner4b009652007-07-25 00:24:17 +00003280 // FIXME: Chain fielddecls together.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003281 FieldDecl *NewFD;
3282
Douglas Gregor8acb7272008-12-11 16:49:14 +00003283 NewFD = FieldDecl::Create(Context, Record,
3284 Loc, II, T, BitWidth,
3285 D.getDeclSpec().getStorageClassSpec() ==
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003286 DeclSpec::SCS_mutable);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003287
Douglas Gregordb568cf2009-01-08 20:45:30 +00003288 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00003289 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003290 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3291 && !isa<TagDecl>(PrevDecl)) {
3292 Diag(Loc, diag::err_duplicate_member) << II;
3293 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3294 NewFD->setInvalidDecl();
3295 Record->setInvalidDecl();
3296 }
3297 }
3298
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003299 if (getLangOptions().CPlusPlus) {
Douglas Gregor605de8d2008-12-16 21:30:33 +00003300 CheckExtraCXXDefaultArguments(D);
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003301 if (!T->isPODType())
3302 cast<CXXRecordDecl>(Record)->setPOD(false);
3303 }
Douglas Gregor605de8d2008-12-16 21:30:33 +00003304
Chris Lattner9b384ca2008-06-29 00:02:00 +00003305 ProcessDeclAttributes(NewFD, D);
Anders Carlsson136cdc32008-02-16 00:29:18 +00003306
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003307 if (D.getInvalidType() || InvalidDecl)
3308 NewFD->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00003309
Douglas Gregordb568cf2009-01-08 20:45:30 +00003310 if (II) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003311 PushOnScopeChains(NewFD, S);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003312 } else
Douglas Gregor03b2ad22009-01-12 23:27:07 +00003313 Record->addDecl(NewFD);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003314
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003315 return NewFD;
Chris Lattner4b009652007-07-25 00:24:17 +00003316}
3317
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003318/// TranslateIvarVisibility - Translate visibility from a token ID to an
3319/// AST enum value.
Ted Kremenek42730c52008-01-07 19:49:32 +00003320static ObjCIvarDecl::AccessControl
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003321TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Naroffffeaa552007-09-14 23:09:53 +00003322 switch (ivarVisibility) {
Chris Lattner504c5432008-10-12 00:28:42 +00003323 default: assert(0 && "Unknown visitibility kind");
3324 case tok::objc_private: return ObjCIvarDecl::Private;
3325 case tok::objc_public: return ObjCIvarDecl::Public;
3326 case tok::objc_protected: return ObjCIvarDecl::Protected;
3327 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Naroffffeaa552007-09-14 23:09:53 +00003328 }
3329}
3330
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003331/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3332/// in order to create an IvarDecl object for it.
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003333Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003334 SourceLocation DeclStart,
3335 Declarator &D, ExprTy *BitfieldWidth,
3336 tok::ObjCKeywordKind Visibility) {
Douglas Gregordb568cf2009-01-08 20:45:30 +00003337
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003338 IdentifierInfo *II = D.getIdentifier();
3339 Expr *BitWidth = (Expr*)BitfieldWidth;
3340 SourceLocation Loc = DeclStart;
3341 if (II) Loc = D.getIdentifierLoc();
3342
3343 // FIXME: Unnamed fields can be handled in various different ways, for
3344 // example, unnamed unions inject all members into the struct namespace!
3345
Anders Carlsson108229a2008-12-06 20:33:04 +00003346 QualType T = GetTypeForDeclarator(D, S);
3347 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3348 bool InvalidDecl = false;
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003349
3350 if (BitWidth) {
3351 // TODO: Validate.
3352 //printf("WARNING: BITFIELDS IGNORED!\n");
3353
3354 // 6.7.2.1p3
3355 // 6.7.2.1p4
3356
3357 } else {
3358 // Not a bitfield.
3359
3360 // validate II.
3361
3362 }
3363
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003364 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3365 // than a variably modified type.
3366 if (T->isVariablyModifiedType()) {
Anders Carlsson68adbd12008-12-07 00:20:55 +00003367 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003368 InvalidDecl = true;
3369 }
3370
Ted Kremenek173dd312008-07-23 18:04:17 +00003371 // Get the visibility (access control) for this ivar.
3372 ObjCIvarDecl::AccessControl ac =
3373 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3374 : ObjCIvarDecl::None;
3375
3376 // Construct the decl.
3377 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroffd3354222008-07-16 18:22:22 +00003378 (Expr *)BitfieldWidth);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003379
Douglas Gregordb568cf2009-01-08 20:45:30 +00003380 if (II) {
Douglas Gregor09be81b2009-02-04 17:27:36 +00003381 NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003382 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3383 && !isa<TagDecl>(PrevDecl)) {
3384 Diag(Loc, diag::err_duplicate_member) << II;
3385 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3386 NewID->setInvalidDecl();
3387 }
3388 }
3389
Ted Kremenek173dd312008-07-23 18:04:17 +00003390 // Process attributes attached to the ivar.
Chris Lattner9b384ca2008-06-29 00:02:00 +00003391 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003392
3393 if (D.getInvalidType() || InvalidDecl)
3394 NewID->setInvalidDecl();
Ted Kremenek173dd312008-07-23 18:04:17 +00003395
Douglas Gregordb568cf2009-01-08 20:45:30 +00003396 if (II) {
3397 // FIXME: When interfaces are DeclContexts, we'll need to add
3398 // these to the interface.
3399 S->AddDecl(NewID);
3400 IdResolver.AddDecl(NewID);
3401 }
3402
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003403 return NewID;
3404}
3405
Fariborz Jahanian0c5affb2007-09-29 00:54:24 +00003406void Sema::ActOnFields(Scope* S,
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003407 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff0acc9c92007-09-15 18:49:24 +00003408 DeclTy **Fields, unsigned NumFields,
Daniel Dunbarf3944442008-10-03 02:03:53 +00003409 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar175e6392008-10-03 17:33:35 +00003410 AttributeList *Attr) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003411 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3412 assert(EnclosingDecl && "missing record or interface decl");
3413 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
3414
Chris Lattner4b009652007-07-25 00:24:17 +00003415 // Verify that all the fields are okay.
3416 unsigned NumNamedMembers = 0;
3417 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregorc7f01612009-01-07 19:46:03 +00003418
Chris Lattner4b009652007-07-25 00:24:17 +00003419 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003420 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3421 assert(FD && "missing field decl");
3422
Chris Lattner4b009652007-07-25 00:24:17 +00003423 // Get the type for the field.
Chris Lattner36be3d82007-07-31 21:33:24 +00003424 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregorc7f01612009-01-07 19:46:03 +00003425
Douglas Gregordb568cf2009-01-08 20:45:30 +00003426 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregorc7f01612009-01-07 19:46:03 +00003427 // Remember all fields written by the user.
3428 RecFields.push_back(FD);
3429 }
Steve Naroffffeaa552007-09-14 23:09:53 +00003430
Chris Lattner4b009652007-07-25 00:24:17 +00003431 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner36be3d82007-07-31 21:33:24 +00003432 if (FDTy->isFunctionType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003433 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattner271d4c22008-11-24 05:29:24 +00003434 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003435 FD->setInvalidDecl();
3436 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003437 continue;
3438 }
Chris Lattner4b009652007-07-25 00:24:17 +00003439 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
3440 if (FDTy->isIncompleteType()) {
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003441 if (!Record) { // Incomplete ivar type is always an error.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003442 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3443 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003444 FD->setInvalidDecl();
3445 EnclosingDecl->setInvalidDecl();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003446 continue;
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003447 }
Chris Lattner4b009652007-07-25 00:24:17 +00003448 if (i != NumFields-1 || // ... that the last member ...
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003449 !Record->isStruct() || // ... of a structure ...
Chris Lattner36be3d82007-07-31 21:33:24 +00003450 !FDTy->isArrayType()) { //... may have incomplete array type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003451 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3452 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003453 FD->setInvalidDecl();
3454 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003455 continue;
3456 }
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003457 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003458 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003459 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003460 FD->setInvalidDecl();
3461 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003462 continue;
3463 }
Chris Lattner4b009652007-07-25 00:24:17 +00003464 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003465 if (Record)
3466 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003467 }
Chris Lattner4b009652007-07-25 00:24:17 +00003468 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3469 /// field of another structure or the element of an array.
Chris Lattner36be3d82007-07-31 21:33:24 +00003470 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003471 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3472 // If this is a member of a union, then entire union becomes "flexible".
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003473 if (Record && Record->isUnion()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003474 Record->setHasFlexibleArrayMember(true);
3475 } else {
3476 // If this is a struct/class and this is not the last element, reject
3477 // it. Note that GCC supports variable sized arrays in the middle of
3478 // structures.
3479 if (i != NumFields-1) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003480 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003481 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003482 FD->setInvalidDecl();
3483 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003484 continue;
3485 }
Chris Lattner4b009652007-07-25 00:24:17 +00003486 // We support flexible arrays at the end of structs in other structs
3487 // as an extension.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003488 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003489 << FD->getDeclName();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003490 if (Record)
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003491 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003492 }
3493 }
3494 }
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003495 /// A field cannot be an Objective-c object
Ted Kremenek42730c52008-01-07 19:49:32 +00003496 if (FDTy->isObjCInterfaceType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003497 Diag(FD->getLocation(), diag::err_statically_allocated_object)
Chris Lattnerb1753422008-11-23 21:45:46 +00003498 << FD->getDeclName();
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003499 FD->setInvalidDecl();
3500 EnclosingDecl->setInvalidDecl();
3501 continue;
3502 }
Chris Lattner4b009652007-07-25 00:24:17 +00003503 // Keep track of the number of named members.
Douglas Gregordb568cf2009-01-08 20:45:30 +00003504 if (FD->getIdentifier())
Chris Lattner4b009652007-07-25 00:24:17 +00003505 ++NumNamedMembers;
Chris Lattner4b009652007-07-25 00:24:17 +00003506 }
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003507
Chris Lattner4b009652007-07-25 00:24:17 +00003508 // Okay, we successfully defined 'Record'.
Chris Lattner33aad6e2008-02-06 00:51:33 +00003509 if (Record) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003510 Record->completeDefinition(Context);
Chris Lattner33aad6e2008-02-06 00:51:33 +00003511 } else {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003512 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003513 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003514 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003515 // Must enforce the rule that ivars in the base classes may not be
3516 // duplicates.
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003517 if (ID->getSuperClass()) {
3518 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3519 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3520 ObjCIvarDecl* Ivar = (*IVI);
3521 IdentifierInfo *II = Ivar->getIdentifier();
3522 ObjCIvarDecl* prevIvar = ID->getSuperClass()->FindIvarDeclaration(II);
3523 if (prevIvar) {
3524 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003525 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003526 }
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003527 }
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003528 }
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003529 }
Chris Lattner1100cfb2008-02-05 22:40:55 +00003530 else if (ObjCImplementationDecl *IMPDecl =
3531 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremenek42730c52008-01-07 19:49:32 +00003532 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
3533 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian87093732007-10-31 18:48:14 +00003534 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand34caf92007-09-26 18:27:25 +00003535 }
Fariborz Jahanianebcc9b62007-09-14 21:08:27 +00003536 }
Daniel Dunbar175e6392008-10-03 17:33:35 +00003537
3538 if (Attr)
3539 ProcessDeclAttributeList(Record, Attr);
Chris Lattner4b009652007-07-25 00:24:17 +00003540}
3541
Steve Naroff0acc9c92007-09-15 18:49:24 +00003542Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Chris Lattner4b009652007-07-25 00:24:17 +00003543 DeclTy *lastEnumConst,
3544 SourceLocation IdLoc, IdentifierInfo *Id,
3545 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattnereee57c02008-04-04 06:12:32 +00003546 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003547 EnumConstantDecl *LastEnumConst =
3548 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3549 Expr *Val = static_cast<Expr*>(val);
3550
Chris Lattnera7549902007-08-26 06:24:45 +00003551 // The scope passed in may not be a decl scope. Zip up the scope tree until
3552 // we find one that is.
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003553 S = getNonFieldDeclScope(S);
Chris Lattnera7549902007-08-26 06:24:45 +00003554
Chris Lattner4b009652007-07-25 00:24:17 +00003555 // Verify that there isn't already something declared with this name in this
3556 // scope.
Douglas Gregor09be81b2009-02-04 17:27:36 +00003557 NamedDecl *PrevDecl = LookupName(S, Id, LookupOrdinaryName);
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003558 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003559 // Maybe we will complain about the shadowed template parameter.
3560 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3561 // Just pretend that we didn't see the previous declaration.
3562 PrevDecl = 0;
3563 }
3564
3565 if (PrevDecl) {
Argiris Kirtzidis4f071ec2008-07-16 21:01:53 +00003566 // When in C++, we may get a TagDecl with the same name; in this case the
3567 // enum constant will 'hide' the tag.
3568 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3569 "Received TagDecl when not in C++!");
Argiris Kirtzidis90842b62008-09-09 21:18:04 +00003570 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003571 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner65cae292008-11-19 08:23:25 +00003572 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Chris Lattner4b009652007-07-25 00:24:17 +00003573 else
Chris Lattner65cae292008-11-19 08:23:25 +00003574 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner1336cab2008-11-23 23:12:31 +00003575 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Ted Kremenek0c97e042009-02-07 01:47:29 +00003576 Val->Destroy(Context);
Chris Lattner4b009652007-07-25 00:24:17 +00003577 return 0;
3578 }
3579 }
3580
3581 llvm::APSInt EnumVal(32);
3582 QualType EltTy;
3583 if (Val) {
Chris Lattner2cda8792007-08-27 21:16:18 +00003584 // Make sure to promote the operand type to int.
3585 UsualUnaryConversions(Val);
3586
Chris Lattner4b009652007-07-25 00:24:17 +00003587 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3588 SourceLocation ExpLoc;
Anders Carlsson5374c6b2008-12-05 16:33:57 +00003589 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Ted Kremenek0c97e042009-02-07 01:47:29 +00003590 Val->Destroy(Context);
Chris Lattnere7f53a42007-08-27 17:37:24 +00003591 Val = 0; // Just forget about it.
Chris Lattner7cea0552007-08-29 16:03:41 +00003592 } else {
3593 EltTy = Val->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00003594 }
Chris Lattnere7f53a42007-08-27 17:37:24 +00003595 }
3596
3597 if (!Val) {
3598 if (LastEnumConst) {
3599 // Assign the last value + 1.
3600 EnumVal = LastEnumConst->getInitVal();
3601 ++EnumVal;
Chris Lattner2cda8792007-08-27 21:16:18 +00003602
3603 // Check for overflow on increment.
3604 if (EnumVal < LastEnumConst->getInitVal())
3605 Diag(IdLoc, diag::warn_enum_value_overflow);
3606
Chris Lattnere7f53a42007-08-27 17:37:24 +00003607 EltTy = LastEnumConst->getType();
3608 } else {
3609 // First value, set to zero.
3610 EltTy = Context.IntTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003611 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnere7f53a42007-08-27 17:37:24 +00003612 }
Chris Lattner4b009652007-07-25 00:24:17 +00003613 }
3614
Chris Lattnere4650482008-03-15 06:12:44 +00003615 EnumConstantDecl *New =
Chris Lattnereee57c02008-04-04 06:12:32 +00003616 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003617 Val, EnumVal);
Chris Lattner4b009652007-07-25 00:24:17 +00003618
3619 // Register this decl in the current scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00003620 PushOnScopeChains(New, S);
Douglas Gregor0c3ab042008-12-17 02:04:30 +00003621
Chris Lattner4b009652007-07-25 00:24:17 +00003622 return New;
3623}
3624
Steve Naroffb0726b82008-08-07 14:08:16 +00003625// FIXME: For consistency with ActOnFields(), we should have the parser
3626// pass in the source location for the left/right braces.
Steve Naroff0acc9c92007-09-15 18:49:24 +00003627void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Chris Lattner4b009652007-07-25 00:24:17 +00003628 DeclTy **Elements, unsigned NumElements) {
3629 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregord8028382009-01-05 19:45:36 +00003630 QualType EnumType = Context.getTypeDeclType(Enum);
Chris Lattner4b009652007-07-25 00:24:17 +00003631
Chris Lattner435c3fd2007-08-28 05:10:31 +00003632 // TODO: If the result value doesn't fit in an int, it must be a long or long
3633 // long value. ISO C does not support this, but GCC does as an extension,
3634 // emit a warning.
Chris Lattner8cd0e932008-03-05 18:54:05 +00003635 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattner435c3fd2007-08-28 05:10:31 +00003636
Chris Lattner206754a2007-08-28 06:15:15 +00003637 // Verify that all the values are okay, compute the size of the values, and
3638 // reverse the list.
3639 unsigned NumNegativeBits = 0;
3640 unsigned NumPositiveBits = 0;
3641
3642 // Keep track of whether all elements have type int.
3643 bool AllElementsInt = true;
3644
Chris Lattner4b009652007-07-25 00:24:17 +00003645 for (unsigned i = 0; i != NumElements; ++i) {
3646 EnumConstantDecl *ECD =
3647 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3648 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003649
3650 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003651 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003652 assert(InitVal.getBitWidth() >= IntWidth &&
3653 "Should have promoted value to int");
Chris Lattnercb33ae12007-08-28 05:27:00 +00003654 if (InitVal.getBitWidth() > IntWidth) {
3655 llvm::APSInt V(InitVal);
3656 V.trunc(IntWidth);
3657 V.extend(InitVal.getBitWidth());
3658 if (V != InitVal)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003659 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3660 << InitVal.toString(10);
Chris Lattnercb33ae12007-08-28 05:27:00 +00003661 }
Chris Lattner206754a2007-08-28 06:15:15 +00003662
3663 // Keep track of the size of positive and negative values.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003664 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattneraff63f02008-01-14 21:47:29 +00003665 NumPositiveBits = std::max(NumPositiveBits,
3666 (unsigned)InitVal.getActiveBits());
Chris Lattner206754a2007-08-28 06:15:15 +00003667 else
Chris Lattneraff63f02008-01-14 21:47:29 +00003668 NumNegativeBits = std::max(NumNegativeBits,
3669 (unsigned)InitVal.getMinSignedBits());
Chris Lattner4b009652007-07-25 00:24:17 +00003670
Chris Lattner206754a2007-08-28 06:15:15 +00003671 // Keep track of whether every enum element has type int (very commmon).
3672 if (AllElementsInt)
3673 AllElementsInt = ECD->getType() == Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003674 }
3675
Chris Lattner206754a2007-08-28 06:15:15 +00003676 // Figure out the type that should be used for this enum.
3677 // FIXME: Support attribute(packed) on enums and -fshort-enums.
3678 QualType BestType;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003679 unsigned BestWidth;
Chris Lattner206754a2007-08-28 06:15:15 +00003680
3681 if (NumNegativeBits) {
3682 // If there is a negative value, figure out the smallest integer type (of
3683 // int/long/longlong) that fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003684 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003685 BestType = Context.IntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003686 BestWidth = IntWidth;
3687 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003688 BestWidth = Context.Target.getLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003689
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003690 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003691 BestType = Context.LongTy;
3692 else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003693 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003694
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003695 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003696 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3697 BestType = Context.LongLongTy;
3698 }
3699 }
3700 } else {
3701 // If there is no negative value, figure out which of uint, ulong, ulonglong
3702 // fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003703 if (NumPositiveBits <= IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003704 BestType = Context.UnsignedIntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003705 BestWidth = IntWidth;
3706 } else if (NumPositiveBits <=
Chris Lattner8cd0e932008-03-05 18:54:05 +00003707 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattner206754a2007-08-28 06:15:15 +00003708 BestType = Context.UnsignedLongTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003709 } else {
3710 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003711 assert(NumPositiveBits <= BestWidth &&
Chris Lattner206754a2007-08-28 06:15:15 +00003712 "How could an initializer get larger than ULL?");
3713 BestType = Context.UnsignedLongLongTy;
3714 }
3715 }
3716
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003717 // Loop over all of the enumerator constants, changing their types to match
3718 // the type of the enum if needed.
3719 for (unsigned i = 0; i != NumElements; ++i) {
3720 EnumConstantDecl *ECD =
3721 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3722 if (!ECD) continue; // Already issued a diagnostic.
3723
3724 // Standard C says the enumerators have int type, but we allow, as an
3725 // extension, the enumerators to be larger than int size. If each
3726 // enumerator value fits in an int, type it as an int, otherwise type it the
3727 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3728 // that X has type 'int', not 'unsigned'.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003729 if (ECD->getType() == Context.IntTy) {
3730 // Make sure the init value is signed.
3731 llvm::APSInt IV = ECD->getInitVal();
3732 IV.setIsSigned(true);
3733 ECD->setInitVal(IV);
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003734
3735 if (getLangOptions().CPlusPlus)
3736 // C++ [dcl.enum]p4: Following the closing brace of an
3737 // enum-specifier, each enumerator has the type of its
3738 // enumeration.
3739 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003740 continue; // Already int type.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003741 }
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003742
3743 // Determine whether the value fits into an int.
3744 llvm::APSInt InitVal = ECD->getInitVal();
3745 bool FitsInInt;
3746 if (InitVal.isUnsigned() || !InitVal.isNegative())
3747 FitsInInt = InitVal.getActiveBits() < IntWidth;
3748 else
3749 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3750
3751 // If it fits into an integer type, force it. Otherwise force it to match
3752 // the enum decl type.
3753 QualType NewTy;
3754 unsigned NewWidth;
3755 bool NewSign;
3756 if (FitsInInt) {
3757 NewTy = Context.IntTy;
3758 NewWidth = IntWidth;
3759 NewSign = true;
3760 } else if (ECD->getType() == BestType) {
3761 // Already the right type!
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003762 if (getLangOptions().CPlusPlus)
3763 // C++ [dcl.enum]p4: Following the closing brace of an
3764 // enum-specifier, each enumerator has the type of its
3765 // enumeration.
3766 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003767 continue;
3768 } else {
3769 NewTy = BestType;
3770 NewWidth = BestWidth;
3771 NewSign = BestType->isSignedIntegerType();
3772 }
3773
3774 // Adjust the APSInt value.
3775 InitVal.extOrTrunc(NewWidth);
3776 InitVal.setIsSigned(NewSign);
3777 ECD->setInitVal(InitVal);
3778
3779 // Adjust the Expr initializer and type.
Chris Lattner8c6dc7a2009-01-15 19:19:42 +00003780 if (ECD->getInitExpr())
Ted Kremenek0c97e042009-02-07 01:47:29 +00003781 ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3782 /*isLvalue=*/false));
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003783 if (getLangOptions().CPlusPlus)
3784 // C++ [dcl.enum]p4: Following the closing brace of an
3785 // enum-specifier, each enumerator has the type of its
3786 // enumeration.
3787 ECD->setType(EnumType);
3788 else
3789 ECD->setType(NewTy);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003790 }
Chris Lattner206754a2007-08-28 06:15:15 +00003791
Douglas Gregor8acb7272008-12-11 16:49:14 +00003792 Enum->completeDefinition(Context, BestType);
Chris Lattner4b009652007-07-25 00:24:17 +00003793}
3794
Anders Carlsson4f7f4412008-02-08 00:33:21 +00003795Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00003796 ExprArg expr) {
3797 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
3798
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003799 return FileScopeAsmDecl::Create(Context, CurContext, Loc, AsmString);
Anders Carlsson4f7f4412008-02-08 00:33:21 +00003800}
3801
Douglas Gregorad17e372008-12-16 22:23:02 +00003802
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003803void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
3804 ExprTy *alignment, SourceLocation PragmaLoc,
3805 SourceLocation LParenLoc, SourceLocation RParenLoc) {
3806 Expr *Alignment = static_cast<Expr *>(alignment);
3807
3808 // If specified then alignment must be a "small" power of two.
3809 unsigned AlignmentVal = 0;
3810 if (Alignment) {
3811 llvm::APSInt Val;
3812 if (!Alignment->isIntegerConstantExpr(Val, Context) ||
3813 !Val.isPowerOf2() ||
3814 Val.getZExtValue() > 16) {
3815 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
Ted Kremenek0c97e042009-02-07 01:47:29 +00003816 Alignment->Destroy(Context);
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003817 return; // Ignore
3818 }
3819
3820 AlignmentVal = (unsigned) Val.getZExtValue();
3821 }
3822
3823 switch (Kind) {
3824 case Action::PPK_Default: // pack([n])
3825 PackContext.setAlignment(AlignmentVal);
3826 break;
3827
3828 case Action::PPK_Show: // pack(show)
3829 // Show the current alignment, making sure to show the right value
3830 // for the default.
3831 AlignmentVal = PackContext.getAlignment();
3832 // FIXME: This should come from the target.
3833 if (AlignmentVal == 0)
3834 AlignmentVal = 8;
Chris Lattnera5cc1882008-11-19 07:25:44 +00003835 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003836 break;
3837
3838 case Action::PPK_Push: // pack(push [, id] [, [n])
3839 PackContext.push(Name);
3840 // Set the new alignment if specified.
3841 if (Alignment)
3842 PackContext.setAlignment(AlignmentVal);
3843 break;
3844
3845 case Action::PPK_Pop: // pack(pop [, id] [, n])
3846 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
3847 // "#pragma pack(pop, identifier, n) is undefined"
3848 if (Alignment && Name)
3849 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
3850
3851 // Do the pop.
3852 if (!PackContext.pop(Name)) {
3853 // If a name was specified then failure indicates the name
3854 // wasn't found. Otherwise failure indicates the stack was
3855 // empty.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003856 Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed)
3857 << (Name ? "no record matching name" : "stack empty");
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003858
3859 // FIXME: Warn about popping named records as MSVC does.
3860 } else {
3861 // Pop succeeded, set the new alignment if specified.
3862 if (Alignment)
3863 PackContext.setAlignment(AlignmentVal);
3864 }
3865 break;
3866
3867 default:
3868 assert(0 && "Invalid #pragma pack kind.");
3869 }
3870}
3871
3872bool PragmaPackStack::pop(IdentifierInfo *Name) {
3873 if (Stack.empty())
3874 return false;
3875
3876 // If name is empty just pop top.
3877 if (!Name) {
3878 Alignment = Stack.back().first;
3879 Stack.pop_back();
3880 return true;
3881 }
3882
3883 // Otherwise, find the named record.
3884 for (unsigned i = Stack.size(); i != 0; ) {
3885 --i;
Daniel Dunbarc13c54c2008-11-19 10:32:38 +00003886 if (Stack[i].second == Name) {
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003887 // Found it, pop up to and including this record.
3888 Alignment = Stack[i].first;
3889 Stack.erase(Stack.begin() + i, Stack.end());
3890 return true;
3891 }
3892 }
3893
3894 return false;
3895}